diff --git a/assets/scripts/core/game-scene.js b/assets/scripts/core/game-scene.js index 6d008e6..e23672a 100644 --- a/assets/scripts/core/game-scene.js +++ b/assets/scripts/core/game-scene.js @@ -1,8807 +1,8823 @@ -class PracticeMode { - constructor() { - this.checkpoints = []; - this.practiceMode = false; - this.checkpointSprites = []; - } - togglePracticeMode() { - this.practiceMode = !this.practiceMode; - if (!this.practiceMode) { - this.clearCheckpoints(); - } - return this.practiceMode; - } - saveCheckpoint(playerState, playerWorldX, cameraX, scene) { - if (!this.practiceMode) return false; - const checkpoint = { - x: playerWorldX, - y: playerState.y, - yVelocity: playerState.yVelocity, - gravityFlipped: playerState.gravityFlipped, - isMini: playerState.isMini, - isCube: playerState.isCube, - isShip: playerState.isShip, - isBall: playerState.isBall, - isUfo: playerState.isUfo, - isWave: playerState.isWave, - isSpider: playerState.isSpider, - isBird: playerState.isBird, - isDart: playerState.isDart, - isRobot: playerState.isRobot, - isSwing: playerState.isSwing, - isJetpack: playerState.isJetpack, - isFlying: playerState.isFlying, - isJumping: playerState.isJumping, - onGround: playerState.onGround, - canJump: playerState.canJump, - wasBoosted: playerState.wasBoosted, - rotation: playerState.rotation, - gravity: playerState.gravity, - jumpPower: playerState.jumpPower, - mirrored: playerState.mirrored, - isDashing: playerState.isDashing, - dashYVelocity: playerState.dashYVelocity, - cameraX: cameraX, - flyCeilingY: scene._level._flyCeilingY, - flyGroundActive: scene._level._flyGroundActive, - flyVisualOnly: scene._level._flyVisualOnly, - groundTargetValue: scene._level._groundTargetValue, - flyCameraTarget: scene._level.flyCameraTarget, - groundAnimating: scene._level._groundAnimating, - groundAnimFrom: scene._level._groundAnimFrom, - groundAnimTo: scene._level._groundAnimTo, - groundAnimTime: scene._level._groundAnimTime, - groundAnimDuration: scene._level._groundAnimDuration, - cameraY: scene._cameraY, - groundStartScreenY: scene._level._groundStartScreenY, - ceilingStartScreenY: scene._level._ceilingStartScreenY, - groundY: scene._level._groundY, - ceilingY: scene._level._ceilingY, - speed: playerSpeed, - physicsFrame: scene._physicsFrame, - timestamp: Date.now() - }; - this.checkpoints.push(checkpoint); - const checkpointSprite = scene.add.image(playerWorldX, b(playerState.y), "GJ_GameSheet02", "checkpoint_01_001.png") - .setOrigin(0.5, 0.5) - .setScrollFactor(1) - .setDepth(15) - .setScale(1.0); - scene._level.topContainer.add(checkpointSprite); - this.checkpointSprites.push(checkpointSprite); - return true; - } - deleteLastCheckpoint() { - if (this.checkpoints.length > 0) { - this.checkpoints.pop(); - if (this.checkpointSprites.length > 0) { - const lastSprite = this.checkpointSprites.pop(); - if (lastSprite && lastSprite.destroy) { - lastSprite.destroy(); - } - } - return true; - } - return false; - } - clearCheckpoints() { - this.checkpoints = []; - for (const sprite of this.checkpointSprites) { - if (sprite && sprite.destroy) { - sprite.destroy(); - } - } - this.checkpointSprites = []; - } - loadLastCheckpoint() { - if (this.checkpoints.length > 0) { - return this.checkpoints[this.checkpoints.length - 1]; - } - return null; - } -} - -class MacroBot { - constructor(scene) { - this.scene = scene; - this.resetAll(); - } - - resetAll() { - this.recording = false; - this.playing = false; - - this.cursor = 0; - this.isDown = false; - - this.inputs = []; - - this.meta = { - author: "Web Dashers", - level: "", // ill fix ts later - version: 1 - }; - } - - startRecording(meta = {}) { - this.resetAll(); - this.recording = true; - this.meta = { ...meta }; - } - - stopRecording() { - this.recording = false; - return this.exportObject(); - } - - clearRecording() { - this.inputs = []; - this.cursor = 0; - this.isDown = false; - } - - rollbackRecording(currentFrame) { - this.inputs = this.inputs.filter(ev => (ev.frame ?? 0) <= currentFrame); - this.cursor = 0; - this.isDown = false; - } - - clearPlayback() { - this.cursor = 0; - this.isDown = false; - } - - rollbackPlayback(currentFrame) { - if (!this.inputs.length) return; - - this.cursor = 0; - this.isDown = false; - - this.scene._releaseButton(true); - - while ( - this.cursor < this.inputs.length && - (this.inputs[this.cursor].frame ?? 0) <= currentFrame - ) { - const ev = this.inputs[this.cursor++]; - - if (ev.down) { - this.scene._pushButton(true); - this.isDown = true; - } else { - this.scene._releaseButton(true); - this.isDown = false; - } - } - } - - startPlayback(macroData) { - const macro = typeof macroData === "string" ? JSON.parse(macroData) : macroData; - - this.resetAll(); - this.playing = true; - - this.meta = { - ...this.meta, - ...(macro || {}) - }; - - this.inputs = Array.isArray(macro?.inputs) ? macro.inputs.slice() : []; - this.inputs.sort((a, b) => (a.frame ?? 0) - (b.frame ?? 0)); - - this.cursor = 0; - this.isDown = false; - } - - stopPlayback() { - this.playing = false; - this.cursor = 0; - this.isDown = false; - } - - recordEdge(down, currentFrame) { - if (!this.recording) return; - - const last = this.inputs[this.inputs.length - 1]; - if (last && last.down === !!down && last.frame === currentFrame) { - return; - } - - this.inputs.push({ - frame: currentFrame, - down: !!down - }); - - this.isDown = !!down; - } - - step(currentFrame) { - if (!this.playing) return; - - while ( - this.cursor < this.inputs.length && - (this.inputs[this.cursor].frame ?? 0) <= currentFrame - ) { - const ev = this.inputs[this.cursor++]; - - if (ev.down) { - if (!this.isDown) { - this.scene._pushButton(true); - this.isDown = true; - } - } else { - if (this.isDown) { - this.scene._releaseButton(true); - this.isDown = false; - } - } - } - } - - exportObject() { - return { - meta: this.meta, - inputs: this.inputs.slice() - }; - } - - exportString(pretty = false) { - return JSON.stringify(this.exportObject(), null, pretty ? 2 : 0); - } - - download(filename = "macro.wbgdr") { - const blob = new Blob([this.exportString(true)], { type: "application/json" }); - const url = URL.createObjectURL(blob); - const a = document.createElement("a"); - a.href = url; - a.download = filename; - document.body.appendChild(a); - a.click(); - a.remove(); - URL.revokeObjectURL(url); - } - - importFile(file) { - return new Promise((resolve, reject) => { - const reader = new FileReader(); - reader.onload = (event) => { - try { - const text = String(event.target.result || ""); - const macro = JSON.parse(text); - resolve(macro); - } catch (err) { - reject(err); - } - }; - reader.onerror = () => reject(reader.error || new Error("Failed to read macro file")); - reader.readAsText(file); - }); - } -} - -class GameScene extends Phaser.Scene { - constructor() { - super({ - key: "GameScene" - }); - } - create() { - this._bgSpeedX = 0.1; - this._bgSpeedY = 0.1; - this._menuCameraX = -centerX; - this._prevCameraX = -centerX; - this._bg = this.add.tileSprite(0, 0, screenWidth, screenHeight, "game_bg_01").setOrigin(0, 0).setScrollFactor(0).setDepth(-10); - const _0x15d27a = this.textures.get("game_bg_01").source[0].height; - this._bgInitY = _0x15d27a - screenHeight - o; - this._cameraX = -centerX; - this._cameraY = 0; - this._cameraXRef = { - get value() { - return this._v; - }, - _v: -centerX - }; - this._state = new PlayerState(); - this._level = new window.LevelObject(this, this._cameraXRef); - this._orbGfx = null; - this._orbGfxTimer = 0; - this._player = new PlayerObject(this, this._state, this._level); - this._state2 = new PlayerState(); - this._player2 = new PlayerObject(this, this._state2, this._level); - this._isDual = false; - this._player2.setCubeVisible(false); - this._player2.setShipVisible(false); - this._player2.setBallVisible(false); - this._player2.setWaveVisible(false); - this._colorManager = new ColorManager(); - this._practicedMode = new PracticeMode(); - if (this._audio == null) { - this._audio = new AudioManager(this); - } - if (window._onlineLevelString && window._onlineLevelId && - window.currentlevel[2] === window._onlineLevelId) { - try { - this.cache.text.entries.set(window._onlineLevelId, window._onlineLevelString); - } catch(e) {} - } - let _0x591888 = this.cache.text.get(window.currentlevel[2]); - if (!_0x591888 && window._onlineLevelString && window.currentlevel[2] === window._onlineLevelId) { - _0x591888 = window._onlineLevelString; - } - if (_0x591888) { - this._level.loadLevel(_0x591888); - } - const _bgId = window._backgroundId || "01"; - const _bgKey = "game_bg_" + (parseInt(_bgId, 10) - 1); - if (this.textures.exists(_bgKey)) { - this._bg.setTexture(_bgKey); - const _newBgH = this.textures.get(_bgKey).source[0].height; - this._bgInitY = _newBgH - screenHeight - o; - } - this._level.applyGroundTexture(); - if (this._level._initialColors) { - for (let chId in this._level._initialColors) { - let col = this._level._initialColors[chId]; - this._colorManager.setInitialColor(parseInt(chId, 10), col); - } - } - this._level.createEndPortal(this); - this._glitterCenterX = 0; - this._glitterCenterY = T; - this._glitterEmitter = this.add.particles(0, 0, "GJ_WebSheet", { - frame: "square.png", - speed: 0, - scale: { - start: 0.375, - end: 0 - }, - alpha: { - start: 1, - end: 0 - }, - lifespan: { - min: 200, - max: 1800 - }, - frequency: 60, - blendMode: S, - tint: window.mainColor, - emitting: false, - emitCallback: _0x3c2a3e => { - _0x3c2a3e.x = this._glitterCenterX + (Math.random() * 2 - 1) * (screenWidth / 1.8); - _0x3c2a3e.y = this._glitterCenterY + (Math.random() * 2 - 1) * 320; - } - }); - this._level.additiveContainer.add(this._glitterEmitter); - this._bg.setTint(this._colorManager.getHex(fs)); - this._level.setGroundColor(this._colorManager.getHex(gs)); - this._level.additiveContainer.setVisible(false); - this._level.container.setVisible(false); - this._level.topContainer.setVisible(false); - this._attempts = parseInt(localStorage.getItem("gd_totalAttempts") || "1", 10); - this._bestPercent = 0; - this._lastPercent = 0; - this._practiceBestPercent = parseFloat(localStorage.getItem("practiceBestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); - this._endPortalGameY = 240; - this._resetGameplayState(); - this._totalJumps = parseInt(localStorage.getItem("gd_totalJumps") || "0", 10); - this._totalDeaths = parseInt(localStorage.getItem("gd_totalDeaths") || "0", 10); - window._completedLevels = parseInt(localStorage.getItem("gd_completedLevels") || "0", 10); - this._playTime = 0; - this._menuActive = true; - this._slideIn = false; - this._slideGroundX = null; - this._firstPlay = true; - this._player.setCubeVisible(false); - this._player.setShipVisible(false); - this._player.setBallVisible(false); - this._logo = this.add.image(0, 100, "GJ_WebSheet", "GJ_logo_001.png").setScrollFactor(0).setDepth(30); - this._robLogo = this.add.image(110, 595, "GJ_WebSheet", "RobTopLogoBig_001.png").setScrollFactor(0).setDepth(30).setScale(0.525).setInteractive(); - this._makeBouncyButton(this._robLogo, 0.525, () => { - window.open("https://geometrydash.com", "_blank"); - }, () => this._menuActive); - const _socialIconDefs = [ - {frame: "", url: "", angle: 0, row: 0, col: 0 }, - {frame: "", url: "", angle: 0, row: 0, col: 1 }, - {frame: "", url: "", angle: 0, row: 0, col: 2 }, - {frame: "", url: "", angle: 0, row: 0, col: 3 }, - - { frame: "gj_twIcon_001.png", url: "https://x.com/rohanis0000gd", angle: -90, flipX: true, row: 1, col: 0 }, - { frame: "gj_ytIcon_001.png", url: "https://www.youtube.com/@rohanis0000gd", angle: 0, row: 1, col: 1 }, - { frame: "gj_tiktokIcon_001.png", url: "https://www.tiktok.com/@rohanis00000", angle: -90, flipX: true, row: 1, col: 2 }, - { frame: "gj_githubIcon_001.png", url: "https://github.com/web-dashers/web-dashers.github.io", angle: 0, row: 1, col: 3 }, - - {frame: "", url: "", angle: 0, row: 2, col: 0 }, - {frame: "", url: "", angle: 0, row: 2, col: 1 }, - {frame: "", url: "", angle: 0, row: 2, col: 2 }, - { frame: "gj_discordIcon_001.png", url: "https://discord.gg/TfEzAVWPSJ", angle: 90, row: 2, col: 3 }, - - - //{ frame: "gj_instaIcon_001.png", url: "https://www.instagram.com/", angle: -90, flipX: true, row: 1, col: 3 }, - //{ frame: "gj_twitchIcon_001.png", url: "https://www.twitch.tv/", angle: -90, flipX: true, row: 0, col: 0 }, - //{ frame: "gj_fbIcon_001.png", url: "https://www.facebook.com/", angle: 0, row: 0, col: 0 }, - //{ frame: "gj_rdIcon_001.png", url: "https://www.reddit.com/r/geometrydash/", angle: -90, flipX: true, row: 0, col: 0 }, - - ]; - const _socialScale = 0.75; - this._socialIcons = _socialIconDefs.map((def, index) => { - const icon = this.add.image(0, 0, "GJ_GameSheet03", def.frame) - .setScrollFactor(0) - .setDepth(30) - .setScale(_socialScale) - .setAngle(def.angle) - .setFlipX(!!def.flipX); - - if (!def.frame || def.frame.trim() === "") { - icon.setVisible(false); - icon.setActive(false); - return icon; - } - icon.setInteractive(); - this._makeBouncyButton(icon, _socialScale, () => { - window.open(def.url, "_blank"); - }, () => this._menuActive); - - return icon; - }); - - this._copyrightText = this.add.text(0, 625, "© 2026 RobTop Games · geometrydash.com", { - fontSize: "14px", - color: "#ffffff", - fontFamily: "Arial" - }).setOrigin(1, 1).setScrollFactor(0).setDepth(30).setAlpha(0.3); - this._tryMeImg = this.add.image(0, 182.5, "GJ_WebSheet", "tryMe_001.png").setScrollFactor(0).setDepth(30); - this._downloadBtns = []; - const _0x4fc67f = [{ - key: "downloadSteam_001", - url: "https://github.com/web-dashers/web-dashers.github.io" - }, - { - key: "downloadApple_001", - url: "https://discord.gg/TfEzAVWPSJ" - }]; - for (let _0xfeaf5c = 0; _0xfeaf5c < _0x4fc67f.length; _0xfeaf5c++) { - const _0x1ce2a6 = _0x4fc67f[_0xfeaf5c]; - const _0x6bf69f = 1 / 1.5; - const _0x1d293f = this.add.image(0, 0, "GJ_WebSheet", _0x1ce2a6.key + ".png").setScrollFactor(0).setDepth(30).setScale(_0x6bf69f).setInteractive(); - this._makeBouncyButton(_0x1d293f, _0x6bf69f, () => window.open(_0x1ce2a6.url, "_blank"), () => this._menuActive); - this._downloadBtns.push(_0x1d293f); - } - const _0x28fa5b = this.scale.isFullscreen; -this._menuFsBtn = this.add.image(33, 33, "GJ_WebSheet", _0x28fa5b ? "toggleFullscreenOff_001.png" : "toggleFullscreenOn_001.png").setScrollFactor(0).setDepth(30).setScale(0.64).setAlpha(0.8).setTint(Phaser.Display.Color.GetColor(255, 255, 255)).setInteractive(); - this._expandHitArea(this._menuFsBtn, 1.5); - this._makeBouncyButton(this._menuFsBtn, 0.64, () => { - const _0x26b7c = !this.scale.isFullscreen; - this._menuFsBtn.setTexture("GJ_WebSheet", _0x26b7c ? "toggleFullscreenOff_001.png" : "toggleFullscreenOn_001.png"); - this._expandHitArea(this._menuFsBtn, 1.5); - this._toggleFullscreen(); - }, () => this._menuActive); - this._menuInfoBtn = this.add.image(screenWidth + 20, 33, "GJ_GameSheet03", "communityCreditsBtn_001.png").setScrollFactor(0).setDepth(30).setScale(0.64).setTint(Phaser.Display.Color.GetColor(255, 255, 255)).setInteractive(); - this._expandHitArea(this._menuInfoBtn, 1.5); - this._makeBouncyButton(this._menuInfoBtn, 0.64, () => { - this._buildInfoPopup(); - }, () => this._menuActive && !this._infoPopup); -this._menuUpdateLogBtn = this.add.image(screenWidth - 30 - 50, 33, "GJ_WebSheet", "GJ_infoIcon_001.png").setScrollFactor(0).setDepth(30).setScale(0.64).setTint(Phaser.Display.Color.GetColor(255, 255, 255)).setInteractive(); - this._expandHitArea(this._menuUpdateLogBtn, 1.5); - this._makeBouncyButton(this._menuUpdateLogBtn, 0.64, () => { - this._buildUpdateLogPopup(); - }, () => this._menuActive && !this._updateLogPopup); - this._menuSettingsBtn = this.add.image(centerX + 92, screenHeight - 90, "GJ_GameSheet03", "GJ_optionsBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setRotation(-Math.PI / 2).setFlipX(true); - this._expandHitArea(this._menuSettingsBtn, 1); - this._makeBouncyButton(this._menuSettingsBtn, 1, () => { - this._showSettingsScreen(); - }, () => this._menuActive && !this._settingsPopup); - this._menuStatsBtn = this.add.image(centerX + 202, screenHeight - 90, "GJ_GameSheet03", "GJ_statsBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setRotation(-Math.PI / 2).setFlipX(true); - this._expandHitArea(this._menuStatsBtn, 1); - this._makeBouncyButton(this._menuStatsBtn, 1, () => { - this._showStatsScreen(); - }, () => this._menuActive); - this._menuAchievementsBtn = this.add.image(centerX - 12, screenHeight - 90, "GJ_GameSheet03", "GJ_achBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setTint(0x666666); - this._expandHitArea(this._menuAchievementsBtn, 1); - this._makeBouncyButton(this._menuAchievementsBtn, 1, () => { - }, () => this._menuActive); - this._menuNewgroundsBtn = this.add.image(centerX + 312, screenHeight - 90, "GJ_GameSheet03", "GJ_ngBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setRotation(-Math.PI / 2).setFlipX(true); - this._expandHitArea(this._menuNewgroundsBtn, 1); - this._makeBouncyButton(this._menuNewgroundsBtn, 1, () => { - this._buildNewgroundsPopup(); - }, () => this._menuActive && !this._newgroundsPopup); - this._menuGlitter = this.add.particles(0, 0, "GJ_WebSheet", { - frame: "square.png", - speed: 0, - scale: { - start: 0.5, - end: 0 - }, - alpha: { - start: 0.6, - end: 0.2 - }, - lifespan: { - min: 1000, - max: 2000 - }, - frequency: 35, - blendMode: S, - tint: 20670, - x: { - min: -130, - max: 130 - }, - y: { - min: -100, - max: 100 - } - }).setScrollFactor(0).setDepth(29); - this._playBtn = this.add.image(0, 0, "GJ_GameSheet04", "GJ_playBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive(); - this._playBtnPressed = false; - this._makeBouncyButton(this._playBtn, 1, () => { - this._openLevelSelect(); - }, () => this._menuActive && !this._playBtnPressed && !this._levelSelectOverlay); - // creator stuff - this._creatorBtn = this.add.image(0, 0, "GJ_GameSheet04", "GJ_creatorBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setScale(1); - this._creatorOverlay = null; - this._creatorOverlayObjects = null; - - this._openCreatorMenu = () => { - if (this._creatorOverlay) return; - this._creatorMenuOpen = true; - - const sw = screenWidth; - const sh = screenHeight; - - const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); - fadeIn.fillStyle(0x000000, 1); - fadeIn.fillRect(0, 0, sw, sh); - this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); - - const overlay = this.add.graphics().setScrollFactor(0).setDepth(100); - const gradientSteps = 80; - for (let gi = 0; gi < gradientSteps; gi++) { - const t = gi / (gradientSteps - 1); - const r1 = Math.round(0x00 + (0x01 - 0x00) * t); - const g1 = Math.round(0x65 + (0x2c - 0x65) * t); - const b1 = Math.round(0xff + (0x71 - 0xff) * t); - const bandColor = (r1 << 16) | (g1 << 8) | b1; - const bandY = Math.floor(gi * sh / gradientSteps); - const bandH = Math.ceil(sh / gradientSteps) + 1; - overlay.fillStyle(bandColor, 1); - overlay.fillRect(0, bandY, sw, bandH); - } - this._creatorOverlay = overlay; - - const blocker = this.add.zone(sw / 2, sh / 2, sw, sh) - .setScrollFactor(0).setDepth(101).setInteractive(); - - const cornerTL = this.add.image(0, 0, "GJ_GameSheet03", "GJ_sideArt_001.png") - .setScrollFactor(0).setDepth(100).setOrigin(1, 0).setFlipX(false).setAngle(-90) - const cornerBL = this.add.image(0, sh, "GJ_GameSheet03", "GJ_sideArt_001.png") - .setScrollFactor(0).setDepth(152).setOrigin(1, 1).setFlipY(true).setAngle(90) - - const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_03_001.png") - .setScrollFactor(0).setDepth(104).setFlipX(true).setFlipY(true) - .setRotation(Math.PI).setInteractive(); - this._makeBouncyButton(backBtn, 1, () => this._closeCreatorMenu()); - - this._creatorOverlayObjects = [overlay, blocker, cornerTL, cornerBL, backBtn]; - - const menuButtons = [ - "GJ_createBtn_001.png", - "GJ_savedBtn_001.png", - "GJ_highscoreBtn_001.png", - "GJ_challengeBtn_001.png", - "GJ_versusBtn_001.png", - "GJ_mapBtn_001.png", - "GJ_dailyBtn_001.png", - "GJ_weeklyBtn_001.png", - "GJ_eventBtn_001.png", - "GJ_gauntletsBtn_001.png", - "GJ_featuredBtn_001.png", - "GJ_listsBtn_001.png", - "GJ_pathsBtn_001.png", - "GJ_mapPacksBtn_001.png", - "GJ_searchBtn_001.png", - ]; - - const cols = 5; - const btnScale = 0.77; - const btnSize = 209 * btnScale; - const gapX = 18; - const gapY = 18; - const gridW = cols * btnSize + (cols - 1) * gapX; - const gridStartX = sw / 2 - gridW / 2 + btnSize / 2; - const rows = Math.ceil(menuButtons.length / cols); - const gridH = rows * btnSize + (rows - 1) * gapY; - const gridStartY = sh / 2 - gridH / 2 + btnSize / 2; - menuButtons.forEach((frame, idx) => { - const col = idx % cols; - const row = Math.floor(idx / cols); - const bx = gridStartX + col * (btnSize + gapX); - const by = gridStartY + row * (btnSize + gapY); - const btn = this.add.image(bx, by, "GJ_GameSheet04", frame) - .setScrollFactor(0).setDepth(104).setScale(btnScale); - const isSearchButton = frame === "GJ_searchBtn_001.png"; - const isFeaturedButton = frame === "GJ_featuredBtn_001.png"; - const isEditorButton = frame === "GJ_createBtn_001.png"; - if (isSearchButton) { - btn.setInteractive(); - this._makeBouncyButton(btn, btnScale, () => { - this._closeCreatorMenu(true); - this._openSearchMenu(); - }, () => true); - } else if (isFeaturedButton) { - btn.setInteractive(); - this._makeBouncyButton(btn, btnScale, () => { - this._closeCreatorMenu(true); - this._openOnlineLevelsScene({ type: 6 }); - }, () => true); - } else if (isEditorButton) { - btn.setInteractive(); - this._makeBouncyButton(btn, btnScale, () => { - this._closeCreatorMenu(true); - this._openEditorMenu(); - }, () => true); - } else { - btn.setTint(0x666666); - } - this._creatorOverlayObjects.push(btn); - }); - }; - this._searchOverlay = null; - this._searchOverlayObjects = []; - this._openEditorMenu = () => { - if (this._editorOverlay) return; - const sw = screenWidth; - const sh = screenHeight; - const centerX = sw / 2; - - const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); - fadeIn.fillStyle(0x000000, 1); - fadeIn.fillRect(0, 0, sw, sh); - this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); - - const overlay = this.add.graphics().setScrollFactor(0).setDepth(100); - const gradientSteps = 80; - for (let gi = 0; gi < gradientSteps; gi++) { - const t = gi / (gradientSteps - 1); - const r1 = Math.round(0x00 + (0x01 - 0x00) * t); - const g1 = Math.round(0x65 + (0x2c - 0x65) * t); - const b1 = Math.round(0xff + (0x71 - 0xff) * t); - const bandColor = (r1 << 16) | (g1 << 8) | b1; - overlay.fillStyle(bandColor, 1); - overlay.fillRect(0, Math.floor(gi * sh / gradientSteps), sw, Math.ceil(sh / gradientSteps) + 1); - } - this._editorOverlay = overlay; - - const blocker = this.add.zone(centerX, sh / 2, sw, sh).setScrollFactor(0).setDepth(101).setInteractive(); - const container = this.add.container(0, 0).setScrollFactor(0).setDepth(102); - - const tableW = 712; - const tableH = 460; - const tableX = (sw - tableW) / 2; - const tableY = 85; - - const rawData = localStorage.getItem("created_levels"); - const createdLevels = rawData ? JSON.parse(rawData) : []; - - createdLevels.sort((a, b) => { - const idA = parseInt(a.createdId.replace("local_", "")) || 0; - const idB = parseInt(b.createdId.replace("local_", "")) || 0; - return idB - idA; - }); - - const nameCounts = {}; - const levelRevisions = {}; - - createdLevels.forEach(lvl => { - const name = lvl.levelName; - if (!nameCounts[name]) { - nameCounts[name] = 1; - levelRevisions[lvl.createdId] = ""; - } else { - levelRevisions[lvl.createdId] = `Rev. ${nameCounts[name]}`; - nameCounts[name]++; - } - }); - - const lengthValues=[ - "Tiny", "Short", "Medium", "Long", "XL" - ] - - const listContainer = this.add.container(0, 0); - const maskShape = this.add.graphics().fillStyle(0xffffff).fillRect(tableX, tableY, tableW, tableH).setVisible(false); - const mask = maskShape.createGeometryMask(); - listContainer.setMask(mask); - container.add(this.add.graphics().setScrollFactor(0).setDepth(90).fillStyle(0xc2723e, 1).fillRect(tableX, tableY, tableW, tableH)); - container.add(listContainer); - - createdLevels.forEach((level, index) => { - const spacing = 100; - const slotY = (index * spacing) + (spacing / 2); - - const isOdd = index % 2 !== 0; - const stripeColor = isOdd ? 0xc2723e : 0xa1582c; - - const bgStripe = this.add.rectangle(centerX, slotY, tableW - 10, spacing, stripeColor, 1); - const separator = this.add.rectangle(centerX, slotY + (spacing / 2), tableW - 10, 1, 0x502c16, 1); - const nameTxt = this.add.bitmapText(tableX + 20, slotY - 22, "bigFont", level.levelName, 32).setOrigin(0, 0.5); - const revLabel = levelRevisions[level.createdId]; - const revText = this.add.bitmapText( - nameTxt.x + nameTxt.width + 10, - nameTxt.y + 5, - "goldFont", - revLabel, - 20 - ).setOrigin(0, 0.5); - const infoY = slotY + 18; - const lenIcon = this.add.image(tableX + 35, infoY, "GJ_GameSheet03", "GJ_timeIcon_001.png").setScale(0.65); - const lenTxt = this.add.bitmapText(lenIcon.x + 22, infoY, "bigFont", lengthValues[level.levelLength], 18).setOrigin(0, 0.5); - const songIcon = this.add.image(tableX + 150, infoY, "GJ_GameSheet03", "GJ_musicIcon_001.png").setScale(0.65); - const songTxt = this.add.bitmapText(songIcon.x + 22, infoY, "bigFont", level.song, 18).setOrigin(0, 0.5); - const statusIcon = this.add.image(tableX + 380, infoY, "GJ_GameSheet03", "GJ_infoIcon_001.png").setScale(0.65).setFlipY(true).setAngle(90); - const statusTxt = this.add.bitmapText(statusIcon.x + 22, infoY, "bigFont", level.status, 18).setOrigin(0, 0.5); - - const viewBtn = this.add.nineslice(tableX + tableW - 80, slotY, "GJ_button01", null, 120, 60, 24, 24, 24, 24 ).setScale(0.75).setInteractive(); - const viewTxt = this.add.bitmapText(viewBtn.x - 2, viewBtn.y - 1, "bigFont", "View", 32).setOrigin(0.5).setScale(0.8); - - this._makeBouncyButton(viewBtn, 0.75, () => { - this._closeEditorMenu(false); - this._openLevelView(level); - }); - - listContainer.add([bgStripe, separator, nameTxt, revText, lenIcon, lenTxt, songIcon, songTxt, statusIcon, statusTxt, viewBtn, viewTxt]); - }); - if (createdLevels.length === 0) { - container.add(this.add.bitmapText(centerX, tableY + (tableH/2), "bigFont", "No Levels", 30).setOrigin(0.5).setAlpha(0.5)); - } - const sideFrame = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); - const sideScaleY = tableH / sideFrame.height; - container.add(this.add.image(tableX - 40, tableY, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(0, 0).setScale(1, sideScaleY)); - container.add(this.add.image(tableX + tableW + 40, tableY, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(1, 0).setFlipX(true).setScale(1, sideScaleY)); - container.add(this.add.image(centerX, tableY - 10, "GJ_WebSheet", "GJ_table_top_001.png")); - container.add(this.add.image(centerX, tableY + tableH + 20, "GJ_WebSheet", "GJ_table_bottom_001.png")); - container.add(this.add.bitmapText(centerX, tableY - 15, "bigFont", "My Levels", 42).setOrigin(0.5).setScale(1.1)); - - let startY = tableY; - const listHeight = createdLevels.length * 100; - const minY = tableY - Math.max(0, listHeight - tableH) - 10; - const maxY = tableY + 22; - - listContainer.y = maxY; - this._scrollTargetY = maxY; - this.input.on('wheel', (pointer, gameObjects, deltaX, deltaY, deltaZ) => { - if (!this._editorOverlay) return; - this._scrollTargetY -= deltaY; - this._scrollTargetY = Phaser.Math.Clamp(this._scrollTargetY, minY, maxY); - - this.tweens.add({ - targets: listContainer, - y: this._scrollTargetY, - duration: 250, - ease: 'Power2', - overwrite: true - }); - }); - blocker.on('pointerdown', (pointer) => { - startY = pointer.y - listContainer.y; - }); - - blocker.on('pointermove', (pointer) => { - if (pointer.isDown) { - listContainer.y = pointer.y - startY; - listContainer.y = Phaser.Math.Clamp(listContainer.y, minY, maxY); - } - }); - - const newBtnX = sw - 60; - const newBtnY = sh - 55; - const newBtn = this.add.image(newBtnX, newBtnY, "GJ_GameSheet03", "GJ_newBtn_001.png") - .setScale(0.9) - .setInteractive(); - - this._makeBouncyButton(newBtn, 0.9, () => { - const rawData = localStorage.getItem("created_levels"); - let createdLevels = rawData ? JSON.parse(rawData) : []; - - let counter = 0; - while (createdLevels.some(lvl => lvl.levelName === "Unnamed " + counter)) { - counter++; - } - const newName = "Unnamed " + counter; - - const newLevel = { - levelName: newName, - song: "Stereo Madness", - songId: -1, - levelId: null, - levelString: "H4sIAAAAAAAACq1QwRHDMAhbyO0hwIlzfWWGDsAAXaHD10Z-9Ff3Ln4gG4GMeD2tFYRLaEBrWGitARCUwKTHDbEFRCT2wF3yBOrXvYVEC7wRKSi6JoirBY8FwdHB9iVJjZ5ckP1rlf19taIv7pLGh-wP43XROPq9z9mOtX1uS7LldcKKzPx41ZKwEbz0yPueUSfPF9qApx3kMlrGJE7PSBbCIlYpy5QVuheMciE0AgiaoFRUihk5I2ec0Knp1PTK9slxYDM2OIFmjL8bv-1mBmB6YrvO4UErHR4fJXMaP9sDAAA=", - levelLength: 0, - normalBest: 0, - practiceBest: 0, - description: "", - version: 1, - status: "Unverified", - createdId: this._getNextLocalId() - }; - - createdLevels.push(newLevel); - localStorage.setItem("created_levels", JSON.stringify(createdLevels)); - - this._closeEditorMenu(); - this._openLevelView(newLevel); - - this._audio.playEffect("build_01"); - }); - container.add(newBtn); - - const importBtn = this.add.image(newBtnX, newBtnY - 90, "import").setScale(0.3).setInteractive(); - this._makeBouncyButton(importBtn, 0.3, () => { - this._importGMD(); - }); - container.add(importBtn); - - const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_03_001.png") - .setScrollFactor(0).setDepth(104).setFlipX(true).setFlipY(true).setRotation(Math.PI).setInteractive(); - - this._makeBouncyButton(backBtn, 1, () => { - this._closeEditorMenu(); - this._openCreatorMenu(); - }); - - this._editorObjects = [overlay, blocker, container, backBtn, maskShape]; - }; - this._importGMD = () => { - const fileInput = document.createElement('input'); - fileInput.type = 'file'; - fileInput.accept = '.gmd'; - - fileInput.onchange = (e) => { - const file = e.target.files[0]; - if (!file) return; - - const reader = new FileReader(); - reader.onload = (event) => { - const content = event.target.result; - try { - const parser = new DOMParser(); - const xmlDoc = parser.parseFromString(content, "text/xml"); - const keys = xmlDoc.querySelectorAll("key, k"); - - let extracted = { - name: "Imported Level", - data: "", - version: 1, - length: 0, - id: "NA", - desc: "", - officialSongId: 0, - customSongId: 0 - }; - - keys.forEach(keyNode => { - const k = keyNode.textContent; - const v = keyNode.nextElementSibling; - if (!v) return; - const val = v.textContent; - - if (k === "k2") extracted.name = val; - if (k === "k4") extracted.data = val; - if (k === "k1") extracted.id = val; - if (k === "k23") extracted.length = parseInt(val) || 0; - if (k === "k16") extracted.version = parseInt(val) || 1; - if (k === "k8") extracted.officialSongId = parseInt(val) || 0; - if (k === "k45") extracted.customSongId = parseInt(val) || 0; - if (k === "k3") { - try { extracted.desc = atob(val); } catch(e) { extracted.desc = val; } - } - }); - - if (!extracted.data) throw new Error("No level string found."); - - let finalSongName = "Stereo Madness"; - let finalSongId = -1; - - if (extracted.customSongId > 0) { - finalSongId = extracted.customSongId; - finalSongName = `NG#${extracted.customSongId}`; - } else { - finalSongId = -extracted.officialSongId -1; - try { - finalSongName = window.allLevels[extracted.officialSongId][1]; - } catch(e) { - finalSongName = "Unknown"; - } - } - - const rawLevels = localStorage.getItem("created_levels"); - let createdLevels = rawLevels ? JSON.parse(rawLevels) : []; - - const newLevel = { - levelName: extracted.name, - song: finalSongName, - songId: finalSongId, - levelId: (extracted.id === "0" || !extracted.id) ? "NA" : extracted.id, - levelString: extracted.data, - levelLength: extracted.length, - normalBest: 0, - practiceBest: 0, - description: extracted.desc || "", - version: extracted.version, - status: "Unverified", - createdId: this._getNextLocalId() - }; - - createdLevels.push(newLevel); - localStorage.setItem("created_levels", JSON.stringify(createdLevels)); - - this._closeEditorMenu(false); - this._openLevelView(newLevel); - - } catch (err) { - console.error("GMD Import Error:", err); - alert("Failed to parse .gmd: " + err.message); - } - }; - reader.readAsText(file); - }; - - fileInput.click(); - }; - this._exportGMD = (level) => { - const encodedDesc = btoa(level.description || ""); - const authorName = "Web Dashers"; - - const officialSong = level.songId < 0 ? Math.abs(level.songId) : 0; - const customSong = level.songId > 0 ? level.songId : 0; - - let xml = ''; - xml += ''; - xml += ''; - xml += 'kCEK4'; - xml += `k1${level.levelId && level.levelId !== "NA" ? level.levelId.replace(/\D/g, "") : 0}`; - xml += `k18${level.levelLength || 0}`; - xml += `k23${level.levelLength || 0}`; - xml += `k2${level.levelName}`; - xml += `k4${level.levelString}`; - xml += `k3${encodedDesc}`; - xml += `k5${authorName}`; - xml += 'k1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0'; - xml += `k8${officialSong - 1}`; - xml += `k45${customSong}`; - xml += `k16${level.version || 1}`; - xml += 'k13k212k5047'; - xml += 'kI10kI20kI30.1'; - xml += 'kI600102030405060708090100110120130'; - xml += ''; - const blob = new Blob([xml], { type: 'text/xml' }); - const url = window.URL.createObjectURL(blob); - const link = document.createElement('a'); - const fileName = `${level.levelName.replace(/[^a-z0-9]/gi, '_')}.gmd`; - link.href = url; - link.download = fileName; - document.body.appendChild(link); - link.click(); - document.body.removeChild(link); - window.URL.revokeObjectURL(url); - }; - this._getNextLocalId = () => { - const rawData = localStorage.getItem("created_levels"); - const levels = rawData ? JSON.parse(rawData) : []; - let maxId = 0; - levels.forEach(l => { - if (l.createdId && typeof l.createdId === "string") { - const idNum = parseInt(l.createdId.split('_')[1]); - if (!isNaN(idNum) && idNum > maxId) { - maxId = idNum; - } - } - }); - return "local_" + (maxId + 1); - }; - this._openLevelView = (level) => { - const sw = screenWidth; - const sh = screenHeight; - const centerX = sw / 2; - const saveToLS = (key, val) => { - const rawData = localStorage.getItem("created_levels"); - let levels = rawData ? JSON.parse(rawData) : []; - const idx = levels.findIndex(l => l.createdId === level.createdId); - if (idx !== -1) { - levels[idx][key] = val; - localStorage.setItem("created_levels", JSON.stringify(levels)); - } - }; - const deleteLevel = () => { - if (!confirm(`Are you sure you want to delete ${level.levelName}?`)) return; - const rawData = localStorage.getItem("created_levels"); - let levels = rawData ? JSON.parse(rawData) : []; - levels = levels.filter(l => l.createdId !== level.createdId); - localStorage.setItem("created_levels", JSON.stringify(levels)); - cleanup(); - this._openEditorMenu(); - }; - this._activeInput = null; - let cursorVisible = true; - - const blocker = this.add.zone(centerX, sh / 2, sw, sh) - .setOrigin(0.5).setDepth(101).setInteractive(); - blocker.on('pointerdown', () => { this._activeInput = null; }); - const overlay = this.add.graphics().setScrollFactor(0).setDepth(102); - const gradientSteps = 80; - for (let gi = 0; gi < gradientSteps; gi++) { - const t = gi / (gradientSteps - 1); - const r1 = Math.round(0x00 + (0x01 - 0x00) * t); - const g1 = Math.round(0x65 + (0x2c - 0x65) * t); - const b1 = Math.round(0xff + (0x71 - 0xff) * t); - const bandColor = (r1 << 16) | (g1 << 8) | b1; - overlay.fillStyle(bandColor, 1); - overlay.fillRect(0, Math.floor(gi * sh / gradientSteps), sw, Math.ceil(sh / gradientSteps) + 1); - } - - const container = this.add.container(0, 0).setDepth(150); - const boxWidth = sw * 0.6; - const cornerRad = 18; - - const nameY = 50; - const nameBox = this.add.graphics().setDepth(151).setInteractive(new Phaser.Geom.Rectangle(centerX - (boxWidth / 2), nameY - 28, boxWidth, 70), Phaser.Geom.Rectangle.Contains); - nameBox.fillStyle(0x000000, 0.3).fillRoundedRect(centerX - (boxWidth / 2), nameY - 28, boxWidth, 70, cornerRad); - const titleText = this.add.bitmapText(centerX, nameY + 5, "bigFont", level.levelName, 45).setOrigin(0.5).setDepth(152); - const titleCursor = this.add.bitmapText(0, nameY + 5, "bigFont", "|", 45).setOrigin(0, 0.5).setDepth(153).setVisible(false); - - const descY = 180; - const descH = 120; - const descBox = this.add.graphics().setDepth(151).setInteractive(new Phaser.Geom.Rectangle(centerX - (boxWidth / 2), descY - (descH / 2), boxWidth, descH), Phaser.Geom.Rectangle.Contains); - descBox.fillStyle(0x000000, 0.3).fillRoundedRect(centerX - (boxWidth / 2), descY - (descH / 2), boxWidth, descH, cornerRad); - const descText = this.add.text(centerX, descY, level.description || "Description [Optional]", { - fontFamily: "Helvetica, Arial, sans-serif", - fontSize: "22px", - color: "#ffffff", - align: "center", - lineSpacing: 4, - wordWrap: { width: boxWidth - 40, useAdvancedWrap: true } - }).setOrigin(0.5).setDepth(152); - const descCursor = this.add.text(0, 0, "|", { fontFamily: "Helvetica", fontSize: "18px", color: "#ffffff" }) - .setOrigin(0.5).setDepth(153).setVisible(false); - - const updateDisplay = () => { - titleText.setText(level.levelName); - if (this._activeInput === 'title') { - titleCursor.setPosition(titleText.x + (titleText.width / 2) + 2, nameY + 5).setVisible(cursorVisible); - descCursor.setVisible(false); - } - else if (this._activeInput === 'desc') { - descText.setText(level.description || ""); - titleCursor.setVisible(false); - - const lines = descText.getWrappedText(level.description || ""); - const lineCount = lines.length; - const lastLine = lines[lineCount - 1] || ""; - const metrics = descText.canvas.getContext('2d').measureText(lastLine); - const lastLineWidth = metrics.width; - - const size = 22; - const spacing = 4; - const fullLineHeight = size + spacing; - const totalHeight = (lineCount * fullLineHeight) - spacing; - - const topOfText = descY - (totalHeight / 2); - const cursorY = topOfText + ((lineCount - 1) * fullLineHeight) + (size / 2); - - descCursor.setPosition(centerX + (lastLineWidth / 2) + 2, cursorY).setVisible(cursorVisible); - } else { - descText.setText(level.description || "Description [Optional]"); - titleCursor.setVisible(false); - descCursor.setVisible(false); - } - }; - - const cursorInterval = setInterval(() => { - cursorVisible = !cursorVisible; - updateDisplay(); - }, 500); - - const keyHandler = (event) => { - if (!this._activeInput) return; - if (event.key === "Backspace") { - if (this._activeInput === 'title') level.levelName = level.levelName.slice(0, -1); - else level.description = (level.description || "").slice(0, -1); - } else if (event.key === "Enter") { - this._activeInput = null; - } else if (event.key.length === 1) { - if (this._activeInput === 'title' && level.levelName.length < 20) { - level.levelName += event.key; - } else if (this._activeInput === 'desc' && (level.description || "").length < 150) { - level.description = (level.description || "") + event.key; - } - } - saveToLS(this._activeInput === 'title' ? "levelName" : "description", - this._activeInput === 'title' ? level.levelName : level.description); - cursorVisible = true; - updateDisplay(); - }; - - window.addEventListener('keydown', keyHandler); - nameBox.on('pointerdown', () => { this._activeInput = 'title'; updateDisplay(); }); - descBox.on('pointerdown', () => { this._activeInput = 'desc'; updateDisplay(); }); - - const cleanup = () => { - clearInterval(cursorInterval); - window.removeEventListener('keydown', keyHandler); - container.destroy(); - overlay.destroy(); - blocker.destroy(); - }; - - const btnY = sh * 0.58; - const editBtn = this.add.image(centerX - 220, btnY, "GJ_GameSheet03", "GJ_editBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(1.1); - this._makeBouncyButton(editBtn, 1.1, () => { cleanup(); this._startCreatedLevel(level, true); }); - const playBtn = this.add.image(centerX, btnY, "GJ_GameSheet03", "GJ_playBtn2_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(1.1); - this._makeBouncyButton(playBtn, 1.1, () => { cleanup(); this._startCreatedLevel(level, false); }); - const shareBtn = this.add.image(centerX + 220, btnY, "GJ_GameSheet03", "GJ_shareBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(1.1); - this._makeBouncyButton(shareBtn, 1.1, () => { this._exportGMD(level); }); - const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_03_001.png").setFlipX(true).setFlipY(true).setRotation(Math.PI).setInteractive(); - this._makeBouncyButton(backBtn, 1, () => { cleanup(); this._openEditorMenu(); }); - const deleteBtn = this.add.image(sw - 50, 48, "GJ_GameSheet03", "GJ_deleteBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(0.8); - this._makeBouncyButton(deleteBtn, 0.8, () => { deleteLevel(); }); - - const footerY = sh - 100; - const subFooterY = sh - 30; - const lengthValues=[ - "Tiny", "Short", "Medium", "Long", "XL" - ] - - const lengthIcon = this.add.image(centerX - 350, footerY, "GJ_GameSheet03", "GJ_timeIcon_001.png").setScale(1).setDepth(152); - const lengthLabel = this.add.bitmapText(centerX - 310, footerY, "bigFont", lengthValues[level.levelLength], 33).setOrigin(0, 0.5).setDepth(152); - const songIcon = this.add.image(centerX - 160, footerY, "GJ_GameSheet03", "GJ_musicIcon_001.png").setScale(1).setDepth(152); - const songLabel = this.add.bitmapText(centerX - 115, footerY, "bigFont", level.song, 29).setOrigin(0, 0.5).setDepth(152); - const statusIcon = this.add.image(centerX + 200, footerY, "GJ_GameSheet03", "GJ_infoIcon_001.png").setScale(1).setDepth(152).setFlipY(true).setAngle(90); - const statusLabel = this.add.bitmapText(centerX + 245, footerY, "bigFont", level.status, 33).setOrigin(0, 0.5).setDepth(152); - const versionText = this.add.bitmapText(centerX - 180, subFooterY, "goldFont", `Version: ${level.version || 1}`, 30).setOrigin(0.5).setDepth(152); - const idText = this.add.bitmapText(centerX + 180, subFooterY, "goldFont", `ID: ${level.levelId || "na"}`, 30).setOrigin(0.5).setDepth(152); - - container.add([nameBox, titleText, titleCursor, descBox, descText, descCursor, playBtn, editBtn, shareBtn, backBtn, deleteBtn, lengthIcon, lengthLabel, songIcon, songLabel, statusIcon, statusLabel, versionText, idText]); - }; - this._startCreatedLevel = async (level, isEditor) => { - const PROXY_BASE = (window._gdProxyUrl || "").replace(/\/$/, ""); - window._onlineLevelString = level.levelString; - window._onlineLevelName = level.levelName; - window._onlineLevelId = level.createdId; - window._onlineSongBuffer = null; - window._onlineSongKey = null; - window._onlineSongOffset = 0; - if (isEditor){ - window.isEditor = true; - } - this.game.registry.set("autoStartGame", true); - window.currentlevel = [ - "Placeholder", - level.levelName, - level.createdId, - ["Local", "SongAuthor"] - ]; - if (level.songId < 0){ - window.currentlevel[0] = window.allLevels[Math.abs(level.songId) - 1][0]; - window.currentlevel[3] = ["Local", window.allLevels[Math.abs(level.songId) - 1][3]] - } else { - const songId = level.songId; - const songKey = `ng_song_${songId}`; - window.currentlevel[0] = songKey; - - if (PROXY_BASE && songId > 0) { - try { - const ngRes = await fetch(`${PROXY_BASE}/getGJSongInfo.php`, { - method: "POST", - headers: { "Content-Type": "application/x-www-form-urlencoded" }, - body: `songID=${songId}&secret=Wmfd2893gb7` - }); - - const ngText = ngRes.ok ? await ngRes.text() : "-1"; - if (ngText && ngText !== "-1") { - const ngParts = ngText.split("~|~"); - const ngMap = {}; - for (let i = 0; i + 1 < ngParts.length; i += 2) ngMap[ngParts[i]] = ngParts[i + 1]; - - const songUrl = decodeURIComponent((ngMap["10"] || "").trim()); - const songArtist = (ngMap["4"] || "Unknown").replace(/:$/, "").trim(); - const songTitle = (ngMap["2"] || `Song #${songId}`).replace(/:$/, "").trim(); - - if (songUrl) { - const audioCtx = this.game.sound.context; - if (audioCtx.state === "suspended") await audioCtx.resume(); - const proxiedUrl = `${PROXY_BASE}/audio-proxy?url=${encodeURIComponent(songUrl)}`; - const audioRes = await fetch(proxiedUrl); - const arrayBuf = await audioRes.arrayBuffer(); - const decoded = await audioCtx.decodeAudioData(arrayBuf); - window._onlineSongBuffer = decoded; - window._onlineSongKey = songKey; - window._onlineSongTitle = songTitle; - window._onlineSongArtist = songArtist; - - window.currentlevel[3] = ["Local", window._onlineSongArtist] - } - } - } catch (err) { - console.warn("Failed to load custom song", err); - } - } - } - this.scene.restart(); - }; - this._closeEditorMenu = () => { - if (this._editorObjects) { - this._editorObjects.forEach(obj => obj.destroy()); - } - this._editorOverlay = null; - this._editorObjects = null; - }; - this._openSearchMenu = () => { - if (this._searchOverlay) return; - const sw = screenWidth; - const sh = screenHeight; - - const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); - fadeIn.fillStyle(0x000000, 1); - fadeIn.fillRect(0, 0, sw, sh); - this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); - const overlay = this.add.graphics().setScrollFactor(0).setDepth(100); - const gradientSteps = 80; - for (let gi = 0; gi < gradientSteps; gi++) { - const t = gi / (gradientSteps - 1); - const r1 = Math.round(0x00 + (0x01 - 0x00) * t); - const g1 = Math.round(0x65 + (0x2c - 0x65) * t); - const b1 = Math.round(0xff + (0x71 - 0xff) * t); - const bandColor = (r1 << 16) | (g1 << 8) | b1; - const bandY = Math.floor(gi * sh / gradientSteps); - const bandH = Math.ceil(sh / gradientSteps) + 1; - overlay.fillStyle(bandColor, 1); - overlay.fillRect(0, bandY, sw, bandH); - } - this._searchOverlay = overlay; - const blocker = this.add.zone(sw / 2, sh / 2, sw, sh).setScrollFactor(0).setDepth(101).setInteractive(); - const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_01_001.png") - .setScrollFactor(0).setDepth(104).setFlipX(true).setFlipY(true) - .setRotation(Math.PI).setInteractive(); - this._makeBouncyButton(backBtn, 1, () => { this._closeSearchMenu(false, () => this._openCreatorMenu()); }); - - const cornerBR = this.add.image(sw, sh, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(152).setOrigin(1, 0).setFlipY(false).setAngle(90); - const cornerBL = this.add.image(0, sh, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(152).setOrigin(1, 1).setFlipY(true).setAngle(90); - const panelMarginX = sw * 0.18; - const panelLeft = panelMarginX; - const panelRight = sw - panelMarginX; - const panelW = panelRight - panelLeft; - const panelRadius = 10; - const panelColor = 0x002e75; - const topPanelColor = 0x00388d; - const innerPanelColor = 0x002762; - const filtersPanelColor = 0x00245b; - const extraPanelColor = 0x001f4f; - const panelAlpha = 0.7; - const labelSize = 32; - const labelColor = 0xffffff; - const gfx = this.add.graphics().setScrollFactor(0).setDepth(104); - const topPanelY = sh * 0.10 - 40; - const topPanelH = sh * 0.12; - gfx.fillStyle(topPanelColor, panelAlpha); - gfx.fillRoundedRect(panelLeft, topPanelY, panelW, topPanelH, panelRadius); - const innerPanelY = topPanelY + 10; - const innerPanelX = panelLeft + 10; - const innerPanelW = panelW * 0.57; - const innerPanelH = topPanelH - 20; - gfx.fillStyle(innerPanelColor, panelAlpha); - gfx.fillRoundedRect(innerPanelX, innerPanelY, innerPanelW, innerPanelH, panelRadius); - - const innerBtnX = innerPanelX + innerPanelW + 20; - const innerBtnY = innerPanelY + (innerPanelH / 2); - - const innerBtn2 = this.add.image(innerBtnX + 137, innerBtnY, "GJ_GameSheet03", "GJ_longBtn05_001.png") - .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setInteractive(); - this._makeBouncyButton(innerBtn2, 1, () => {}); - const innerBtn1 = this.add.image(innerBtnX + 47, innerBtnY, "GJ_GameSheet03", "GJ_longBtn06_001.png") - .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setInteractive(); - this._makeBouncyButton(innerBtn1, 1, () => { _doSearch(); }); - - const innerBtn3 = this.add.image(innerBtnX + 231, innerBtnY, "GJ_GameSheet03", "GJ_longBtn07_001.png") - .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setInteractive(); - this._makeBouncyButton(innerBtn3, 1, () => { inputText = ""; _updateInputDisplay(); }); - - const allowedChars = " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; - const inputMaxLen = 64; - const inputCX = innerPanelX + innerPanelW / 2; - const inputCY = innerPanelY + innerPanelH / 2; - - let inputText = ""; - let inputFocused = false; - let cursorVisible = false; - let cursorTimer = null; - const placeholderLabel = this.add.bitmapText(inputCX - 5, inputCY, "bigFont", "Enter a level, user or id", 28) - .setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5) - .setTint(0x6c99d8).setAlpha(0.85); - const typedLabel = this.add.bitmapText(innerPanelX + 10, inputCY, "bigFont", "", 46) - .setScrollFactor(0).setDepth(106).setOrigin(0, 0.5) - .setTint(0xffffff).setVisible(false); - const inputCursor = this.add.text(0, inputCY, "|", { - fontSize: "33px", fontFamily: "Arial", color: "#92a7c0" - }).setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5).setVisible(false); - - const _updateInputDisplay = () => { - if (inputText === "") { - typedLabel.setVisible(false); - placeholderLabel.setVisible(true); - } else { - placeholderLabel.setVisible(false); - typedLabel.setText(inputText).setVisible(true); - } - if (inputFocused) { - const textW = inputText === "" ? 0 : typedLabel.width; - const textLeft = innerPanelX + 10; - inputCursor.x = textLeft + textW + 2; - inputCursor.setVisible(cursorVisible); - } else { - inputCursor.setVisible(false); - } - }; - - const _startCursorBlink = () => { - cursorVisible = true; - _updateInputDisplay(); - if (cursorTimer) cursorTimer.remove(); - cursorTimer = null; - }; - - const _stopCursorBlink = () => { - if (cursorTimer) { cursorTimer.remove(); cursorTimer = null; } - cursorVisible = false; - inputCursor.setVisible(false); - }; - - const _focusInput = () => { - inputFocused = true; - _startCursorBlink(); - }; - - const _blurInput = () => { - inputFocused = false; - _stopCursorBlink(); - _updateInputDisplay(); - }; - const inputHitZone = this.add.zone( - innerPanelX + innerPanelW / 2, innerPanelY + innerPanelH / 2, - innerPanelW, innerPanelH - ).setScrollFactor(0).setDepth(107).setInteractive(); - inputHitZone.on("pointerdown", () => _focusInput()); - - blocker.on("pointerdown", () => { if (inputFocused) _blurInput(); }); - const _onKeyDown = (event) => { - if (!inputFocused) return; - event.stopPropagation(); - if (event.key === "Backspace") { - if (inputText.length > 0) { - inputText = inputText.slice(0, -1); - _updateInputDisplay(); - } - } else if (event.key === "Enter") { - _doSearch(); - } else if (event.ctrlKey || event.metaKey) { - if (event.key === "c" || event.key === "C") { - event.preventDefault(); - navigator.clipboard.writeText(inputText); - } else if (event.key === "v" || event.key === "V") { - event.preventDefault(); - navigator.clipboard.readText().then(pastedText => { - const filtered = pastedText.split('').filter(c => allowedChars.includes(c)).join(''); - if (filtered.length > 0) { - const availableSpace = inputMaxLen - inputText.length; - inputText += filtered.slice(0, availableSpace); - _updateInputDisplay(); - } - }).catch(() => {}); - } else if (event.key === "a" || event.key === "A") { - event.preventDefault(); - } - } else if (event.key.length === 1 && allowedChars.includes(event.key) && !event.ctrlKey) { - if (inputText.length < inputMaxLen) { - inputText += event.key; - _updateInputDisplay(); - } - } - }; - window.addEventListener("keydown", _onKeyDown); - - const htmlInput = { - remove: () => { - window.removeEventListener("keydown", _onKeyDown); - _blurInput(); - }, - get value() { return inputText; }, - }; - const _repositionInput = () => {}; - const qsLabelY = sh * 0.195; - const qsPanelY = qsLabelY + 25; - const qsPanelH = sh * 0.36; - const qsLabel = this.add.bitmapText(sw / 2, qsLabelY, "bigFont", "Quick Search", labelSize) - .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(labelColor); - - gfx.fillStyle(panelColor, panelAlpha); - gfx.fillRoundedRect(panelLeft, qsPanelY, panelW, qsPanelH, panelRadius); - const comingSoonLabel = this.add.bitmapText(sw / 2, qsPanelY + qsPanelH / 2, "bigFont", "Coming Soon!", 42) - .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(0xadd8e6).setAlpha(0.75); - this._searchOverlayObjects.push(comingSoonLabel); - const filtersLabelY = qsPanelY + qsPanelH + 24; - const filtersPanelY = filtersLabelY + 20; - const filtersPanelH = sh * 0.16; - const filtersLabel = this.add.bitmapText(sw / 2, filtersLabelY, "bigFont", "Filters", labelSize) - .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(labelColor); - - gfx.fillStyle(filtersPanelColor, panelAlpha); - gfx.fillRoundedRect(panelLeft, filtersPanelY, panelW, filtersPanelH, panelRadius); - - const filtersComingSoon = this.add.bitmapText(sw / 2, filtersPanelY + filtersPanelH / 2, "bigFont", "Coming Soon!", 42) - .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(0xadd8e6).setAlpha(0.75); - - const extraPanelY = filtersPanelY + filtersPanelH + 18; - const extraPanelH = sh * 0.11; - gfx.fillStyle(extraPanelColor, panelAlpha); - gfx.fillRoundedRect(panelLeft, extraPanelY, panelW, extraPanelH, panelRadius); - - const extraComingSoon = this.add.bitmapText(sw / 2, extraPanelY + extraPanelH / 2, "bigFont", "Coming Soon!", 42) - .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(0xadd8e6).setAlpha(0.75); - - this._searchOverlayObjects.push(gfx, qsLabel, filtersLabel, cornerBR, cornerBL, - placeholderLabel, typedLabel, inputCursor, inputHitZone, innerBtn1, innerBtn2, innerBtn3, - filtersComingSoon, extraComingSoon); - - let _loading = false; - const _doSearch = async () => { - if (_loading) return; - const levelId = htmlInput.value.trim().replace(/\D/g, ""); - if (!levelId) return; - _loading = true; - try { - await _doSearchInner(levelId); - } catch (err) { - } finally { - _loading = false; - } - }; - const _doSearchInner = async (levelId) => { - const PROXY_BASE = (window._gdProxyUrl || "").replace(/\/$/, ""); - if (!PROXY_BASE) return; - const formBody = `levelID=${levelId}&secret=Wmfd2893gb7`; - const res = await fetch(`${PROXY_BASE}/downloadGJLevel22.php`, { - method: "POST", - headers: { "Content-Type": "application/x-www-form-urlencoded" }, - body: formBody - }); - if (!res.ok) throw new Error(`Proxy returned ${res.status}`); - const rawResponse = await res.text(); - if (!rawResponse || rawResponse === "-1" || !rawResponse.includes(":")) { - return; - } - - const responseSegments = rawResponse.split("#"); - const lvlParts = responseSegments[0].split(":"); - const lvlMap = {}; - for (let i = 0; i + 1 < lvlParts.length; i += 2) { - lvlMap[lvlParts[i]] = lvlParts[i + 1]; - } - - const levelData = { - // Core Level Info - id: lvlMap["1"] || levelId, - title: (lvlMap["2"] || "Online Level").trim(), - description: lvlMap["3"] ? atob(lvlMap["3"].replace(/-/g, '+').replace(/_/g, '/')) : "", // Base64 decoded - string: lvlMap["4"] || null, // The raw level data string - version: parseInt(lvlMap["5"]) || 1, - - // User / Author Info - playerID: lvlMap["6"] || null, - accountID: lvlMap["57"] || null, // The author's accountID returned by the server - - // Song Info - officialSong: lvlMap["12"] || "0", - customSongID: (lvlMap["35"] || "").trim(), - isCustomSong: !!(lvlMap["35"] || "").trim() && (lvlMap["35"] || "").trim() !== "0", - isLibrarySong: !!(lvlMap["35"] || "").trim() && (lvlMap["35"] || "").trim() !== "0" && parseInt((lvlMap["35"] || "").trim()) >= 1000000, - offset: parseFloat(lvlMap["45"] || "0") || 0, - - // Gameplay Details - difficulty: parseInt(lvlMap["9"]) || 0, // Auto, Easy, Normal, Hard, Harder, Insane - stars: parseInt(lvlMap["18"]) || 0, - diamonds: parseInt(lvlMap["46"]) || 0, - orbs: parseInt(lvlMap["48"]) || 0, - length: parseInt(lvlMap["15"]) || 0, // 0=Tiny, 1=Small, 2=Medium, 3=Long, 4=XL, 5=Platformer - gameVersion: parseInt(lvlMap["13"]) || 22, // The game version the level was created in (e.g. 22 = 2.2) - binaryVersion: parseInt(lvlMap["52"]) || 0, // The build version used to upload - - // Meta / Social Counters - downloads: parseInt(lvlMap["10"]) || 0, - likes: parseInt(lvlMap["14"]) || 0, - objects: parseInt(lvlMap["45"]) || 0, // Object count (Note: 45 can double as audio offset or object count depending on context) - ts: lvlMap["28"] || null, // Upload/Update timestamp hint - - // Technical / Security Verification keys sent back by server - chk: lvlMap["chk"] || null, - rs: lvlMap["rs"] || null - }; - console.groupCollapsed("level data"); - const { string, ...tableFriendlyData } = levelData; - console.table(tableFriendlyData); - console.groupEnd(); - - const songKey = levelData.isCustomSong - ? (levelData.isLibrarySong ? `lib_song_${levelData.customSongID}` : `ng_song_${levelData.customSongID}`) - : window.allLevels[levelData.officialSong][0]; - - window.currentlevel[0] = songKey; - window._onlineSongOffset = levelData.offset; - - if (levelData.isCustomSong) { - window._onlineSongBuffer = null; - window._onlineSongKey = null; - const ngRes = await fetch(`${PROXY_BASE}/getGJSongInfo.php`, { - method: "POST", - headers: { "Content-Type": "application/x-www-form-urlencoded" }, - body: `songID=${levelData.customSongID}&secret=Wmfd2893gb7` - }); - const ngText = ngRes.ok ? await ngRes.text() : "-1"; - - if (ngText && ngText !== "-1") { - const ngParts = ngText.split("~|~"); - const ngMap = {}; - for (let i = 0; i + 1 < ngParts.length; i += 2) ngMap[ngParts[i]] = ngParts[i + 1]; - - const songData = { - id: ngMap["1"] || levelData.customSongID, - title: (ngMap["2"] || "Unknown").trim(), - artistID: ngMap["3"] || "0", - artistName: (ngMap["4"] || "Unknown").trim(), - sizeMB: ngMap["5"] || "0", - videoID: ngMap["6"] || null, - youtubeURL: ngMap["7"] ? decodeURIComponent(ngMap["7"]) : null, - isScouted: ngMap["8"] === "1", - priority: ngMap["9"] || "0", - rawUrl: (ngMap["10"] || "").trim(), - nongType: parseInt(ngMap["11"] || "0"), - //extraIDs: (ngMap["12"] || "").split("."), //array - isNew: ngMap["13"] === "1", - newIconType: ngMap["14"] || "0", - extraArtists: ngMap["15"] || "" - }; - - const isNCS = levelData.isLibrarySong || songData.nongType === 1; - let songUrl = songData.rawUrl ? decodeURIComponent(songData.rawUrl) : null; - - if (!songUrl && isNCS) { - const songId = levelData.customSongID; - const path = `/music/${songId}.mp3`; - - function generateCdnAuth(path) { - const SALT = "8501f9c2-75ba-4230-8188-51037c4da102"; - const expires = Math.floor(Date.now() / 1000) + 3600; - const inputString = `${SALT}${path}${expires}`; - - const md5Cycle = (x, k) => { - let a = x[0], b = x[1], c = x[2], d = x[3]; - const f = (p, q, r, s, x, sft, t) => { - let val = p + (q & r | ~q & s) + x + t; - return ((val << sft) | (val >>> (32 - sft))) + q; - }; - const g = (p, q, r, s, x, sft, t) => { - let val = p + (q & s | r & ~s) + x + t; - return ((val << sft) | (val >>> (32 - sft))) + q; - }; - const h = (p, q, r, s, x, sft, t) => { - let val = p + (q ^ r ^ s) + x + t; - return ((val << sft) | (val >>> (32 - sft))) + q; - }; - const i = (p, q, r, s, x, sft, t) => { - let val = p + (r ^ (q | ~s)) + x + t; - return ((val << sft) | (val >>> (32 - sft))) + q; - }; - - a = f(a, b, c, d, k[0], 7, -680876936); d = f(d, a, b, c, k[1], 12, -389564586); - c = f(c, d, a, b, k[2], 17, 606105819); b = f(b, c, d, a, k[3], 22, -1044525330); - a = f(a, b, c, d, k[4], 7, -176418897); d = f(d, a, b, c, k[5], 12, 1200080426); - c = f(c, d, a, b, k[6], 17, -1473231341); b = f(b, c, d, a, k[7], 22, -45705983); - a = f(a, b, c, d, k[8], 7, 1770035416); d = f(d, a, b, c, k[9], 12, -1958414417); - c = f(c, d, a, b, k[10], 17, -42063); b = f(b, c, d, a, k[11], 22, -1990404162); - a = f(a, b, c, d, k[12], 7, 1804603682); d = f(d, a, b, c, k[13], 12, -40341101); - c = f(c, d, a, b, k[14], 17, -1502002290); b = f(b, c, d, a, k[15], 22, 1236535329); - - a = g(a, b, c, d, k[1], 5, -165796510); d = g(d, a, b, c, k[6], 9, -1069501632); - c = g(c, d, a, b, k[11], 14, 643717713); b = g(b, c, d, a, k[0], 20, -373897302); - a = g(a, b, c, d, k[5], 5, -701558691); d = g(d, a, b, c, k[10], 9, 38016083); - c = g(c, d, a, b, k[15], 14, -660478335); b = g(b, c, d, a, k[4], 20, -405537848); - a = g(a, b, c, d, k[9], 5, 568446438); d = g(d, a, b, c, k[14], 9, -1019803690); - c = g(c, d, a, b, k[3], 14, -187363961); b = g(b, c, d, a, k[8], 20, 1163531501); - a = g(a, b, c, d, k[13], 5, -1444681467); d = g(d, a, b, c, k[2], 9, -51403784); - c = g(c, d, a, b, k[7], 14, 1735328473); b = g(b, c, d, a, k[12], 20, -1926607734); - - a = h(a, b, c, d, k[5], 4, -378558); d = h(d, a, b, c, k[8], 11, -2022574463); - c = h(c, d, a, b, k[11], 16, 1839030562); b = h(b, c, d, a, k[14], 23, -35309556); - a = h(a, b, c, d, k[1], 4, -1530992060); d = h(d, a, b, c, k[4], 11, 1272893353); - c = h(c, d, a, b, k[7], 16, -155497632); b = h(b, c, d, a, k[10], 23, -1094730640); - a = h(a, b, c, d, k[13], 4, 681279174); d = h(d, a, b, c, k[0], 11, -358537222); - c = h(c, d, a, b, k[3], 16, -722521979); b = h(b, c, d, a, k[6], 23, 76029189); - a = h(a, b, c, d, k[9], 4, -640364487); d = h(d, a, b, c, k[12], 11, -421815835); - c = h(c, d, a, b, k[15], 16, 530742520); b = h(b, c, d, a, k[2], 23, -995338651); - - a = i(a, b, c, d, k[0], 6, -198630844); d = i(d, a, b, c, k[7], 10, 1126891415); - c = i(c, d, a, b, k[14], 15, -1416354905); b = i(b, c, d, a, k[5], 21, -57434055); - a = i(a, b, c, d, k[12], 6, 1700485571); d = i(d, a, b, c, k[3], 10, -1894986606); - c = i(c, d, a, b, k[10], 15, -1051523); b = i(b, c, d, a, k[1], 21, -2054922799); - a = i(a, b, c, d, k[8], 6, 1873313359); d = i(d, a, b, c, k[15], 10, -30611744); - c = i(c, d, a, b, k[6], 15, -1560198380); b = i(b, c, d, a, k[13], 21, 1309151649); - a = i(a, b, c, d, k[4], 6, -145523070); d = i(d, a, b, c, k[11], 10, -1120210379); - c = i(c, d, a, b, k[2], 15, 718787259); b = i(b, c, d, a, k[9], 21, -343485551); - - x[0] = (x[0] + a) | 0; x[1] = (x[1] + b) | 0; - x[2] = (x[2] + c) | 0; x[3] = (x[3] + d) | 0; - }; - - const md5Raw = (str) => { - let n = str.length, state = [1732584193, -271733879, -1732584194, 271733878], i; - let words = []; - for (i = 0; i <= n; i++) words[i >> 2] |= (str.charCodeAt(i) || 128) << ((i % 4) << 3); - words[(((n + 8) >> 6) << 4) + 14] = n * 8; - for (i = 0; i < words.length; i += 16) md5Cycle(state, words.slice(i, i + 16)); - return state.map(val => [val & 0xFF, (val >> 8) & 0xFF, (val >> 16) & 0xFF, (val >> 24) & 0xFF]).flat(); - }; - - const hashBytes = md5Raw(inputString); - const binaryStr = String.fromCharCode(...hashBytes); - const token = btoa(binaryStr) - .replace(/\+/g, '-') - .replace(/\//g, '_') - .replace(/=+$/, ''); - - return { token, expires }; - } - - const auth = generateCdnAuth(path); - - songUrl = `https://geometrydashfiles.b-cdn.net${path}?token=${auth.token}&expires=${auth.expires}`; - } - - console.groupCollapsed("song data"); - console.table({ ...songData}); - console.log(songUrl); - console.groupEnd(); - - if (songUrl) { - const audioCtx = this.game.sound.context; - if (audioCtx.state === "suspended") await audioCtx.resume(); - - window._onlineSongKey = songKey; - window._onlineSongTitle = songData.title; - window._onlineSongArtist = songData.artistName; - - try { - const proxiedUrl = `${PROXY_BASE}/audio-proxy?url=${encodeURIComponent(songUrl)}`; - const audioRes = await fetch(proxiedUrl); - - if (!audioRes.ok) throw new Error(`audio proxy returned ${audioRes.status}`); - - const arrayBuf = await audioRes.arrayBuffer(); - const decoded = await audioCtx.decodeAudioData(arrayBuf); - - window._onlineSongBuffer = decoded; - } catch (error) { - console.error("Failed to load audio via proxy:", error.message); - - window._onlineSongBuffer = null; - } - } else { - } - } else { - _showStatus("Song info failed to load", "#ff0000"); - } - } else { - window._onlineSongBuffer = null; - window._onlineSongKey = null; - window._onlineSongArtist = null; - } - window._onlineLevelString = levelData.string; - window._onlineLevelName = levelData.title; - window._onlineLevelId = "online_" + levelData.id; - this.game.registry.set("autoStartGame", true); - window.currentlevel = [ - songKey, - window._onlineLevelName, - window._onlineLevelId, - [window._onlineSongArtist || "Unknown"] - ]; - this.time.delayedCall(600, () => { - htmlInput.remove(); - window.removeEventListener("resize", _repositionInput); - this._closeSearchMenu(true); - this._closeLevelSelect && this._closeLevelSelect(true); - const flash = this.add.graphics().setScrollFactor(0).setDepth(300).setAlpha(0); - flash.fillStyle(0x000000, 1); - flash.fillRect(0, 0, sw, sh); - this.tweens.add({ - targets: flash, alpha: 1, duration: 250, ease: "Linear", - onComplete: () => this.scene.restart() - }); - }); - }; - this._searchOverlayObjects.push(overlay, blocker, backBtn); - if (window.levelID && !window.alreadydownloaded) { // if there's an ID parameter, load it directly - window.alreadydownloaded = true; - htmlInput.remove(); - const loadingBg = this.add.graphics().setScrollFactor(0).setDepth(1000); - loadingBg.fillStyle(0x000000, 1); - loadingBg.fillRect(0, 0, sw, sh); - const loadingText = this.add.bitmapText(sw / 2, sh / 2, "bigFont", "Loading level...", 30) - .setScrollFactor(0).setDepth(1001).setOrigin(0.5); - this._searchOverlayObjects.push(loadingBg, loadingText); - _doSearchInner(window.levelID); - } - window.addEventListener("keydown", (e) => { - if (e.key === "Enter") _doSearch(); - e.stopPropagation(); - }); - window.addEventListener("keyup", (e) => e.stopPropagation()); - window.addEventListener("keypress", (e) => e.stopPropagation()); - this._searchHtmlInput = htmlInput; - this._searchInputResizeFn = _repositionInput; - }; - this._closeSearchMenu = (silent = false, onComplete = null) => { - if (!this._searchOverlay) return; - if (this._searchHtmlInput) { - this._searchHtmlInput.remove(); - this._searchHtmlInput = null; - } - if (this._searchInputResizeFn) { - window.removeEventListener("resize", this._searchInputResizeFn); - this._searchInputResizeFn = null; - } - const destroy = () => { - for (const obj of this._searchOverlayObjects) { - if (obj && obj.destroy) obj.destroy(); - } - this._searchOverlayObjects = []; - this._searchOverlay = null; - }; - if (silent) { destroy(); if (onComplete) onComplete(); return; } - const sw = screenWidth, sh = screenHeight; - const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(200).setAlpha(0); - fadeOut.fillStyle(0x000000, 1); - fadeOut.fillRect(0, 0, sw, sh); - this.tweens.add({ - targets: fadeOut, alpha: 1, duration: 150, ease: "Linear", - onComplete: () => { - destroy(); - if (onComplete) onComplete(); - this.tweens.add({ targets: fadeOut, alpha: 0, duration: 150, ease: "Linear", onComplete: () => fadeOut.destroy() }); - } - }); - }; - this._makeBouncyButton(this._creatorBtn, 1, () => { - this._openCreatorMenu(); - }, () => this._menuActive && !this._levelSelectOverlay); - //icon stufff - this._iconBtn = this.add.image(0, 0, "GJ_GameSheet03", "GJ_garageBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setScale(1); - this._iconBtnSelected = false; - this._makeBouncyButton(this._iconBtn, 1, () => { - this._openIconSelector(); - }, () => this._menuActive && !this._levelSelectOverlay); - - this._iconOverlay = null; - - const _iconFrameSets = { - icon: [ -"player_01_001.png", "player_02_001.png", "player_03_001.png", "player_04_001.png", "player_05_001.png", "player_06_001.png", "player_07_001.png", "player_08_001.png", "player_09_001.png", "player_10_001.png", -"player_11_001.png", "player_12_001.png", "player_13_001.png", "player_14_001.png", "player_15_001.png", "player_16_001.png", "player_17_001.png", "player_18_001.png", "player_19_001.png", "player_20_001.png", -"player_21_001.png", "player_22_001.png", "player_23_001.png", "player_24_001.png", "player_25_001.png", "player_26_001.png", "player_27_001.png", "player_28_001.png", "player_29_001.png", "player_30_001.png", -"player_31_001.png", "player_32_001.png", "player_33_001.png", "player_34_001.png", "player_35_001.png", "player_36_001.png", "player_37_001.png", "player_38_001.png", "player_39_001.png", "player_40_001.png", -"player_41_001.png", "player_42_001.png", "player_43_001.png", "player_44_001.png", "player_45_001.png", "player_46_001.png", "player_47_001.png", "player_48_001.png", "player_49_001.png", "player_50_001.png", -"player_51_001.png", "player_52_001.png", "player_53_001.png", "player_54_001.png", "player_55_001.png", "player_56_001.png", "player_57_001.png", "player_58_001.png", "player_59_001.png", "player_60_001.png", -"player_61_001.png", "player_62_001.png", "player_63_001.png", "player_64_001.png", "player_65_001.png", "player_66_001.png", "player_67_001.png", "player_68_001.png", "player_69_001.png", "player_70_001.png", -"player_71_001.png", "player_72_001.png", "player_73_001.png", "player_74_001.png", "player_75_001.png", "player_76_001.png", "player_77_001.png", "player_78_001.png", "player_79_001.png", "player_80_001.png", -"player_81_001.png", "player_82_001.png", "player_83_001.png", "player_84_001.png", "player_85_001.png", "player_86_001.png", "player_87_001.png", "player_88_001.png", "player_89_001.png", "player_90_001.png", -"player_91_001.png", "player_92_001.png", "player_93_001.png", "player_94_001.png", "player_95_001.png", "player_96_001.png", "player_97_001.png", "player_98_001.png", "player_99_001.png", "player_100_001.png", -"player_101_001.png", "player_102_001.png", "player_103_001.png", "player_104_001.png", "player_105_001.png", "player_106_001.png", "player_107_001.png", "player_108_001.png", "player_109_001.png", "player_110_001.png", -"player_111_001.png", "player_112_001.png", "player_113_001.png", "player_114_001.png", "player_115_001.png", "player_116_001.png", "player_117_001.png", "player_118_001.png", "player_119_001.png", "player_120_001.png", -"player_121_001.png", "player_122_001.png", "player_123_001.png", "player_124_001.png", "player_125_001.png", "player_126_001.png", "player_127_001.png", "player_128_001.png", "player_129_001.png", "player_130_001.png", -"player_131_001.png", "player_132_001.png", "player_133_001.png", "player_134_001.png", "player_135_001.png", "player_136_001.png", "player_137_001.png", "player_138_001.png", "player_139_001.png", "player_140_001.png", -"player_141_001.png", "player_142_001.png", "player_143_001.png", "player_144_001.png", "player_145_001.png", "player_146_001.png", "player_147_001.png", "player_148_001.png", "player_149_001.png", "player_150_001.png", -"player_151_001.png", "player_152_001.png", "player_153_001.png", "player_154_001.png", "player_155_001.png", "player_156_001.png", "player_157_001.png", "player_158_001.png", "player_159_001.png", "player_160_001.png", -"player_161_001.png", "player_162_001.png", "player_163_001.png", "player_164_001.png", "player_165_001.png", "player_166_001.png", "player_167_001.png", "player_168_001.png", "player_169_001.png", "player_170_001.png", -"player_171_001.png", "player_172_001.png", "player_173_001.png", "player_174_001.png", "player_175_001.png", "player_176_001.png", "player_177_001.png", "player_178_001.png", "player_179_001.png", "player_180_001.png", -"player_181_001.png", "player_182_001.png", "player_183_001.png", "player_184_001.png", "player_185_001.png", "player_186_001.png", "player_187_001.png", "player_188_001.png", "player_189_001.png", "player_190_001.png", -"player_191_001.png", "player_192_001.png", -"player_193_001.png", "player_194_001.png", "player_195_001.png", "player_196_001.png", "player_197_001.png", "player_198_001.png", "player_199_001.png", "player_200_001.png", "player_201_001.png", "player_202_001.png", -"player_203_001.png", "player_204_001.png", "player_205_001.png", "player_206_001.png", "player_207_001.png", "player_208_001.png", "player_209_001.png", "player_210_001.png", "player_211_001.png", "player_212_001.png", -"player_213_001.png", "player_214_001.png", "player_215_001.png", "player_216_001.png", "player_217_001.png", "player_218_001.png", "player_219_001.png", "player_220_001.png", "player_221_001.png", "player_222_001.png", -"player_223_001.png", "player_224_001.png", "player_225_001.png", "player_226_001.png", "player_227_001.png", "player_228_001.png", "player_229_001.png", "player_230_001.png", "player_231_001.png", "player_232_001.png", -"player_233_001.png", "player_234_001.png", "player_235_001.png", "player_236_001.png", "player_237_001.png", "player_238_001.png", "player_239_001.png", "player_240_001.png", "player_241_001.png", "player_242_001.png", -"player_243_001.png", "player_244_001.png", "player_245_001.png", "player_246_001.png", "player_247_001.png", "player_248_001.png" - ], - ship: [ - "ship_01_001.png", "ship_02_001.png", "ship_03_001.png", "ship_04_001.png", "ship_05_001.png", "ship_06_001.png", "ship_07_001.png", "ship_08_001.png", "ship_09_001.png", "ship_10_001.png", -"ship_11_001.png", "ship_12_001.png", "ship_13_001.png", "ship_14_001.png", "ship_15_001.png", "ship_16_001.png", "ship_17_001.png", "ship_18_001.png", "ship_19_001.png", "ship_20_001.png", -"ship_21_001.png", "ship_22_001.png", "ship_23_001.png", "ship_24_001.png", "ship_25_001.png", "ship_26_001.png", "ship_27_001.png", "ship_28_001.png", "ship_29_001.png", "ship_30_001.png", -"ship_31_001.png", "ship_32_001.png", "ship_33_001.png", "ship_34_001.png", "ship_35_001.png", "ship_36_001.png", "ship_37_001.png", "ship_38_001.png", "ship_39_001.png", "ship_40_001.png", -"ship_41_001.png", "ship_42_001.png", "ship_43_001.png", "ship_44_001.png", "ship_45_001.png", "ship_46_001.png", "ship_47_001.png", "ship_48_001.png", "ship_49_001.png", "ship_50_001.png", -"ship_51_001.png", "ship_52_001.png", "ship_53_001.png", "ship_54_001.png", "ship_55_001.png", "ship_56_001.png", "ship_57_001.png", "ship_58_001.png", "ship_59_001.png", "ship_60_001.png", -"ship_61_001.png", "ship_62_001.png", "ship_63_001.png", "ship_64_001.png", "ship_65_001.png", "ship_66_001.png", "ship_67_001.png", "ship_68_001.png", "ship_69_001.png", "ship_70_001.png", -"ship_71_001.png", "ship_72_001.png", "ship_73_001.png", "ship_74_001.png", "ship_75_001.png", "ship_76_001.png", "ship_77_001.png", "ship_78_001.png", "ship_79_001.png" - ], - ball: [ - "player_ball_01_001.png", "player_ball_02_001.png", "player_ball_03_001.png", "player_ball_04_001.png", "player_ball_05_001.png", "player_ball_06_001.png", "player_ball_07_001.png", "player_ball_08_001.png", "player_ball_09_001.png", "player_ball_10_001.png", - "player_ball_11_001.png", "player_ball_12_001.png", "player_ball_13_001.png", "player_ball_14_001.png", "player_ball_15_001.png", "player_ball_16_001.png", "player_ball_17_001.png", "player_ball_18_001.png", "player_ball_19_001.png", "player_ball_20_001.png", - "player_ball_21_001.png", "player_ball_22_001.png", "player_ball_23_001.png", "player_ball_24_001.png", "player_ball_25_001.png", "player_ball_26_001.png", "player_ball_27_001.png", "player_ball_28_001.png", "player_ball_29_001.png", "player_ball_30_001.png", - - "player_ball_31_001.png", "player_ball_32_001.png", "player_ball_33_001.png", "player_ball_34_001.png", "player_ball_35_001.png", "player_ball_36_001.png", "player_ball_37_001.png", "player_ball_38_001.png", "player_ball_39_001.png", "player_ball_40_001.png", - "player_ball_41_001.png", "player_ball_42_001.png", "player_ball_43_001.png", "player_ball_44_001.png", "player_ball_45_001.png", "player_ball_46_001.png", "player_ball_47_001.png", "player_ball_48_001.png", "player_ball_49_001.png", "player_ball_50_001.png", - "player_ball_51_001.png", "player_ball_52_001.png", - ], - wave: [ - "dart_01_001.png", "dart_02_001.png", "dart_03_001.png", "dart_04_001.png", "dart_05_001.png", - "dart_06_001.png", "dart_07_001.png", "dart_08_001.png", "dart_09_001.png", "dart_10_001.png", - "dart_11_001.png", "dart_12_001.png", "dart_13_001.png", "dart_14_001.png", "dart_15_001.png", - "dart_16_001.png", "dart_17_001.png", "dart_18_001.png", "dart_19_001.png", "dart_20_001.png", - "dart_21_001.png", "dart_22_001.png", "dart_23_001.png", "dart_24_001.png", "dart_25_001.png", - "dart_26_001.png", "dart_27_001.png", "dart_28_001.png", "dart_29_001.png", "dart_30_001.png", - "dart_31_001.png", "dart_32_001.png", "dart_33_001.png", "dart_34_001.png", "dart_35_001.png", - ], - ufo: [ - "bird_01_001.png", "bird_02_001.png", "bird_03_001.png", "bird_04_001.png", "bird_05_001.png", - "bird_06_001.png", "bird_07_001.png", "bird_08_001.png", "bird_09_001.png", "bird_10_001.png", - "bird_11_001.png", "bird_12_001.png", "bird_13_001.png", "bird_14_001.png", "bird_15_001.png", - "bird_16_001.png", "bird_17_001.png", "bird_18_001.png", "bird_19_001.png", "bird_20_001.png", - "bird_21_001.png", "bird_22_001.png", "bird_23_001.png", "bird_24_001.png", "bird_25_001.png", - "bird_26_001.png", "bird_27_001.png", "bird_28_001.png", "bird_29_001.png", "bird_30_001.png", - "bird_31_001.png", "bird_32_001.png", "bird_33_001.png", "bird_34_001.png", "bird_35_001.png", - "bird_36_001.png", "bird_37_001.png", "bird_38_001.png", "bird_39_001.png", "bird_40_001.png", - "bird_41_001.png", "bird_42_001.png", "bird_43_001.png", "bird_44_001.png", "bird_45_001.png", - "bird_46_001.png", "bird_47_001.png", "bird_48_001.png", "bird_49_001.png", "bird_50_001.png", - "bird_51_001.png", - ], - }; - - - const _iconWindowProps = { - icon: "currentPlayer", - ship: "currentShip", - ball: "currentBall", - wave: "currentWave", - ufo: "currentBird", - }; - - const _iconAtlas = { - icon: "GJ_GameSheetIcons", - ship: "GJ_GameSheetIcons", - ball: "GJ_GameSheetIcons", - wave: "GJ_GameSheetIcons", - ufo: "GJ_GameSheetIcons", - }; - - const _tabBtnFrames = { - icon: { on: "gj_iconBtn_on_001.png", off: "gj_iconBtn_off_001.png" }, - ship: { on: "gj_shipBtn_on_001.png", off: "gj_shipBtn_off_001.png" }, - ball: { on: "gj_ballBtn_on_001.png", off: "gj_ballBtn_off_001.png" }, - wave: { on: "gj_dartBtn_on_001.png", off: "gj_dartBtn_off_001.png" }, - ufo: { on: "gj_birdBtn_on_001.png", off: "gj_birdBtn_off_001.png" }, - }; - - this._openIconSelector = (startTab = "icon") => { - if (this._iconOverlay) return; - - const sw = screenWidth; - const sh = screenHeight; - - const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); - fadeIn.fillStyle(0x000000, 1); - fadeIn.fillRect(0, 0, sw, sh); - this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); - - const overlay = this.add.graphics().setScrollFactor(0).setDepth(100); - const gradientSteps = 80; - for (let gi = 0; gi < gradientSteps; gi++) { - const t = gi / (gradientSteps - 1); - const r1 = Math.round(0x92 + (0x3a - 0x92) * t); - const g1 = Math.round(0x92 + (0x3a - 0x92) * t); - const b1 = Math.round(0x92 + (0x3a - 0x92) * t); - const bandColor = (r1 << 16) | (g1 << 8) | b1; - const bandY = Math.floor(gi * sh / gradientSteps); - const bandH = Math.ceil(sh / gradientSteps) + 1; - overlay.fillStyle(bandColor, 1); - overlay.fillRect(0, bandY, sw, bandH); - } - this._iconOverlay = overlay; - - const blocker = this.add.zone(sw / 2, sh / 2, sw, sh) - .setScrollFactor(0).setDepth(101).setInteractive(); - - const titleTxt = this.add.bitmapText(sw / 2, 60, "goldFont", "Icon Selector", 32) - .setOrigin(0.5, 0.5).setScrollFactor(0).setDepth(105); - - this._iconOverlayObjects = [overlay, blocker, titleTxt]; - - const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_03_001.png") - .setScrollFactor(0).setDepth(104).setFlipY(true) - .setFlipX(true) - .setRotation(Math.PI).setInteractive(); - this._iconOverlayObjects.push(backBtn); - this._makeBouncyButton(backBtn, 1, () => this._closeIconSelector()); - - const topBarHeight = 100; - const lineY = topBarHeight + 100; - const linePadding = 230; - const topBar = this.add.graphics().setScrollFactor(0).setDepth(102); - const lineSegments = 40; - const lineStart = linePadding; - const lineEnd = sw - linePadding; - const lineWidth = lineEnd - lineStart; - const fadeZone = lineWidth * 0.25; - for (let li = 0; li < lineSegments; li++) { - const t0 = li / lineSegments; - const t1 = (li + 1) / lineSegments; - const x0 = lineStart + t0 * lineWidth; - const x1 = lineStart + t1 * lineWidth; - const mid = (t0 + t1) / 2 * lineWidth; - let alpha; - if (mid < fadeZone) { - alpha = mid / fadeZone; - } else if (mid > lineWidth - fadeZone) { - alpha = (lineWidth - mid) / fadeZone; - } else { - alpha = 1; - } - topBar.lineStyle(3, 0xFFFFFF, alpha); - topBar.beginPath(); - topBar.moveTo(x0, lineY); - topBar.lineTo(x1, lineY); - topBar.strokePath(); - } - this._iconOverlayObjects.push(topBar); - - const cols = 12; - const iconSize = 60; - const padding = 2; - const containerPadding = 10; - const rows = 3; - const containerWidth = cols * iconSize + (cols - 1) * padding + 12; - const containerHeight = rows * iconSize + (rows - 1) * padding + 12; - const containerX = sw / 2 - containerWidth / 2; - const containerY = sh - containerHeight - containerPadding - 150; - const startX = containerX + 6 + iconSize / 2; - const startY = containerY + 6 + iconSize / 2; - - const gridBg = this.add.graphics().setScrollFactor(0).setDepth(102); - gridBg.fillStyle(0x454444, 1); - gridBg.fillRoundedRect(containerX, containerY, containerWidth, containerHeight, 10); - this._iconOverlayObjects.push(gridBg); - - const cornerTL = this.add.image(0, 0, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(100).setOrigin(1, 0).setFlipX(false).setAngle(-90) - const cornerTR = this.add.image(sw, 0, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(103).setOrigin(0, 0).setFlipY(false).setFlipX(true).setAngle(90); - this._iconOverlayObjects.push(cornerTL, cornerTR); - - const navDotSpacing = 35; - const navDotY = containerY + containerHeight + 30; - const navDot1 = this.add.image(sw / 2 - navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_on_001.png").setScrollFactor(0).setDepth(104).setScale(0.75); - const navDot2 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75); - const navDot3 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); - const navDot4 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); - const navDot5 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); - const navDot6 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); - const navDot7 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); - const navDot8 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); - const navDot9 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); - this._iconOverlayObjects.push(navDot1, navDot2, navDot3, navDot4, navDot5, navDot6, navDot7, navDot8, navDot9); - const _updateNavDots = (page, tab) => { - const isShip = (tab || startTab) === "ship"; - const isIcon = (tab || startTab) === "icon"; - const maxPages = _getMaxPages(tab); - [navDot1, navDot2, navDot3, navDot4, navDot5, navDot6, navDot7, navDot8, navDot9].forEach(dot => dot.setVisible(false)); - if (isShip || isIcon) { - const dots = [navDot1, navDot2, navDot3, navDot4, navDot5, navDot6, navDot7, navDot8, navDot9]; - const totalDotsToShow = Math.min(maxPages, 9); - const totalWidth = (totalDotsToShow - 1) * navDotSpacing; - const startX = sw / 2 - totalWidth / 2; - for (let i = 0; i < totalDotsToShow; i++) { - dots[i].setPosition(startX + i * navDotSpacing, navDotY).setVisible(true); - dots[i].setTexture("GJ_GameSheet03", page === i ? "gj_navDotBtn_on_001.png" : "gj_navDotBtn_off_001.png"); - } - } else { - navDot1.setPosition(sw / 2 - navDotSpacing / 2, navDotY).setVisible(true); - navDot2.setPosition(sw / 2 + navDotSpacing / 2, navDotY).setVisible(true); - navDot1.setTexture("GJ_GameSheet03", page === 0 ? "gj_navDotBtn_on_001.png" : "gj_navDotBtn_off_001.png"); - navDot2.setTexture("GJ_GameSheet03", page === 1 ? "gj_navDotBtn_on_001.png" : "gj_navDotBtn_off_001.png"); - } - }; - - const rainbowColors = [ - 0xFF0000, 0xFF4500, 0xFF7F00, 0xFFAA00, 0xFFD700, - 0xFFFF00, 0xAAFF00, 0x00FF00, 0x00FF7F, 0x00FFFF, - 0x007FFF, 0x0000FF, 0x7F00FF, 0xFF00FF, 0xFF007F, - 0xFFFFFF, 0xC0C0C0, 0x808080, 0x404040, 0x000000, - ]; - - const colorBtnSize = 35; - const colorPadding = 6; - const colorRowWidth = rainbowColors.length * (colorBtnSize + colorPadding) - colorPadding; - const colorRow1Y = containerY + containerHeight + 88; - const colorRow2Y = colorRow1Y + colorBtnSize + 10; - const colorRowStartX = sw / 2 - colorRowWidth / 2 + colorBtnSize / 2; - - const colorLabel1 = this.add.text(sw / 2 - colorRowWidth / 2, colorRow1Y - 14, "", { - fontSize: "11px", color: "#ffffff", fontFamily: "Arial"}).setScrollFactor(0).setDepth(104).setOrigin(0, 0.5).setAlpha(1); - this._iconOverlayObjects.push(colorLabel1); - - const colorLabel2 = this.add.text(sw / 2 - colorRowWidth / 2, colorRow2Y - 14, "", { - fontSize: "11px", color: "#ffffff", fontFamily: "Arial"}).setScrollFactor(0).setDepth(104).setOrigin(0, 0.5).setAlpha(1); - this._iconOverlayObjects.push(colorLabel2); - - const colorBoxWidth = sw; - const colorBoxHeight = colorBtnSize * 2 + 10 + 20; - const colorBoxX = 0; - const colorBoxY = colorRow1Y - colorBtnSize / 2 - 10; - const colorBox = this.add.graphics().setScrollFactor(0).setDepth(101); - colorBox.fillStyle(0x000000, 0.5); - colorBox.fillRect(colorBoxX, colorBoxY, colorBoxWidth, colorBoxHeight); - this._iconOverlayObjects.push(colorBox); - - const color1SelLabel = this.add.image(0, 0, "GJ_GameSheet03", "GJ_select_001.png").setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5).setVisible(false).setScale(0.6); - const color2SelLabel = this.add.image(0, 0, "GJ_GameSheet03", "GJ_select_001.png").setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5).setVisible(false).setScale(0.6); - this._iconOverlayObjects.push(color1SelLabel, color2SelLabel); - - const _moveColorSelect = (label, color, rowY) => { - const idx = rainbowColors.indexOf(color); - if (idx === -1) { - label.setVisible(false); - return; - } - - label.setPosition(colorRowStartX + idx * (colorBtnSize + colorPadding), rowY).setVisible(true); - }; - - _moveColorSelect(color1SelLabel, window.mainColor, colorRow1Y); - _moveColorSelect(color2SelLabel, window.secondaryColor, colorRow2Y); - - for (let ci = 0; ci < rainbowColors.length; ci++) { - const cx = colorRowStartX + ci * (colorBtnSize + colorPadding); - - const btn1AtlasInfo = getAtlasFrame(this, "GJ_colorBtn_001.png"); - let btn1; - btn1 = this.add.rectangle(cx, colorRow1Y, colorBtnSize, colorBtnSize, rainbowColors[ci]).setScrollFactor(0).setDepth(104).setInteractive(); - this._iconOverlayObjects.push(btn1); - - const btn2AtlasInfo = getAtlasFrame(this, "GJ_colorBtn_001.png"); - let btn2; - btn2 = this.add.rectangle(cx, colorRow2Y, colorBtnSize, colorBtnSize, rainbowColors[ci]).setScrollFactor(0).setDepth(104).setInteractive(); - this._iconOverlayObjects.push(btn2); - - ((color, b1, b2) => { - this._makeBouncyButton(b1, 1.0, () => { - window.mainColor = color; - localStorage.setItem("iconMainColor", hexadecimalToHex(color)); - _moveColorSelect(color1SelLabel, color, colorRow1Y); - if (this._player) { - const safeSetTint = (sprite, color) => { - if (sprite && sprite.setTint) { - try { - sprite.setTint(color); - if (this.renderer.type === Phaser.CANVAS && sprite.tintTopLeft !== undefined) { - if (sprite.tintTopLeft === 0xffffff && color !== 0xffffff) { - } - } - } catch (e) { - } - } - }; - - safeSetTint(this._player._playerSpriteLayer?.sprite, color); - safeSetTint(this._player._shipSpriteLayer?.sprite, color); - safeSetTint(this._player._ballSpriteLayer?.sprite, color); - safeSetTint(this._player._waveSpriteLayer?.sprite, color); - if (this._player._particleEmitter) { - try { - this._player._particleEmitter.tint = color; - } catch (e) { - } - } - } - selectedIcon.setTint(color); - }); - this._makeBouncyButton(b2, 1.0, () => { - window.secondaryColor = color; - localStorage.setItem("iconSecondaryColor", hexadecimalToHex(color)); - _moveColorSelect(color2SelLabel, color, colorRow2Y); - if (this._player) { - const safeSetTint = (sprite, color) => { - if (sprite && sprite.setTint) { - try { - sprite.setTint(color); - } catch (e) { - } - } - }; - - safeSetTint(this._player._playerGlowLayer?.sprite, color); - safeSetTint(this._player._playerOverlayLayer?.sprite, color); - safeSetTint(this._player._shipGlowLayer?.sprite, color); - safeSetTint(this._player._shipOverlayLayer?.sprite, color); - safeSetTint(this._player._ballGlowLayer?.sprite, color); - safeSetTint(this._player._ballOverlayLayer?.sprite, color); - safeSetTint(this._player._waveGlowLayer?.sprite, color); - safeSetTint(this._player._waveOverlayLayer?.sprite, color); - if (this._player._streak) { - try { - this._player._streak._color = color; - } catch (e) { - } - } - } - selectedIconExtra.setTint(window.secondaryColor); - _refreshPreview(currentTab, _getPreviewFrame(currentTab)); - }); - })(rainbowColors[ci], btn1, btn2); - } - - const previewY = lineY - 35; - const selectedIconExtra = this.add.image(sw / 2, previewY, _iconAtlas[startTab], null).setScrollFactor(0).setDepth(102).setVisible(false); - const selectedIcon = this.add.image(sw / 2, previewY, _iconAtlas[startTab], null).setScrollFactor(0).setDepth(103); - - const _getPreviewFrame = (tab) => { - const prop = _iconWindowProps[tab]; - const frames = _iconFrameSets[tab]; - const match = frames.find(f => f.replace("_001.png", "") === window[prop]); - return match || frames[0]; - }; - - const _refreshPreview = (tab, frame) => { - selectedIcon.setTexture(_iconAtlas[tab], frame); - const s = Math.min(80 / (selectedIcon.width || 80), 80 / (selectedIcon.height || 80)) * 0.85; - selectedIcon.setScale(s); - selectedIcon.setTint(window.mainColor); - const extraFrame = frame.replace("_001.png", "_2_001.png"); - const extraInfo = getAtlasFrame(this, extraFrame); - if (extraInfo) { - selectedIconExtra.setTexture(extraInfo.atlas, extraInfo.frame).setVisible(true).setScale(s).setTint(window.secondaryColor); - } else { - selectedIconExtra.setVisible(false); - } - }; - - _refreshPreview(startTab, _getPreviewFrame(startTab)); - this._iconOverlayObjects.push(selectedIconExtra, selectedIcon); - - const tabBtnY = containerY - 40; - const tabKeys = ["icon", "ship", "ball", "ufo", "wave"]; - const tabSpacing = 65; - const tabOffsets = { - icon: -tabSpacing * 2, - ship: -tabSpacing, - ball: 0, - ufo: tabSpacing, - wave: tabSpacing * 2, - }; - const tabRotations = { icon: -Math.PI/2, ship: 0, ball: -Math.PI/2, ufo: Math.PI/2, wave: Math.PI/2 }; - const tabFlipXStates = { icon: true, ship: false, ball: true, ufo: false, wave: false }; - const tabFlipYStates = { icon: false, ship: false, ball: false, ufo: true, wave: true }; - const tabBtnSprites = {}; - - const _switchTab = (tab) => { - for (const k of tabKeys) { - if (tabBtnSprites[k]) { - tabBtnSprites[k].setTexture("GJ_GameSheet03", - k === tab ? _tabBtnFrames[k].on : _tabBtnFrames[k].off); - } - } - _refreshPreview(tab, _getPreviewFrame(tab)); - _buildGrid(tab); - }; - - tabKeys.forEach((tab, i) => { - const isActive = tab === startTab; - const btn = this.add.image(sw / 2 + tabOffsets[tab], tabBtnY, "GJ_GameSheet03", - isActive ? _tabBtnFrames[tab].on : _tabBtnFrames[tab].off) - .setScrollFactor(0).setDepth(104).setScale(0.75) - .setRotation(tabRotations[tab]).setFlipX(tabFlipXStates[tab]).setFlipY(tabFlipYStates[tab]) - .setInteractive(); - tabBtnSprites[tab] = btn; - this._iconOverlayObjects.push(btn); - this._makeBouncyButton(btn, 0.75, () => _switchTab(tab)); - }); - - this._iconGridObjects = []; - - const selLabel = this.add.image(0, 0, "GJ_GameSheet03", "GJ_select_001.png").setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5).setVisible(false); - this._iconOverlayObjects.push(selLabel); - - const iconsPerPage = cols * rows; - let currentPage = 0; - - const arrowY = containerY + containerHeight / 2; - const arrowMargin = 54; - - const prevArrow = this.add.image(containerX - arrowMargin, arrowY, "GJ_GameSheet03", "GJ_arrow_01_001.png") - .setScrollFactor(0).setDepth(106).setScale(0.8).setFlipX(false).setInteractive(); - const nextArrow = this.add.image(containerX + containerWidth + arrowMargin, arrowY, "GJ_GameSheet03", "GJ_arrow_01_001.png") - .setScrollFactor(0).setDepth(106).setScale(0.8).setInteractive().setFlipX(true); - - //bouncy buttons for arrows - const _getMaxPages = (tab) => { - return Math.ceil(_iconFrameSets[tab].length / iconsPerPage); - }; - const _prevPage = () => { - const maxPages = _getMaxPages(_currentTab); - currentPage = (currentPage - 1 + maxPages) % maxPages; - _updateNavDots(currentPage, _currentTab); - _buildGrid(_currentTab, currentPage); - }; - const _nextPage = () => { - const maxPages = _getMaxPages(_currentTab); - currentPage = (currentPage + 1) % maxPages; - _updateNavDots(currentPage, _currentTab); - _buildGrid(_currentTab, currentPage); - }; - this._makeBouncyButton(prevArrow, 0.8, _prevPage); - this._makeBouncyButton(nextArrow, 0.8, _nextPage); - this._iconOverlayObjects.push(prevArrow, nextArrow); - const _buildGrid = (tab, page = 0) => { - for (const o of this._iconGridObjects) { - if (o && o.destroy) o.destroy(); - } - this._iconGridObjects = []; - selLabel.setVisible(false); - const allFrames = _iconFrameSets[tab]; - const frames = allFrames.slice(page * iconsPerPage, (page + 1) * iconsPerPage); - const atlas = _iconAtlas[tab]; - const prop = _iconWindowProps[tab]; - frames.forEach((frame, idx) => { - const col = idx % cols; - const row = Math.floor(idx / cols); - const ix = startX + col * (iconSize + padding); - const iy = startY + row * (iconSize + padding); - const hitRect = this.add.rectangle(ix, iy, iconSize, iconSize, 0x000000, 0).setScrollFactor(0).setDepth(104).setInteractive(); - const iconImg = this.add.image(ix, iy, atlas, frame).setScrollFactor(0).setDepth(103).setTint(0xAFAFAF); - const origScale = Math.min( - iconSize / (iconImg.width || iconSize), - iconSize / (iconImg.height || iconSize) - ) * 0.7; - iconImg.setScale(origScale); - const extraFrame = frame.replace("_001.png", "_2_001.png"); - const extraInfo = getAtlasFrame(this, extraFrame); - const extraImg = extraInfo - ? this.add.image(ix, iy, extraInfo.atlas, extraInfo.frame).setScrollFactor(0).setDepth(102).setScale(origScale) - : null; - if (extraImg) this._iconGridObjects.push(extraImg); - this._iconGridObjects.push(iconImg, hitRect); - if (frame.replace("_001.png", "") === window[prop]) { - selLabel.setPosition(ix, iy).setScale(0.75).setVisible(true); - } - - ((capturedFrame, capturedImg, capturedExtra, capturedOrigScale) => { - const bouncedScale = capturedOrigScale * 1.26; - const iconTargets = capturedExtra ? [capturedImg, capturedExtra] : [capturedImg]; - hitRect.on("pointerdown", () => { - hitRect._pressed = true; - iconTargets.forEach(t => this.tweens.killTweensOf(t, "scale")); - iconTargets.forEach(t => this.tweens.add({ targets: t, scale: bouncedScale, duration: 300, ease: "Bounce.Out" })); - }); - hitRect.on("pointerout", () => { - if (hitRect._pressed) { - hitRect._pressed = false; - iconTargets.forEach(t => this.tweens.killTweensOf(t, "scale")); - iconTargets.forEach(t => this.tweens.add({ targets: t, scale: capturedOrigScale, duration: 400, ease: "Bounce.Out" })); - } - }); - hitRect.on("pointerup", () => { - hitRect._pressed = false; - iconTargets.forEach(t => { this.tweens.killTweensOf(t); t.setScale(capturedOrigScale); }); - if (!this._iconOverlay) return; - - selLabel.setPosition(capturedImg.x, capturedImg.y).setScale(0.75).setVisible(true); - - window[prop] = capturedFrame.replace("_001.png", ""); - localStorage.setItem("icon" + prop.charAt(0).toUpperCase() + prop.slice(1), window[prop]); - - if (tab === "icon" && this._player) { - const layerMap = [ - { lp: "_playerSpriteLayer", suffix: "_001.png", tint: window.mainColor }, - { lp: "_playerGlowLayer", suffix: "_glow_001.png", tint: window.secondaryColor }, - { lp: "_playerOverlayLayer", suffix: "_2_001.png", tint: window.secondaryColor }, - { lp: "_playerExtraLayer", suffix: "_extra_001.png", tint: window.mainColor }, - ]; - for (const { lp, suffix, tint } of layerMap) { - const layer = this._player[lp]; - if (!layer || !layer.sprite) continue; - const found = getAtlasFrame(this, `${window.currentPlayer}${suffix}`); - if (found) { - layer.sprite.setTexture(found.atlas, found.frame); - if (tint !== null) layer.sprite.setTint(tint); - } - } - } - if (tab === "ship" && this._player) { - const layerMap = [ - { lp: "_shipSpriteLayer", suffix: "_001.png", tint: window.mainColor }, - { lp: "_shipGlowLayer", suffix: "_glow_001.png", tint: window.secondaryColor }, - { lp: "_shipOverlayLayer", suffix: "_2_001.png", tint: window.secondaryColor }, - { lp: "_shipExtraLayer", suffix: "_2_001.png", tint: window.secondaryColor }, - ]; - for (const { lp, suffix, tint } of layerMap) { - const layer = this._player[lp]; - if (!layer || !layer.sprite) continue; - const found = getAtlasFrame(this, `${window.currentShip}${suffix}`); - if (found) { - layer.sprite.setTexture(found.atlas, found.frame); - if (tint !== null) layer.sprite.setTint(tint); - } - } - } - if (tab === "ball" && this._player) { - const layerMap = [ - { lp: "_ballSpriteLayer", suffix: "_001.png", tint: window.mainColor }, - { lp: "_ballGlowLayer", suffix: "_glow_001.png", tint: window.secondaryColor }, - { lp: "_ballOverlayLayer", suffix: "_2_001.png", tint: window.secondaryColor }, - ]; - for (const { lp, suffix, tint } of layerMap) { - const layer = this._player[lp]; - if (!layer || !layer.sprite) continue; - const found = getAtlasFrame(this, `${window.currentBall}${suffix}`); - if (found) { - layer.sprite.setTexture(found.atlas, found.frame); - layer.sprite.setTint(tint); - } - } - } - if (tab === "wave" && this._player) { - const layerMap = [ - { lp: "_waveSpriteLayer", suffix: "_001.png", tint: window.mainColor }, - { lp: "_waveGlowLayer", suffix: "_glow_001.png", tint: window.secondaryColor }, - { lp: "_waveOverlayLayer", suffix: "_2_001.png", tint: window.secondaryColor }, - ]; - for (const { lp, suffix, tint } of layerMap) { - const layer = this._player[lp]; - if (!layer || !layer.sprite) continue; - const found = getAtlasFrame(this, `${window.currentWave}${suffix}`); - if (found) { - layer.sprite.setTexture(found.atlas, found.frame); - if (tint !== null) layer.sprite.setTint(tint); - } - } - } - if (tab === "ufo" && this._player) { - const layerMap = [ - { lp: "_birdSpriteLayer", suffix: "_001.png", tint: window.mainColor }, - { lp: "_birdGlowLayer", suffix: "_2_001.png", tint: window.secondaryColor }, - { lp: "_birdOverlayLayer", suffix: "_3_001.png", tint: window.secondaryColor }, - { lp: "_birdExtraLayer", suffix: "_extra_001.png",tint: window.mainColor }, - ]; - for (const { lp, suffix, tint } of layerMap) { - const layer = this._player[lp]; - if (!layer || !layer.sprite) continue; - const found = getAtlasFrame(this, `${window.currentBird}${suffix}`); - if (found) { - layer.sprite.setTexture(found.atlas, found.frame); - if (tint !== null) layer.sprite.setTint(tint); - } - } - } - - _refreshPreview(tab, capturedFrame); - }); - })(frame, iconImg, extraImg, origScale); - }); - }; - - let _currentTab = startTab; - - const _switchTabOrig = _switchTab; - const _switchTabPaged = (tab) => { - _currentTab = tab; - currentPage = 0; - _updateNavDots(0, tab); - for (const k of tabKeys) { - if (tabBtnSprites[k]) { - tabBtnSprites[k].setTexture("GJ_GameSheet03", - k === tab ? _tabBtnFrames[k].on : _tabBtnFrames[k].off); - } - } - _refreshPreview(tab, _getPreviewFrame(tab)); - _buildGrid(tab, 0); - }; - tabKeys.forEach(tab => { - const btn = tabBtnSprites[tab]; - if (btn) { - btn.removeAllListeners("pointerup"); - btn.removeAllListeners("pointerdown"); - btn.removeAllListeners("pointerout"); - this._makeBouncyButton(btn, 0.75, () => _switchTabPaged(tab)); - } - }); - - _updateNavDots(0, startTab); - _buildGrid(startTab, 0); - }; - - this._closeIconSelector = (silent = false) => { - if (!this._iconOverlay) return; - const destroy = () => { - if (this._iconGridObjects) { - for (const obj of this._iconGridObjects) { - if (obj && obj.destroy) obj.destroy(); - } - this._iconGridObjects = null; - } - if (this._iconOverlayObjects) { - for (const obj of this._iconOverlayObjects) { - if (obj && obj.destroy) obj.destroy(); - } - this._iconOverlayObjects = null; - } - this._iconOverlay = null; - }; - if (silent) { destroy(); return; } - const sw = screenWidth; - const sh = screenHeight; - const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(200).setAlpha(0); - fadeOut.fillStyle(0x000000, 1); - fadeOut.fillRect(0, 0, sw, sh); - this.tweens.add({ - targets: fadeOut, alpha: 1, duration: 150, ease: "Linear", - onComplete: () => { - destroy(); - this.tweens.add({ targets: fadeOut, alpha: 0, duration: 150, ease: "Linear", onComplete: () => fadeOut.destroy() }); - } - }); - }; - this._closeCreatorMenu = (silent = false) => { - if (!this._creatorOverlay) return; - if (silent == false) this._creatorMenuOpen = false; - const destroy = () => { - if (this._creatorOverlayObjects) { - for (const obj of this._creatorOverlayObjects) { - if (obj && obj.destroy) obj.destroy(); - } - this._creatorOverlayObjects = null; - } - this._creatorOverlay = null; - }; - if (silent) { destroy(); return; } - const sw = screenWidth; - const sh = screenHeight; - const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(200).setAlpha(0); - fadeOut.fillStyle(0x000000, 1); - fadeOut.fillRect(0, 0, sw, sh); - this.tweens.add({ - targets: fadeOut, alpha: 1, duration: 150, ease: "Linear", - onComplete: () => { - destroy(); - this.tweens.add({ targets: fadeOut, alpha: 0, duration: 150, ease: "Linear", onComplete: () => fadeOut.destroy() }); - } - }); - }; - this._positionMenuItems(); - //icon stuff sequel - if (this._iconBtn) { - this._iconBtn.x = (screenWidth / 2) - this._playBtn.width / 2 - 50 - (this._iconBtn.width * this._iconBtn.scaleX) / 2; - this.tweens.killTweensOf(this._iconBtn, "y"); - this._iconBtn.y = 320; - if (this._chrSelDecor) this._chrSelDecor.destroy(); - this._chrSelDecor = this.add.image(this._iconBtn.x - 110, this._iconBtn.y - (this._iconBtn.height * this._iconBtn.scaleY) / 2 + 160, "GJ_GameSheet03", "GJ_chrSel_001.png").setScrollFactor(0).setDepth(31); -} - if (this._creatorBtn) { - this._creatorBtn.x = (screenWidth / 2) + this._playBtn.width / 2 + 50 + (this._creatorBtn.width * this._creatorBtn.scaleX) / 2; - this.tweens.killTweensOf(this._creatorBtn, "y"); - this._creatorBtn.y = 320; - if (this._lvlEditDecor) this._lvlEditDecor.destroy(); - this._lvlEditDecor = this.add.image(this._creatorBtn.x + 110, this._creatorBtn.y - (this._creatorBtn.height * this._creatorBtn.scaleY) / 2 + 160, "GJ_GameSheet03", "GJ_lvlEdit_001.png").setScrollFactor(0).setDepth(31); -} - this._spaceWasDown = false; - this._spaceKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.SPACE); - this._upKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.UP); - this._wKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.W); - this._lKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.L); - this._leftKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.LEFT); - this._rightKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.RIGHT); - this._aKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.A); - this._dKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.D); - - this._startPosIndex = -1; - - this.input.keyboard.on('keydown-Q', () => { - if (!window.startPosSwitcher) return; - this.changeStartPos(-1); - }); - - this.input.keyboard.on('keydown-E', () => { - if (!window.startPosSwitcher) return; - this.changeStartPos(1); - }); - - this._percentageLabel = this.add.bitmapText(screenWidth / 2, 20, "bigFont", "0%", 30).setOrigin(0.5, 0.5); - this._percentageLabel.setVisible(false); - this._percentageLabel.setDepth(100); - - this._noclipIndicator = this.add.bitmapText(10, 10, "bigFont", "Noclip", 20) - .setOrigin(0, 0) - .setAlpha(0.4) - .setDepth(100) - .setVisible(false); - - this._accuracyIndicator = this.add.bitmapText(10, 30, "bigFont", "100.00%", 20) - .setOrigin(0, 0) - .setAlpha(0.4) - .setDepth(100) - .setVisible(false); - - this._deathsIndicator = this.add.bitmapText(10, 50, "bigFont", "0 Deaths", 20) - .setOrigin(0, 0) - .setAlpha(0.4) - .setDepth(100) - .setVisible(false); - - this._cpsIndicator = this.add.bitmapText(10, 70, "bigFont", "0 CPS", 20) - .setOrigin(0, 0) - .setAlpha(0.4) - .setDepth(100) - .setVisible(false); - - this._bottedIndicator = this.add.bitmapText(10, 70, "bigFont", "Botted", 20) - .setOrigin(0, 0) - .setAlpha(0.4) - .setDepth(100) - .setTint(0xff0000) - .setVisible(false); - - this.noclipFlash = this.add.rectangle( - this.cameras.main.centerX, - this.cameras.main.centerY, - this.cameras.main.width, - this.cameras.main.height, - 0xff0000 - ); - this.noclipFlash.setScrollFactor(0); - this.noclipFlash.setDepth(99); - this.noclipFlash.setAlpha(0); - - this._updatePracticeHUDBar = () => {}; - - this._pauseBtn = this.add.image(screenWidth - 30, 30, "GJ_WebSheet", "GJ_pauseBtn_clean_001.png").setScrollFactor(0).setDepth(30).setAlpha(75 / 255).setVisible(false); - this._pauseBtn.setInteractive(); - this._expandHitArea(this._pauseBtn, 2); - this._pauseBtn.on("pointerdown", () => this._pauseGame()); - this._escKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.ESC); - this._escKey.on("down", () => { - if (this._levelSelectOverlay) { - this._closeLevelSelect(); - return; - } - if (this._iconOverlay) { - this._closeIconSelector(); - return; - } - if (this._updateLogPopup) { - this._closeUpdateLogPopup(); - return; - } - if (this._searchOverlay) { - this._closeSearchMenu(true); - this._openCreatorMenu(); - return; - } - if (this._onlineLevelsOverlay) { - this._closeOnlineLevelsScene(); - return; - } - if (this._creatorOverlay) { - this._closeCreatorMenu(); - return; - } - if (this._settingsPopup) { - this._settingsPopup.destroy(); - this._settingsPopup = null; - return; - } - if (this._macroPopup) { - this.events.off("update", this._refreshMacroButtons); - this._macroPopup.destroy(); - this._macroPopup = null; - return; - } - if (this._settingsLayerOverlay) { - if (!this._settingsScreenClosing) { - this._hideSettingsScreen(); - } - return; - } - if (this._infoPopup) { - this._infoPopup.destroy(); - this._infoPopup = null; - return; - } - if (this._newgroundsPopup) { - this._closeNewgroundsPopup(); - return; - } - if (this._statsLayerOverlay) { - this._hideStatsScreen(); - return; - } - if (this._paused) { - this._audio.playEffect("quitSound_01"); - this._audio.stopMusic(); - this._resumeGame(); - this.scene.restart(); - } else if (!this._menuActive && !this._slideIn && !this._levelWon) { - this._pauseGame(); - } - }); - this._restartKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.R); - this._restartKey.on("down", () => { - if (!this._menuActive && !this._slideIn && !this._levelWon && !this._menuActive) { - this._restartLevel(); - } - }); - this._practiceKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.P); - this._practiceKey.on("down", () => { - if (!this._menuActive && !this._slideIn) { - const isPracticeMode = this._practicedMode.togglePracticeMode(); - if (this._checkpointBtnContainer) { - this._checkpointBtnContainer.setVisible(isPracticeMode); - } - if (this._practiceModeBarContainer) { - this._practiceModeBarContainer.setVisible(isPracticeMode); - } - this._audio.startMusic(); - } - }); - this._saveCheckpointKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.Z); - this._saveCheckpointKey.on("down", () => { - if (!this._menuActive && !this._slideIn && this._practicedMode.practiceMode && !this._state.isDead) { - const saved = this._practicedMode.saveCheckpoint(this._state, this._playerWorldX, this._cameraX, this); - if (saved) { - } - } - }); - this._deleteCheckpointKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.X); - this._deleteCheckpointKey.on("down", () => { - if (!this._menuActive && !this._slideIn && this._practicedMode.practiceMode) { - const deleted = this._practicedMode.deleteLastCheckpoint(); - } - }); - this._paused = false; - this._pauseContainer = null; - this._sfxVolume = localStorage.getItem("userSfxVol") ?? 1; - this._initMacroBot(); - this.input.on("pointerdown", () => { - if (!this._menuActive && !this._paused && !this._levelSelectOverlay && !this._levelWon && !window.isEditor) { - this._pushButton(); - } - }); - this.input.on("pointerup", () => { - if (!this._menuActive && !this._paused && !this._levelSelectOverlay && !this._levelWon && !window.isEditor) { - this._releaseButton(); - } - }); - if (!window.gdpointerup) { - window.gdpointerup = true; - window.addEventListener("pointerup", () => this._releaseButton(true)); - } - if (!window.gdtouchend) { - window.gdtouchend = true; - window.addEventListener("touchend", () => this._releaseButton(true)); - } - this.scale.on("enterfullscreen", () => this._onFullscreenChange(true)); - this.scale.on("leavefullscreen", () => this._onFullscreenChange(false)); - - this._buildHUD(); - this._createStartPosGui(); - this._loadSettings(); - - document.addEventListener("visibilitychange", () => { - if (document.hidden) { - this._audio.pauseMusic(); - } else if (!this._menuActive && !this._paused && !this._state.isDead && !this._levelWon) { - this._audio.resumeMusic(); - } - }); - if (!window.gdorientationchange) { - window.gdorientationchange = true; - window.addEventListener("orientationchange", () => { - this.time.delayedCall(100, () => this.scale.refresh()); - }); - } - if (!window.gdresize) { - window.gdresize = true; - window.addEventListener("resize", () => { - this.scale.refresh(); - }); - } - if (this.game.registry.get("fadeInFromBlack")) { - this.game.registry.remove("fadeInFromBlack"); - this.cameras.main.fadeIn(400, 0, 0, 0); - } - this._levelLabel = this.add.bitmapText(screenWidth - 565, 30, "bigFont", window.currentlevel[1], 30).setOrigin(0.5, 0.5).setVisible(false); - this._levelLabel.setScale(Math.min(1, 220 / this._levelLabel.width)); - - this._leftBtn = this.add.image(screenWidth - 700, 30, "GJ_GameSheet03", "edit_leftBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setVisible(false); - this._rightBtn = this.add.image(screenWidth - 429, 30, "GJ_GameSheet03", "edit_leftBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setVisible(false); - this._rightBtn.setRotation(Math.PI); - window.scene = this.scene; - window.rightbuttoncallback = () => { - if (this._levelSelectOverlay && this._levelSelectSwitchLevel) { - this._levelSelectSwitchLevel(1); - } - }; - window.leftbuttoncallback = () => { - if (this._levelSelectOverlay && this._levelSelectSwitchLevel) { - this._levelSelectSwitchLevel(-1); - } - }; - this._makeBouncyButton(this._leftBtn, 1, () => {window.leftbuttoncallback()}, () => this._menuActive); - this._makeBouncyButton(this._rightBtn, 1, () => {window.rightbuttoncallback()}, () => this._menuActive); - const menuMusicEnabled = localStorage.getItem("menuMusicEnabled"); - const shouldPlayMenuMusic = menuMusicEnabled === null ? true : menuMusicEnabled === "true"; - - if (!this._audio.isplaying() && shouldPlayMenuMusic) { - this._audio.startMenuMusic(); - } else if (this._audio.isplaying() && !shouldPlayMenuMusic) { - this._audio.stopMusic(); - } - if (!window.updateLogShown) { - this._buildUpdateLogPopup(); - window.updateLogShown = true; - } - if (window.levelID) { - this._openSearchMenu(); - } - if (this.game.registry.get("autoStartGame")) { - if (!window.settingsMap) { - const cachedLevelText = this.cache.text.get(window.currentlevel[2]) || - ((window._onlineLevelString && window.currentlevel[2] === window._onlineLevelId) ? window._onlineLevelString : null); - if (cachedLevelText) { - this._level.loadLevel(cachedLevelText); - } - } - if (window.settingsMap) { - this.game.registry.remove("autoStartGame"); - this._levelLabel.setVisible(false); - this._leftBtn.setVisible(false); - this._rightBtn.setVisible(false); - if (this._practiceModeBarContainer) { - this._practiceModeBarContainer.setVisible(this._practicedMode && this._practicedMode.practiceMode); - } - this._startGame(); - } else { - console.warn("autoStartGame: missing settingsMap for", window.currentlevel && window.currentlevel[2]); - } - } - } - _parseLevelColors(levelId) { - const LEVEL_COLORS = [ - 0x0100f5,0xf902f8,0xf90285,0xfa0102, - 0xfa8702,0xfcfc06,0x03fb03,0x02fbfb, - 0x007dff - ]; - let index = 0; - if (window.allLevels) { - index = window.allLevels.findIndex(l => l[2] === levelId); - if (index === -1) index = 0; - } - const bgHex = LEVEL_COLORS[index % LEVEL_COLORS.length]; - return { bgHex, groundHex: bgHex }; - } - _openLevelSelect() { - if (this._levelSelectOverlay) return; - const sw = screenWidth; - const sh = screenHeight; - const cx = sw / 2; - const cy = sh / 2; - let { bgHex, groundHex } = this._parseLevelColors(window.currentlevel[2]); - const drawOverlay = (gfx, colorHex, isEveryEnd = false) => { - gfx.clear(); - const rRaw = (colorHex >> 16) & 0xff; - const gRaw = (colorHex >> 8) & 0xff; - const bRaw = colorHex & 0xff; - const topMul = isEveryEnd ? 0.30 : 0.65; - const botMul = isEveryEnd ? 0.18 : 0.42; - const steps = 60; - for (let i = 0; i < steps; i++) { - const t = i / (steps - 1); - const mul = topMul + (botMul - topMul) * t; - const r2 = Math.min(255, Math.round(rRaw * mul)); - const g2 = Math.min(255, Math.round(gRaw * mul)); - const b2 = Math.min(255, Math.round(bRaw * mul)); - gfx.fillStyle((r2 << 16) | (g2 << 8) | b2, 1); - const y0 = Math.floor(i * sh / steps); - gfx.fillRect(0, y0, sw, Math.ceil(sh / steps) + 1); - } - }; - const isEveryEnd = (levelId) => levelId === "level_99"; - const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); - fadeIn.fillStyle(0x000000, 1); - fadeIn.fillRect(0, 0, sw, sh); - this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); - const overlay = this.add.graphics().setScrollFactor(0).setDepth(150); - drawOverlay(overlay, bgHex, isEveryEnd(window.currentlevel[2])); - this._levelSelectOverlay = overlay; - const tableBottom = this.add.image(cx, 0, "GJ_GameSheet03", "GJ_topBar_001.png").setScrollFactor(0).setDepth(152).setOrigin(0.5, 0); - const groundY = sh + 175; - const groundId = (window._groundId || "00"); - const groundFrame = this.textures.getFrame("groundSquare_" + groundId + "_001.png"); - const tileW = groundFrame ? groundFrame.width : 1012; - const numTiles = Math.ceil(sw / tileW) + 2; - const groundTintHex = (colorHex) => { - const r = Math.round(((colorHex >> 16) & 0xff) * 0.45); - const g = Math.round(((colorHex >> 8) & 0xff) * 0.45); - const b = Math.round(( colorHex & 0xff) * 0.45); - return (r << 16) | (g << 8) | b; - }; - const staticGroundTiles = []; - for (let gi = 0; gi < numTiles; gi++) { - const gt = this.add.image(gi * tileW, groundY, "groundSquare_" + groundId + "_001.png") - .setScrollFactor(0).setDepth(151).setOrigin(0, 1).setTint(groundTintHex(groundHex)); - staticGroundTiles.push(gt); - } - const floorLineFrame = this.textures.getFrame("GJ_WebSheet", "floorLine_01_001.png"); - const floorLineW = floorLineFrame ? floorLineFrame.width : 888; - const floorLineScale = sw / floorLineW; - const groundTileH = groundFrame ? groundFrame.height : 80; - const staticFloorLine = this.add.image(cx, groundY - groundTileH, "GJ_WebSheet", "floorLine_01_001.png") - .setScrollFactor(0).setDepth(152).setOrigin(0.5, 0.5).setScale(floorLineScale, 1).setBlendMode(S); - const cornerBL = this.add.image(0, sh, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(152).setOrigin(1, 1).setFlipY(true).setAngle(90); - const cornerBR = this.add.image(sw, sh, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(152).setOrigin(1, 0).setFlipY(false).setAngle(90); - const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_01_001.png").setScrollFactor(0).setDepth(154).setFlipX(true).setScale(1, -1).setRotation(Math.PI).setInteractive(); - backBtn.on("pointerdown", () => { - backBtn._pressed = true; - this.tweens.killTweensOf(backBtn); - this.tweens.add({ targets: backBtn, scaleX: 1.26, scaleY: -1.26, duration: 300, ease: "Bounce.Out" }); - }); - backBtn.on("pointerout", () => { - if (backBtn._pressed) { - backBtn._pressed = false; - this.tweens.killTweensOf(backBtn); - this.tweens.add({ targets: backBtn, scaleX: 1, scaleY: -1, duration: 400, ease: "Bounce.Out" }); - } - }); - backBtn.on("pointerup", () => { - if (backBtn._pressed) { - backBtn._pressed = false; - this.tweens.killTweensOf(backBtn); - backBtn.setScale(1, -1); - this._closeLevelSelect(); - } - }); - const infoBtn = this.add.image(sw - 40, 40, "GJ_GameSheet03", "GJ_infoIcon_001.png").setScrollFactor(0).setDepth(154).setRotation(Math.PI / 2).setInteractive(); - const arrowL = this.add.image(55, cy - 25, "GJ_GameSheet03", "navArrowBtn_001.png").setScrollFactor(0).setDepth(154).setScale(1.1).setFlipX(true).setInteractive(); - const arrowR = this.add.image(sw - 55, cy - 25, "GJ_GameSheet03", "navArrowBtn_001.png").setScrollFactor(0).setDepth(154).setScale(1.1).setFlipX(false).setInteractive(); - const allLevels = window.allLevels || []; - const dotY = sh - 36; - const maxDots = Math.min(allLevels.length, 28); - const dotSpacing = 27; - const dotStartX = cx - (maxDots - 1) * dotSpacing / 2; - const dotObjs = []; - const refreshDots = () => { - for (const d of dotObjs) d.destroy(); - dotObjs.length = 0; - const idx = allLevels.findIndex(l => l[2] === window.currentlevel[2]); - for (let di = 0; di < maxDots; di++) { - const active = di === idx; - const d = this.add.graphics().setScrollFactor(0).setDepth(153); - d.fillStyle(0xffffff, active ? 1 : 0.3); - d.fillCircle(dotStartX + di * dotSpacing, dotY, 7); - dotObjs.push(d); - } - }; - refreshDots(); - const cardW = Math.min(700, sw - 180); - const cardH = 180; - const cardX = cx; - const cardY = cy - 100; - const cardSlideContainer = this.add.container(0, 0).setScrollFactor(0).setDepth(152); - const cardBounceContainer = this.add.container(cardX, cardY).setScrollFactor(0).setDepth(0); - cardSlideContainer.add(cardBounceContainer); - const cardContainer = cardSlideContainer; - const cardBg = this.add.graphics(); - const drawCardBg = (colorHex, dark = false) => { - cardBg.clear(); - const mul = dark ? 0.10 : 0.22; - const r = Math.round(((colorHex >> 16) & 0xff) * mul); - const g = Math.round(((colorHex >> 8) & 0xff) * mul); - const b = Math.round(( colorHex & 0xff) * mul); - cardBg.fillStyle((r << 16) | (g << 8) | b, 0.92); - cardBg.fillRoundedRect(-cardW / 2, -cardH / 2, cardW, cardH, 14); - }; - drawCardBg(bgHex, isEveryEnd(window.currentlevel[2])); - cardBounceContainer.add(cardBg); - - const cardHit = this.add.zone(cardX, cardY, cardW, cardH) - .setScrollFactor(0).setDepth(156).setInteractive(); - const dragState = { - pressed: false, - dragging: false, - startX: 0, - lastX: 0, - velSamples: [], - get vel() { - if (!this.velSamples.length) return 0; - return this.velSamples.reduce((a, b) => a + b, 0) / this.velSamples.length; - }, - pushVel(v) { - this.velSamples.push(v); - if (this.velSamples.length > 5) this.velSamples.shift(); - }, - reset() { - this.pressed = false; - this.dragging = false; - this.velSamples = []; - } - }; - - const onDragStart = (ptr) => { - dragState.pressed = true; - dragState.startX = ptr.x; - dragState.lastX = ptr.x; - dragState.dragging = false; - dragState.velSamples = []; - }; - cardHit.on("pointerdown", (ptr) => { - onDragStart(ptr); - this.tweens.killTweensOf(cardBounceContainer, "scale"); - this.tweens.add({ targets: cardBounceContainer, scale: 1.26, duration: 300, ease: "Bounce.Out" }); - }); - - const onDragMove = (ptr) => { - if (!dragState.pressed) return; - const dx = ptr.x - dragState.startX; - const frameDelta = ptr.x - dragState.lastX; - dragState.pushVel(frameDelta); - dragState.lastX = ptr.x; - if (!dragState.dragging && Math.abs(dx) > 12) { - dragState.dragging = true; - this.tweens.killTweensOf(cardBounceContainer, "scale"); - this.tweens.add({ targets: cardBounceContainer, scale: 1, duration: 200, ease: "Quad.Out" }); - } - if (dragState.dragging) { - cardContainer.x = dx; - } - }; - const onDragUp = (ptr) => { - if (!dragState.pressed) return; - const wasDragging = dragState.dragging; - const totalDx = ptr.x - dragState.startX; - const vel = dragState.vel; - dragState.reset(); - if (wasDragging) { - const dragThreshold = cardW * 0.18; - if (Math.abs(totalDx) > dragThreshold || Math.abs(vel) > 3) { - const dir = totalDx < 0 ? 1 : -1; - switchLevel(dir, cardContainer.x, vel); - } else { - if (_currentAnimUpdate) { - this.events.off("preupdate", _currentAnimUpdate); - _currentAnimUpdate = null; - } - let snapX = cardContainer.x; - let snapVel = vel * 40; - const snapUpdate = (time, delta) => { - const dt = Math.min(delta / 1000, 0.05); - const tension = 400; - const friction = 18; - const force = -tension * snapX - friction * snapVel; - snapVel += force * dt; - snapX += snapVel * dt; - if (Math.abs(snapX) < 0.5 && Math.abs(snapVel) < 5) { - snapX = 0; - this.events.off("preupdate", snapUpdate); - if (_currentAnimUpdate === snapUpdate) _currentAnimUpdate = null; - } - cardContainer.x = snapX; - }; - _currentAnimUpdate = snapUpdate; - this.events.on("preupdate", snapUpdate); - } - } else { - if (ptr.x >= cardX - cardW/2 && ptr.x <= cardX + cardW/2 && - ptr.y >= cardY - cardH/2 && ptr.y <= cardY + cardH/2) { - - this.input.enabled = false; - this.tweens.killTweensOf(cardBounceContainer, "scale"); - cardBounceContainer.setScale(1); - - const lvl = window.currentlevel; - const songID = lvl[0]; - const levelFileName = lvl[2]; - const songFileName = lvl[4] ? lvl[4] : lvl[1].replaceAll(" ", ""); - - const loadingText = this.add.bitmapText(cx, cy, "goldFont", "Downloading Level Assets...", 20).setOrigin(0.5).setDepth(200); - - this.load.text(levelFileName, "assets/levels/" + levelFileName.split("_")[1] + ".txt"); - this.load.audio(songID, "assets/music/" + songFileName + ".mp3"); - - this.load.once("complete", () => { - loadingText.destroy(); - this._audio.playEffect("playSound_01", { volume: 1 }); - this._closeLevelSelect(true); - this._audio.stopMusic(); - this.input.enabled = true; - this.game.registry.set("autoStartGame", true); - this.scene.restart(); - }); - - this.load.start(); - } else { - this.tweens.killTweensOf(cardBounceContainer, "scale"); - this.tweens.add({ targets: cardBounceContainer, scale: 1, duration: 200, ease: "Quad.Out" }); - } - } - }; - this.input.on("pointermove", onDragMove); - this.input.on("pointerup", onDragUp); - const _origClose = this._closeLevelSelect.bind(this); - const _patchedClose = (doTransition) => { - this.input.off("pointermove", onDragMove); - this.input.off("pointerup", onDragUp); - this._closeLevelSelect = _origClose; - _origClose(doTransition); - }; - this._closeLevelSelect = _patchedClose; - const cardContentObjs = []; - const buildCardContent = () => { - for (const o of cardContentObjs) { this.tweens.killTweensOf(o); o.destroy(); } - cardContentObjs.length = 0; - const lvl = window.currentlevel; - const levelId = lvl[2] || "level_1"; - const levelDifficultyMap = { - "level_1": "diffIcon_01_btn_001", - "level_2": "diffIcon_01_btn_001", - "level_3": "diffIcon_02_btn_001", - "level_4": "diffIcon_02_btn_001", - "level_5": "diffIcon_03_btn_001", - "level_6": "diffIcon_03_btn_001", - "level_7": "diffIcon_04_btn_001", - "level_8": "diffIcon_04_btn_001", - "level_9": "diffIcon_04_btn_001", - "level_10": "diffIcon_05_btn_001", - "level_11": "diffIcon_05_btn_001", - "level_12": "diffIcon_05_btn_001", - "level_13": "diffIcon_05_btn_001", - "level_14": "diffIcon_06_btn_001", - "level_15": "diffIcon_05_btn_001", - "level_16": "diffIcon_05_btn_001", - "level_17": "diffIcon_04_btn_001", - "level_18": "diffIcon_06_btn_001", - "level_19": "diffIcon_04_btn_001", - "level_20": "diffIcon_06_btn_001", - "level_21": "diffIcon_05_btn_001", - "level_22": "diffIcon_05_btn_001", - "level_99": "diffIcon_10_btn_001", - "level_100": "diffIcon_10_btn_001", - "level_137409445": "diffIcon_00_btn_001", - "level_5703070": "diffIcon_07_btn_001", - "level_137677336": "diffIcon_00_btn_001", - "level_116489424": "diffIcon_00_btn_001", - "level_4284013": "diffIcon_06_btn_001", - "level_56199846": "diffIcon_04_btn_001", - "level_23": "diffIcon_10_btn_001" - }; - const diffIconKey = levelDifficultyMap[levelId] || "diffIcon_05_btn_001"; - const diffFrame = diffIconKey + ".png"; - const iconX = cardX - cardW / 2 + 52; - const isHardDemon = diffIconKey === "diffIcon_06_btn_001"; - const iconRotation = isHardDemon ? Math.PI / 2 : 0; - const demonIcon = this.add.image(iconX - cardX, 0, "GJ_GameSheet03", diffFrame) - .setScrollFactor(0).setDepth(155).setScale(1).setOrigin(0.5, 0.5).setRotation(iconRotation).setFlipY(isHardDemon); - cardContentObjs.push(demonIcon); - cardBounceContainer.add(demonIcon); - const maxIconH = cardH - 16; - const maxIconW = 80; - const iconFrame = this.textures.getFrame("GJ_GameSheet03", diffFrame); - let finalIconScale = 1; - if (iconFrame) { - const scaleForH = maxIconH / iconFrame.height; - let scaleForW = maxIconW / iconFrame.width; - finalIconScale = Math.min(1, scaleForH, scaleForW); - demonIcon.setScale(finalIconScale); - } - let iconDisplayW = (iconFrame ? iconFrame.width : 80) * finalIconScale; - const iconDisplayH = (iconFrame ? iconFrame.height : 80) * finalIconScale; - const nameLabel = this.add.bitmapText(0, 0, "bigFont", lvl[1], 50) - .setScrollFactor(0).setDepth(155).setOrigin(0, 0.5); - const gap = 25; - const naturalGroupW = iconDisplayW + gap + nameLabel.width; - const naturalGroupH = Math.max(iconDisplayH, nameLabel.height); - const cardPad = 16; - const maxGroupW = cardW - cardPad * 2; - const maxGroupH = cardH - cardPad * 2; - const groupScale = Math.min(1, maxGroupW / naturalGroupW, maxGroupH / naturalGroupH); - const scaledIconW = iconDisplayW * groupScale; - const scaledLabelW = nameLabel.width * groupScale; - const scaledGap = gap * groupScale; - const totalW = scaledIconW + scaledGap + scaledLabelW; - const groupStartX = cardX - totalW / 2; - demonIcon.setScale(finalIconScale * groupScale); - demonIcon.setPosition(groupStartX + scaledIconW / 2 - cardX, 0); - nameLabel.setScale(groupScale); - nameLabel.setPosition(groupStartX + scaledIconW + scaledGap - cardX, 0); - cardContentObjs.push(nameLabel); - cardBounceContainer.add(nameLabel); - }; - const barAreaY = cardY + cardH / 2 + 100; - const barW2 = Math.min(600, sw - 200); - const barH2 = 36; - const barX0 = cx - barW2 / 2; - let barObjs = []; - const buildBar = () => { - for (const o of barObjs) { this.tweens.killTweensOf(o); o.destroy(); } - barObjs.length = 0; - const bestNormal = parseFloat(localStorage.getItem("bestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); - const modeLabel = this.add.bitmapText(cx, barAreaY - 40, "bigFont", "Normal Mode", 30) - .setScrollFactor(0).setDepth(155).setOrigin(0.5, 0.5); - barObjs.push(modeLabel); - cardContainer.add(modeLabel); - const barBg = this.add.graphics().setScrollFactor(0).setDepth(154); - barBg.fillStyle(0x000000, 0.6); - barBg.fillRoundedRect(barX0, barAreaY - barH2 / 2, barW2, barH2, barH2 / 2); - barObjs.push(barBg); - cardContainer.add(barBg); - const padding = 3; - const innerH2 = barH2 - padding * 2; - const innerW2 = barW2 - padding * 2; - const innerRadius = innerH2 / 2; - const fillW = Math.max(innerH2, innerW2 * bestNormal / 100); - if(bestNormal > 0) { - const barFg = this.add.graphics().setScrollFactor(0).setDepth(155); - barFg.fillStyle(0x00FF00, 1); - const rightR = (bestNormal >= 100) ? innerRadius : 0; - barFg.fillRoundedRect(barX0 + padding, barAreaY - barH2 / 2 + padding, fillW, innerH2, { - tl: innerRadius, - bl: innerRadius, - tr: rightR, - br: rightR - }); - - barObjs.push(barFg); - cardContainer.add(barFg); - } - const pctLabel = this.add.bitmapText(cx, barAreaY, "bigFont", Math.round(bestNormal) + "%", 22) - .setScrollFactor(0).setDepth(156).setOrigin(0.5, 0.5); - barObjs.push(pctLabel); - cardContainer.add(pctLabel); - const bestPractice = parseFloat(localStorage.getItem("practiceBestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); - const practBarAreaY = barAreaY + barH2 + 48; - const practModeLabel = this.add.bitmapText(cx, practBarAreaY - 40, "bigFont", "Practice Mode", 30) - .setScrollFactor(0).setDepth(155).setOrigin(0.5, 0.5); - barObjs.push(practModeLabel); - cardContainer.add(practModeLabel); - const practBarBg = this.add.graphics().setScrollFactor(0).setDepth(154); - practBarBg.fillStyle(0x000000, 0.6); - practBarBg.fillRoundedRect(barX0, practBarAreaY - barH2 / 2, barW2, barH2, barH2 / 2); - barObjs.push(practBarBg); - cardContainer.add(practBarBg); - if (bestPractice > 0) { - const practFillW = Math.max(innerH2, innerW2 * bestPractice / 100); - const practBarFg = this.add.graphics().setScrollFactor(0).setDepth(155); - practBarFg.fillStyle(0x00FFFF, 1); - const practRightR = (bestPractice >= 100) ? innerRadius : 0; - practBarFg.fillRoundedRect(barX0 + padding, practBarAreaY - barH2 / 2 + padding, practFillW, innerH2, { - tl: innerRadius, bl: innerRadius, tr: practRightR, br: practRightR - }); - barObjs.push(practBarFg); - cardContainer.add(practBarFg); - } - const practPctLabel = this.add.bitmapText(cx, practBarAreaY, "bigFont", Math.round(bestPractice) + "%", 22) - .setScrollFactor(0).setDepth(156).setOrigin(0.5, 0.5); - barObjs.push(practPctLabel); - cardContainer.add(practPctLabel); - }; - buildCardContent(); - buildBar(); - let _currentAnimUpdate = null; - const switchLevel = (dir, startX = null, dragVel = 0) => { - if (!window.allLevels || window.allLevels.length === 0) return; - - if (_currentAnimUpdate) { - this.events.off("preupdate", _currentAnimUpdate); - _currentAnimUpdate = null; - } - let idx = window.allLevels.findIndex(l => l[2] === window.currentlevel[2]); - idx = (idx + dir + window.allLevels.length) % window.allLevels.length; - window.currentlevel = [...window.allLevels[idx]]; - const newColors = this._parseLevelColors(window.currentlevel[2]); - const dark = isEveryEnd(window.currentlevel[2]); - const slideDist = cardW - 200; - const slideOutTarget = -dir * slideDist; - const slideInStart = dir * slideDist; - this.tweens.killTweensOf(cardContainer); - let state = "out"; - let currentX = startX !== null ? startX : cardContainer.x; - const dragSpeedBoost = Math.abs(dragVel) * 60; - const slideOutSpeed = slideDist * 14 + dragSpeedBoost; - const slideInVel = slideDist * 6 + dragSpeedBoost; - let vel = 0; - const scrollAnimUpdate = (time, delta) => { - const dt = Math.min(delta / 1000, 0.05); - if (state === "out") { - currentX += (-dir) * slideOutSpeed * dt; - if ((dir > 0 && currentX <= slideOutTarget) || (dir < 0 && currentX >= slideOutTarget)) { - for (const o of cardContentObjs) { - cardBounceContainer.remove(o, false); - o.destroy(); - } - for (const o of barObjs) { - cardSlideContainer.remove(o, false); - o.destroy(); - } - cardContentObjs.length = 0; - barObjs.length = 0; - drawCardBg(newColors.bgHex, dark); - buildCardContent(); - buildBar(); - drawOverlay(overlay, newColors.bgHex, dark); - for (const gt of staticGroundTiles) gt.setTint(groundTintHex(newColors.groundHex)); - refreshDots(); - state = "in"; - currentX = slideInStart; - vel = (-dir) * slideInVel; - } - } else if (state === "in") { - const tension = 300; - const friction = 15; - const force = -tension * currentX - friction * vel; - vel += force * dt; - currentX += vel * dt; - - if (Math.abs(currentX) < 1 && Math.abs(vel) < 15) { - currentX = 0; - this.events.off("preupdate", scrollAnimUpdate); - if (_currentAnimUpdate === scrollAnimUpdate) _currentAnimUpdate = null; - } - } - cardContainer.x = currentX; - }; - _currentAnimUpdate = scrollAnimUpdate; - this.events.on("preupdate", scrollAnimUpdate); - }; - this._makeBouncyButton(arrowL, 1.1, () => { switchLevel(-1); }); - this._makeBouncyButton(arrowR, 1.1, () => { switchLevel(1); }); - const inputBlocker = this.add.zone(cx, cy, sw, sh) - .setScrollFactor(0).setDepth(151).setInteractive(); - inputBlocker.on("pointerdown", onDragStart); - this._levelSelectStaticObjs = [overlay, inputBlocker, tableBottom, ...staticGroundTiles, staticFloorLine, cornerBL, cornerBR, backBtn, infoBtn, arrowL, arrowR, cardSlideContainer, cardHit]; - this._levelSelectSwitchLevel = switchLevel; - this._levelSelectDotObjs = dotObjs; - this._levelSelectCardContent = cardContentObjs; - this._levelSelectBarObjs = barObjs; - } - _closeLevelSelect(silent = false) { - if (!this._levelSelectOverlay) return; - const destroy = () => { - const all = [ - ...(this._levelSelectStaticObjs || []), - ...(this._levelSelectDotObjs || []), - ...(this._levelSelectCardContent || []), - ...(this._levelSelectBarObjs || []), - ]; - for (const o of all) { if (o && o.destroy) { this.tweens.killTweensOf(o); o.destroy(); } } - this._levelSelectOverlay = null; - this._levelSelectStaticObjs = null; - this._levelSelectDotObjs = null; - this._levelSelectCardContent = null; - this._levelSelectBarObjs = null; - this._levelSelectSwitchLevel = null; - }; - if (silent) { destroy(); return; } - const sw = screenWidth; - const sh = screenHeight; - const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(200).setAlpha(0); - fadeOut.fillStyle(0x000000, 1); - fadeOut.fillRect(0, 0, sw, sh); - this.tweens.add({ - targets: fadeOut, alpha: 1, duration: 150, ease: "Linear", - onComplete: () => { - destroy(); - this.tweens.add({ targets: fadeOut, alpha: 0, duration: 150, ease: "Linear", onComplete: () => fadeOut.destroy() }); - } - }); - } - _buildHUD() { - this._attemptsLabel = this.add.bitmapText(0, 0, "bigFont", "Attempt 1", 65).setOrigin(0.5, 0.5).setVisible(false); - this._level.topContainer.add(this._attemptsLabel); - this._positionAttemptsLabel(); - this._checkpointBtnContainer = this.add.container(screenWidth / 2, screenHeight - 60) - .setScrollFactor(0) - .setDepth(30) - .setVisible(false); - this._checkpointBtn = this.add.image(-50, 0, "GJ_GameSheet03", "GJ_checkpointBtn_001.png") - .setOrigin(0.5, 0.5) - .setInteractive() - .setScale(0.8); - this._makeBouncyButton(this._checkpointBtn, 0.8, () => { - if (this._practicedMode.practiceMode && !this._state.isDead && !this._menuActive && !this._slideIn) { - this._practicedMode.saveCheckpoint(this._state, this._playerWorldX, this._cameraX, this); - } - }); - this._expandHitArea(this._checkpointBtn, 2); - this._clearCheckpointBtn = this.add.image(50, 0, "GJ_GameSheet03", "GJ_removeCheckBtn_001.png") - .setOrigin(0.5, 0.5) - .setInteractive() - .setScale(0.8); - this._makeBouncyButton(this._clearCheckpointBtn, 0.8, () => { - if (this._practicedMode.practiceMode && !this._state.isDead && !this._menuActive && !this._slideIn) { - this._practicedMode.deleteLastCheckpoint(); - } - }); - this._expandHitArea(this._clearCheckpointBtn, 1.5); - this._checkpointBtnContainer.add([this._checkpointBtn, this._clearCheckpointBtn]); - this._fpsText = this.add.text(screenWidth - 20, 10, "", { - fontSize: "28px", - fill: "#ffffff", - fontFamily: "Arial" - }).setOrigin(1, 0).setScrollFactor(0).setDepth(999).setVisible(false); - this._fpsAccum = 0; - this._fpsFrames = 0; - } - _createStartPosGui() { - const centerX = screenWidth / 2; - const bottomY = screenHeight - 60; - - this._startPosGui = this.add.container(centerX, bottomY).setScrollFactor(0).setDepth(100); - this._startPosGui.setVisible(false); - - const leftArrow = this.add.image(-90, 0, "GJ_GameSheet03", "GJ_arrow_01_001.png") - .setScale(0.6) - .setInteractive(); - - const rightArrow = this.add.image(90, 0, "GJ_GameSheet03", "GJ_arrow_01_001.png") - .setScale(0.6) - .setFlipX(true) - .setInteractive(); - - const positions = this._level.getStartPositions(); - const total = positions.length; - - this._startPosText = this.add.bitmapText(0, 0, "bigFont", `0/${total}`, 40).setOrigin(0.5); - - this._startPosGui.add([leftArrow, rightArrow, this._startPosText]); - - this._makeBouncyButton(leftArrow, 0.6, () => this.changeStartPos(-1)); - this._makeBouncyButton(rightArrow, 0.6, () => this.changeStartPos(1)); - } - changeStartPos(direction) { - if (this._paused || this._levelWon || this._menuActive || this._slideIn) return; - - const positions = this._level.getStartPositions(); - const totalPositions = positions.length; - - if (totalPositions === 0) return; - - this._startPosIndex += direction; - - if (this._startPosIndex < -1) { - this._startPosIndex = totalPositions - 1; - } else if (this._startPosIndex >= totalPositions) { - this._startPosIndex = -1; - } - - if (this._startPosText) { - const currentId = this._startPosIndex === -1 ? 0 : (this._startPosIndex + 1); - this._startPosText.setText(`${currentId}/${totalPositions}`); - } - - this._practicedMode.clearCheckpoints(); - this._restartLevel(); - } - toggleGlitter(_0x34c21a) { - if (_0x34c21a) { - this._glitterEmitter.start(); - } else { - this._glitterEmitter.stop(); - } - } - _setParticleTimeScale(timeScale) { - const updateTimeScale = object => { - if (object && object.type === "ParticleEmitter") { - object.timeScale = timeScale; - } - if (object && object.list) { - object.list.forEach(updateTimeScale); - } - }; - updateTimeScale(this._level.container); - updateTimeScale(this._level.topContainer); - if (this._glitterEmitter) { - this._glitterEmitter.timeScale = timeScale; - } - } - _pauseGame() { - if (!this._paused && !this._menuActive && !this._slideIn && !this._state.isDead && !this._levelWon) { - this._paused = true; - this._pauseBtn.setVisible(false); - this._audio.pauseMusic(); - this._setParticleTimeScale(0); - this._buildPauseOverlay(); - } - } - _resumeGame() { - if (this._paused) { - this._setParticleTimeScale(1); - this._paused = false; - this._pauseBtn.setVisible(true).setAlpha(75 / 255); - this._audio.resumeMusic(); - this._audio._ensureCorrectMusicMode(); - if (this._pauseContainer) { - this._pauseContainer.destroy(); - this._pauseContainer = null; - } - } - } - _createPauseToggleButton(_0x5376fd, _0x3b6200, _0x2b25c8, _0xe203c3, _0x268e2b, _0x2d04c4) { - const _0x4864cc = this.add.container(_0x3b6200, _0x2b25c8); - const pieceHeight = this.add.image(0, 0, "GJ_GameSheet03", _0x268e2b ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png").setScale(0.7).setInteractive(); - const _0x15c0df = this.add.bitmapText(25 + 10, 0, "bigFont", _0xe203c3, 32).setOrigin(0, 0.5); - _0x4864cc.add([pieceHeight, _0x15c0df]); - _0x5376fd.add(_0x4864cc); - const _0x232e51 = _0x1dce15 => { - pieceHeight.setTexture("GJ_GameSheet03", _0x1dce15 ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png"); - this._expandHitArea(pieceHeight, 2); - _0x2d04c4(_0x1dce15); - }; - this._expandHitArea(pieceHeight, 2); - this._makeBouncyButton(pieceHeight, 0.7, () => { - _0x232e51(pieceHeight.frame.name === "GJ_checkOff_001.png"); - }, () => this._paused && !!this._pauseContainer); - _0x15c0df.setInteractive(); - _0x15c0df.on("pointerdown", () => { - if (this._paused && this._pauseContainer) { - _0x232e51(pieceHeight.frame.name === "GJ_checkOff_001.png"); - } - }); - return _0x4864cc; - } -_buildPauseOverlay() { - const textureY = screenWidth / 2; - const _0xf70e04 = 320; - const _0x4eb71b = screenWidth - 40; - this._pauseContainer = this.add.container(0, 0).setScrollFactor(0).setDepth(100); - - const _0x505665 = this.add.rectangle(textureY, _0xf70e04, screenWidth, screenHeight, 0, 75 / 255); - _0x505665.setInteractive(); - this._pauseContainer.add(_0x505665); - - const _0x103191 = this.textures.get("square04_001").source[0].width * 0.325; - const _0x954813 = this._drawScale9(textureY, _0xf70e04, _0x4eb71b, 600, "square04_001", _0x103191, 0, 150 / 255); - this._pauseContainer.add(_0x954813); - - const _0x3874ed = this.scale.isFullscreen; - const _0x426993 = this.add.image(textureY - _0x4eb71b / 2 + 40, 60, "GJ_WebSheet", _0x3874ed ? "toggleFullscreenOff_001.png" : "toggleFullscreenOn_001.png").setScale(0.64).setInteractive(); - this._expandHitArea(_0x426993, 2.5); - this._pauseContainer.add(_0x426993); - this._makeBouncyButton(_0x426993, 0.64, () => { - const _0x23c9e5 = !this.scale.isFullscreen; - _0x426993.setTexture("GJ_WebSheet", _0x23c9e5 ? "toggleFullscreenOff_001.png" : "toggleFullscreenOn_001.png"); - this._expandHitArea(_0x426993, 2.5); - this._toggleFullscreen(); - }); - - const settingsBtn = this.add.image(textureY + _0x4eb71b / 2 - 60, 80, 'GJ_GameSheet03', "GJ_optionsBtn_001.png").setAngle(90).setFlipY(true).setScale(0.64).setInteractive(); - this._expandHitArea(settingsBtn, 2.5); - this._pauseContainer.add(settingsBtn); - this._makeBouncyButton(settingsBtn, 0.64, () => this._buildSettingsPopup()); - - this._macroBtn = this.add.image(textureY + _0x4eb71b / 2 - 60, 150, "macroBot").setScale(0.4).setInteractive(); - this._pauseContainer.add(this._macroBtn); - this._makeBouncyButton(this._macroBtn, 0.4, () => this._buildMacroPopup()); - - this._pauseContainer.add(this.add.bitmapText(textureY, 65, "bigFont", window.currentlevel[1], 40).setOrigin(0.5, 0.5)); - - const _0x21dacf = 170; - const _0x46bab2 = this._bestPercent || 0; - const _0x38b8d1 = this.add.image(textureY, _0x21dacf, "GJ_WebSheet", "GJ_progressBar_001.png").setTint(0).setAlpha(125 / 255); - this._pauseContainer.add(_0x38b8d1); - const _0x1d49a9 = this.textures.getFrame("GJ_WebSheet", "GJ_progressBar_001.png"); - const _0xb5ab6f = _0x1d49a9 ? _0x1d49a9.width : 680; - const _0x1e6502 = _0x1d49a9 ? _0x1d49a9.height : 40; - const _0x3782ca = Math.max(1, Math.floor(_0xb5ab6f * (_0x46bab2 / 100))); - const _0x3d0987 = this.add.image(0, 0, "GJ_WebSheet", "GJ_progressBar_001.png").setTint(65280).setScale(0.992, 0.86).setOrigin(0, 0.5).setCrop(0, 0, _0x3782ca, _0x1e6502); - _0x3d0987.setPosition(textureY - _0xb5ab6f * 0.992 / 2, _0x21dacf); - this._pauseContainer.add(_0x3d0987); - this._pauseContainer.add(this.add.bitmapText(textureY, _0x21dacf, "bigFont", _0x46bab2 + "%", 30).setOrigin(0.5, 0.5).setScale(0.7)); - this._pauseContainer.add(this.add.bitmapText(textureY, 130, "bigFont", "Normal Mode", 30).setOrigin(0.5, 0.5).setScale(0.78)); - - const _pausePractPct = this._practiceBestPercent || 0; - const _pausePractBarY = 255; - const _pausePractBarImg = this.add.image(textureY, _pausePractBarY, "GJ_WebSheet", "GJ_progressBar_001.png").setTint(0).setAlpha(125 / 255); - this._pauseContainer.add(_pausePractBarImg); - const _pausePractFrame = this.textures.getFrame("GJ_WebSheet", "GJ_progressBar_001.png"); - const _pausePractBarW = _pausePractFrame ? _pausePractFrame.width : 680; - const _pausePractBarH = _pausePractFrame ? _pausePractFrame.height : 40; - const _pausePractFillW = Math.max(1, Math.floor(_pausePractBarW * (_pausePractPct / 100))); - const _pausePractFg = this.add.image(0, 0, "GJ_WebSheet", "GJ_progressBar_001.png").setTint(0x00FFFF).setScale(0.992, 0.86).setOrigin(0, 0.5).setCrop(0, 0, _pausePractFillW, _pausePractBarH); - _pausePractFg.setPosition(textureY - _pausePractBarW * 0.992 / 2, _pausePractBarY); - this._pauseContainer.add(_pausePractFg); - this._pauseContainer.add(this.add.bitmapText(textureY, _pausePractBarY, "bigFont", _pausePractPct + "%", 30).setOrigin(0.5, 0.5).setScale(0.7)); - this._pauseContainer.add(this.add.bitmapText(textureY, _pausePractBarY - 40, "bigFont", "Practice Mode", 30).setOrigin(0.5, 0.5).setScale(0.78)); - - const _0x4791ac = [ - { frame: this._practicedMode.practiceMode ? "GJ_normalBtn_001.png" : "GJ_practiceBtn_001.png", atlas: "GJ_GameSheet03", action: null }, - { frame: "GJ_playBtn2_001.png", atlas: "GJ_WebSheet", action: () => this._resumeGame() }, - { frame: "GJ_menuBtn_001.png", atlas: "GJ_WebSheet", action: () => { - this._audio.playEffect("quitSound_01"); - this._audio.stopMusic(); - this._resumeGame(); - this.scene.restart(); - }}, - { frame: "GJ_replayBtn_001.png", atlas: "GJ_WebSheet", action: () => { - this._resumeGame(); - this._restartLevel(); - }} - ]; - - const _0x25aa59 = _0x4791ac.map(btn => this.textures.getFrame(btn.atlas, btn.frame)?.width || 123); - let _0x599a9b = textureY - (_0x25aa59.reduce((a, b) => a + b, 0) + (_0x4791ac.length - 1) * 40) / 2; - - for (let i = 0; i < _0x4791ac.length; i++) { - const item = _0x4791ac[i]; - const width = _0x25aa59[i]; - const btn = this.add.image(_0x599a9b + width / 2, 390, item.atlas, item.frame).setInteractive(); - - if (item.action === null) { - this._pausePracticeBtn = btn; - btn.setAngle(90).setFlipY(true); - this._makeBouncyButton(btn, 1, () => { - const isPracticeMode = this._practicedMode.togglePracticeMode(); - btn.setTexture("GJ_GameSheet03", isPracticeMode ? "GJ_normalBtn_001.png" : "GJ_practiceBtn_001.png"); - btn.setAngle(90).setFlipY(true); - if (this._checkpointBtnContainer) this._checkpointBtnContainer.setVisible(isPracticeMode); - this._resumeGame(); - if (!isPracticeMode) { - this._practicedMode.clearCheckpoints(); - this._restartLevel(); - } - }); - } else { - this._makeBouncyButton(btn, 1, item.action); - } - this._pauseContainer.add(btn); - _0x599a9b += width + 40; - } - - const _0x1008ae = 530; - const _0x22b43a = 0.7; - const _0x41925a = this.textures.getFrame("GJ_WebSheet", "slidergroove.png"); - const _0x372782 = _0x41925a ? _0x41925a.width : 420; - - const createSlider = (posX, iconFrame, initialVal, setter) => { - this._pauseContainer.add(this.add.image(posX - 180 - 5, _0x1008ae, "GJ_WebSheet", iconFrame).setScale(1.2)); - const barMaxW = (_0x372782 - 8) * _0x22b43a; - const barStartX = posX - _0x372782 * _0x22b43a / 2 + 2.8; - const fillW = initialVal * barMaxW; - const fillBar = this.add.tileSprite(barStartX, _0x1008ae, fillW > 0 ? fillW : 1, 11.2, "sliderBar").setOrigin(0, 0.5); - this._pauseContainer.add(fillBar); - this._pauseContainer.add(this.add.image(posX, _0x1008ae, "GJ_WebSheet", "slidergroove.png").setScale(_0x22b43a)); - - const thumb = this.add.image(barStartX + fillW, _0x1008ae, "GJ_WebSheet", "sliderthumb.png").setScale(_0x22b43a).setInteractive({ draggable: true }); - this._pauseContainer.add(thumb); - thumb.on("drag", (p, dragX) => { - thumb.x = Math.max(barStartX, Math.min(barStartX + barMaxW, dragX)); - const pct = (thumb.x - barStartX) / barMaxW; - fillBar.width = Math.max(1, pct * barMaxW); - setter(pct < 0.03 ? 0 : pct); - }); - }; - - createSlider(textureY - 200, "gj_songIcon_001.png", this._audio.getUserMusicVolume(), v => this._audio.setUserMusicVolume(v)); - createSlider(textureY + 200, "GJ_sfxIcon_001.png", this._sfxVolume, v => { - this._sfxVolume = v; - localStorage.setItem("userSfxVol", v); - }); - } -_buildSettingsPopup() { - if (this._settingsPopup) return; - - const centerX = screenWidth / 2, - centerY = 320, - panelWidth = 800, - panelHeight = 550; - - this._settingsPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(250); - - const dim = this.add.rectangle(centerX, centerY, screenWidth, screenHeight, 0, 150 / 255).setInteractive(); - this._settingsPopup.add(dim); - - const innerContainer = this.add.container(centerX, centerY).setScale(0); - this._settingsPopup.add(innerContainer); - - const corner = 0.325 * this.textures.get("GJ_square01").source[0].width; - const panel = this._drawScale9(0, 0, panelWidth, panelHeight, 'GJ_square01', corner, 16777215, 1); - innerContainer.add(panel); - - const closeBtn = this.add.image(-(panelWidth / 2) + 10, -(panelHeight / 2) + 10, 'GJ_WebSheet', "GJ_closeBtn_001.png").setScale(0.8).setInteractive(); - innerContainer.add(closeBtn); - this._makeBouncyButton(closeBtn, 0.8, () => { - this._settingsPopup.destroy(); - this._settingsPopup = null; - }); - - const pages = ["Gameplay", "Visual"]; - let currentPage = 0; - const pageTitle = this.add.bitmapText(0, -(panelHeight / 2) + 45, "bigFont", pages[currentPage], 40).setOrigin(0.5); - innerContainer.add(pageTitle); - const leftArrow = this.add.image(-(panelWidth / 2) - 130, 0, "GJ_GameSheet03", "GJ_arrow_01_001.png") - .setFlipX(false).setInteractive(); - innerContainer.add(leftArrow); - const rightArrow = this.add.image((panelWidth / 2) + 130, 0, "GJ_GameSheet03", "GJ_arrow_01_001.png") - .setInteractive().setFlipX(true); - innerContainer.add(rightArrow); - const column1X = -200; - const column2X = 200; - const checkOffset = -120; - const textOffset = -70; - const spacingY = 70; - const startY = -150; - let pageContainer = this.add.container(0, 0); - innerContainer.add(pageContainer); - - const createToggle = (container, x, y, label, getVal, setVal, callback = null, fontSize = 25) => { - const getTex = () => getVal() ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png"; - const check = this.add.image(x + checkOffset, y, "GJ_GameSheet03", getTex()).setScale(0.8).setInteractive(); - const txt = this.add.bitmapText(x + textOffset, y, "bigFont", label, fontSize).setOrigin(0, 0.5); - container.add([check, txt]); - - this._makeBouncyButton(check, 0.8, () => { - setVal(!getVal()); - check.setTexture("GJ_GameSheet03", getTex()); - if (callback) callback(getVal()); - if (this._saveSettings) this._saveSettings(); - }); - }; - const createNumberInput = (container, x, y, label, getVal, setVal) => { - const txt = this.add.bitmapText(x + textOffset, y, "bigFont", label, 25).setOrigin(0, 0.5); - container.add(txt); - - const boxX = x + checkOffset; - const boxY = y; - const boxW = 64; - const boxH = 48; - - const bgBoxGraphics = this.add.graphics(); - bgBoxGraphics.fillStyle(0x222222, 0.5); - bgBoxGraphics.fillRoundedRect(boxX - boxW / 2, boxY - boxH / 2, boxW, boxH, 8); - container.add(bgBoxGraphics); - - const hitArea = this.add.rectangle(boxX, boxY, boxW, boxH, 0x000000, 0) - .setOrigin(0.5) - .setInteractive({ useHandCursor: true }); - container.add(hitArea); - - let initialVal = getVal() || 1; - const valueTxt = this.add.bitmapText(boxX, boxY, "bigFont", initialVal.toString(), 28) - .setOrigin(0.5); - container.add(valueTxt); - - let isFocused = false; - let internalString = initialVal.toString(); - - const updateDisplay = () => { - if (isFocused) { - valueTxt.setText(internalString + "|"); - } else { - valueTxt.setText(internalString || " "); - } - }; - - const commitValue = () => { - isFocused = false; - - let val = parseFloat(internalString); - if (isNaN(val)) val = 1; - - if (val < 0.1) val = 0.1; - if (val > 10) val = 10; - - internalString = val.toString(); - valueTxt.setText(internalString); - - setVal(val); - if (this._saveSettings) this._saveSettings(); - }; - - hitArea.on('pointerdown', (pointer, localX, localY, event) => { - if (event) event.stopPropagation(); - - if (window._activeCustomInput && window._activeCustomInput !== commitValue) { - window._activeCustomInput(); - } - - isFocused = true; - window._activeCustomInput = commitValue; - - internalString = ""; - updateDisplay(); - }); - - const outsideClickListener = () => { - if (isFocused) commitValue(); - }; - dim.on('pointerdown', outsideClickListener); - - const keydownListener = (event) => { - if (!isFocused) return; - - const key = event.key; - - if (key === "Enter") { - event.preventDefault(); - commitValue(); - return; - } - - if (key === "Backspace") { - event.preventDefault(); - internalString = internalString.slice(0, -1); - updateDisplay(); - return; - } - - if (/^[0-9.]$/.test(key)) { - event.preventDefault(); - - if (key === "." && internalString.includes(".")) return; - - const parts = internalString.split('.'); - - if (key === ".") { - if (parts[0].length === 0) return; - } else { - if (parts.length === 1 && parts[0].length >= 2) return; - if (parts.length === 2 && parts[1].length >= 2) return; - } - - internalString += key; - updateDisplay(); - } - }; - - window.addEventListener('keydown', keydownListener); - - const originalDestroy = container.destroy; - container.destroy = (...args) => { - window.removeEventListener('keydown', keydownListener); - if (dim) dim.off('pointerdown', outsideClickListener); - if (window._activeCustomInput === commitValue) { - window._activeCustomInput = null; - } - originalDestroy.apply(container, args); - }; - }; - - const buildGameplayPage = (container) => { - createToggle(container, column1X, startY, "Show Percentage", - () => window.showPercentage, - (v) => window.showPercentage = v, - (v) => { if (this._percentageLabel) this._percentageLabel.setVisible(v); } - ); - - createToggle(container, column1X, startY + spacingY, "Percentage Decimals", - () => window.percentageDecimals, - (v) => window.percentageDecimals = v - ); - - createToggle(container, column1X, startY + (spacingY * 2), "StartPos Switcher", - () => window.startPosSwitcher, - (v) => window.startPosSwitcher = v, - (v) => { - if (!v) this._startPosIndex = -1; - if (this._startPosGui) this._startPosGui.setVisible(v); - const total = this._level.getStartPositions().length; - if (this._startPosText) this._startPosText.setText(`0/${total}`); - } - ); - - createToggle(container, column1X, startY + (spacingY * 3), "Noclip", - () => window.noClip, - (v) => window.noClip = v, - (v) => { if (this._noclipIndicator) this._noclipIndicator.setVisible(v); } - ); - - createToggle(container, column1X, startY + (spacingY * 4), "Noclip Accuracy", - () => window.noClipAccuracy, - (v) => window.noClipAccuracy = v - ); - - createToggle(container, column1X, startY + (spacingY * 5), "Macro Bot", - () => window.macroBot, - (v) => window.macroBot = v - ); - - createNumberInput(container, column2X, startY, "Speedhack", - () => window.speedHack, - (v) => window.speedHack = v - ); - }; - - const buildVisualPage = (container) => { - createToggle(container, column1X, startY, "Show Hitboxes", - () => window.showHitboxes, - (v) => window.showHitboxes = v, - (v) => { - if (!v) { - this._player._hitboxGraphics.clear(); - } else { - this._player.drawHitboxes(this._player._hitboxGraphics, this._cameraX, this._cameraY); - } - } - ); - - createToggle(container, column1X, startY + (spacingY), "Hitbox Trail", - () => window.showHitboxTrail, - (v) => window.showHitboxTrail = v, - (v) => { if (window.showHitboxes) this._player.drawHitboxes(this._player._hitboxGraphics, this._cameraX, this._cameraY); } - ); - - createToggle(container, column1X, startY + (spacingY * 2), "Hitboxes on Death", - () => window.hitboxesOnDeath, - (v) => window.hitboxesOnDeath = v - ); - - createToggle(container, column1X, startY + (spacingY * 3), "Show FPS", - () => this._fpsText.visible, - (v) => this._fpsText.visible = v, - (v) => { if (this._fpsText) this._fpsText.setVisible(v); } - ); - - createToggle(container, column1X, startY + (spacingY * 4), "Solid Wave Trail", - () => window.solidWave, - (v) => window.solidWave = v - ); - - createToggle(container, column1X, startY + (spacingY * 5), "Show CPS", - () => window.showCPS, - (v) => window.showCPS = v - ); - - createToggle(container, column2X, startY, "Create Object ID labels", - () => window.createObjectIds, - (v) => window.createObjectIds = v, - null, 17 - ); - - createToggle(container, column2X, startY + (spacingY), "Show Object ID labels", - () => window.showObjectIds, - (v) => window.showObjectIds = v, - null, 17 - ); - }; - - const buildPage = (idx) => { - pageContainer.destroy(); - pageContainer = this.add.container(0, 0); - innerContainer.add(pageContainer); - pageTitle.setText(pages[idx]); - - if (idx === 0) buildGameplayPage(pageContainer); - else if (idx === 1) buildVisualPage(pageContainer); - }; - - buildPage(0); - - this._makeBouncyButton(leftArrow, 1, () => { - currentPage = (currentPage - 1 + pages.length) % pages.length; - buildPage(currentPage); - }); - - this._makeBouncyButton(rightArrow, 1, () => { - currentPage = (currentPage + 1) % pages.length; - buildPage(currentPage); - }); - this.tweens.add({ - targets: innerContainer, - scale: 1, - duration: 660, - ease: "Elastic.Out", - easeParams: [1, 0.6] - }); - } - _saveSettings() { - const settings = { - noclip: window.noClip, - showPercentage: window.showPercentage, - percentDecimals: window.percentageDecimals, - showHitboxes: window.showHitboxes, - startPosSwitcher: window.startPosSwitcher, - hitboxTrail: window.showHitboxTrail, - showFPS: this._fpsText.visible, - solidWaveTrail: window.solidWave, - noclipAccuracy: window.noClipAccuracy, - hitboxesOnDeath: window.hitboxesOnDeath, - showEditorGlow: window.showEditorGlow, - createObjectIds: window.createObjectIds, - showObjectIds: window.showObjectIds, - showCPS: window.showCPS, - speedHack: window.speedHack, - macroBot: window.macroBot, - showEditorGlow: window.showEditorGlow - }; - localStorage.setItem("gd_settings", JSON.stringify(settings)); - } - _loadSettings() { - const saved = localStorage.getItem("gd_settings"); - const defaults = { - noclip: false, - showPercentage: true, - percentDecimals: false, - showHitboxes: false, - startPosSwitcher: false, - hitboxTrail: false, - showFPS: false, - solidWaveTrail: false, - noclipAccuracy: false, - hitboxesOnDeath: false, - showEditorGlow: false, - createObjectIds: false, - showObjectIds: false, - showCPS: false, - speedHack: 1.0, - macroBot: false, - showEditorGlow: false - }; - - const data = saved ? JSON.parse(saved) : defaults; - - window.noClip = data.noclip; - window.showPercentage = data.showPercentage; - window.percentageDecimals = data.percentDecimals; - window.showHitboxes = data.showHitboxes; - window.startPosSwitcher = data.startPosSwitcher; - window.showHitboxTrail = data.hitboxTrail; - this._fpsText.visible = data.showFPS; - window.solidWave = data.solidWaveTrail; - window.noClipAccuracy = data.noclipAccuracy; - window.hitboxesOnDeath = data.hitboxesOnDeath; - window.showCPS = data.showCPS; - window.speedHack = data.speedHack; - window.macroBot = data.macroBot; - window.showEditorGlow = data.showEditorGlow; - window.createObjectIds = data.createObjectIds; - window.showObjectIds = data.showObjectIds; - } - _buildMacroPopup() { - if (this._macroPopup) return; - const centerX = screenWidth / 2; - const centerY = 320; - const panelWidth = 800; - const panelHeight = 400; - this._macroPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(250); - const dim = this.add.rectangle(centerX, centerY, screenWidth, screenHeight, 0x000000, 150 / 255).setInteractive(); - this._macroPopup.add(dim); - - const corner = 0.325 * this.textures.get("GJ_square02").source[0].width; - const panel = this._drawScale9(centerX, centerY, panelWidth, panelHeight, "GJ_square02", corner, 0xffffff, 1); - this._macroPopup.add(panel); - - this._macroPopup.add(this.add.bitmapText(centerX, centerY - (panelHeight / 2) + 45, "bigFont", "Web Bot v1.0", 40).setOrigin(0.5)); - - if (this._macroName === undefined) { - this._macroName = this._macroBot?.meta?.name || null; - } - if (this._macroLoaded === undefined) { - this._macroLoaded = !!this._macroName || (this._macroBot && this._macroBot.inputs && this._macroBot.inputs.length > 0); - } - - const loadedNameText = this.add.bitmapText(centerX, centerY - (panelHeight / 2) + 95, "goldFont", this._macroLoaded ? `Currently loaded "${this._macroName || 'macro'}"` : "No macro loaded", 24).setOrigin(0.5); - this._macroPopup.add(loadedNameText); - - const optionsBtn = this.add.image(centerX, centerY - (panelHeight / 2) + 95, "GJ_GameSheet03", "GJ_optionsBtn02_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(0.45); - this._macroPopup.add(optionsBtn); - - const closeBtn = this.add.image(centerX - (panelWidth / 2) + 20, centerY - (panelHeight / 2) + 20, "GJ_WebSheet", "GJ_closeBtn_001.png").setInteractive().setScale(0.8); - this._macroPopup.add(closeBtn); - - this._makeBouncyButton(closeBtn, 0.8, () => { - this.events.off("update", this._refreshMacroButtons); - this._macroPopup.destroy(); - this._macroPopup = null; - }); - - const importBtn = this.add.image(centerX - 300, centerY + 20,"importMacro").setInteractive(); - const exportBtn = this.add.image(centerX - 150, centerY + 20, "GJ_GameSheet03", "GJ_shareBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(0.53); - const createBtn = this.add.image(centerX, centerY + 20, "GJ_GameSheet03", "GJ_plusBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(1.2); - const playbackBtn = this.add.image(centerX + 150, centerY + 20, this._macroBot?.playing ? "stopPlayback" : "playbackMacro").setInteractive().setScale(0.25); - const recordBtn = this.add.image(centerX + 300, centerY + 20, this._macroBot?.recording ? "stopRecord" : "recordMacro").setInteractive().setScale(0.25); - - this._macroPopup.add([createBtn, importBtn, exportBtn, playbackBtn, recordBtn]); - - this._refreshMacroButtons = () => { - const playing = !!this._macroBot?.playing; - const recording = !!this._macroBot?.recording; - - let currentMetaName = this._macroBot?.meta?.name; - if (currentMetaName && currentMetaName !== this._macroName) { - this._macroName = currentMetaName; - this._macroLoaded = true; - } - - if (this._macroLoaded) { - loadedNameText.setText(`Currently loaded "${this._macroName || 'macro'}"`); - optionsBtn.setAlpha(1).setActive(true); - optionsBtn.x = centerX + (loadedNameText.width / 2) + 25; - } else { - loadedNameText.setText("No macro loaded"); - optionsBtn.setAlpha(0).setActive(false); - } - - playbackBtn.setTexture( - playing - ? "stopPlayback" - : "playbackMacro" - ); - - recordBtn.setTexture( - recording - ? "stopRecord" - : "recordMacro" - ); - - createBtn.setAlpha((playing || recording || this._macroLoaded) ? 0.5 : 1); - importBtn.setAlpha((playing || recording) ? 0.5 : 1); - exportBtn.setAlpha((playing || recording || !this._macroLoaded) ? 0.5 : 1); - playbackBtn.setAlpha((recording || !this._macroLoaded) ? 0.5 : 1); - recordBtn.setAlpha((playing || !this._macroLoaded) ? 0.5 : 1); - }; - - this._refreshMacroButtons(); - - this._makeBouncyButton(optionsBtn, 0.45, () => { - if (!this._macroLoaded) return; - const renamePrompt = prompt("New name", this._macroName); - if (renamePrompt && renamePrompt.trim() !== "") { - const cleanName = renamePrompt.trim(); - if (!this._macroBot) this._initMacroBot(); - - if (!this._macroBot.meta) { - this._macroBot.meta = {}; - } - this._macroBot.meta.name = cleanName; - this._macroName = cleanName; - this._refreshMacroButtons(); - } - }); - - this._makeBouncyButton(importBtn, 1, () => { - if (this._macroBot?.playing) return; - if (this._macroBot?.recording) return; - this._importMacroFile(); - }); - - this._makeBouncyButton(exportBtn, 0.53, () => { - if (this._macroBot?.playing) return; - if (this._macroBot?.recording) return; - if (!this._macroLoaded) return; - this._exportMacroFile(this._macroName ? `${this._macroName}.wbgdr` : null); - }); - - this._makeBouncyButton(createBtn, 1.2, () => { - if (this._macroBot?.playing || this._macroBot?.recording || this._macroLoaded) return; - const name = prompt("Enter macro name"); - if (name) { - if (!this._macroBot) this._initMacroBot(); - this._macroBot.resetAll(); - this._macroBot.meta.name = name; - this._macroName = name; - this._macroLoaded = true; - this._refreshMacroButtons(); - } - }); - - this._makeBouncyButton(playbackBtn, 0.25, () => { - if (this._macroBot?.recording) return; - if (!this._macroLoaded) return; - - if (this._macroBot?.playing) { - this._stopMacroPlayback(); - } else { - if (!this._macroBot) { - return; - } - const macro = this._macroBot.exportObject(); - this._startMacroPlayback(macro); - } - this._refreshMacroButtons(); - }); - - this._makeBouncyButton(recordBtn, 0.25, () => { - if (this._macroBot?.playing) return; - if (!this._macroLoaded) return; - - if (this._macroBot?.recording) { - this._stopMacroRecording(); - } else { - this._startMacroRecording({ - level: window.currentlevel?.[2] || "", - name: this._macroName - }); - } - - this._refreshMacroButtons(); - }); - - this.events.on("update", this._refreshMacroButtons); - } - _buildInfoPopup() { - if (this._infoPopup) { - return; - } - const xPos = screenWidth / 2; - const popupHeight = 320; - const popupWidth = 336; - this._infoPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); - const background = this.add.rectangle(xPos, popupHeight, screenWidth, screenHeight, 0, 100 / 255); - background.setInteractive(); - this._infoPopup.add(background); - - const bounceContainer = this.add.container(xPos, popupHeight).setScale(0); - this._infoPopup.add(bounceContainer); - const cornerRadius = this.textures.get("GJ_square02").source[0].width * 0.325; - const popupBg = this._drawScale9(0, 0, 480, popupWidth, "GJ_square02", cornerRadius, 16777215, 1); - bounceContainer.add(popupBg); - const closeBtn = this.add.image(-240 + 20, -148, "GJ_WebSheet", "GJ_closeBtn_001.png").setScale(0.8).setInteractive(); - bounceContainer.add(closeBtn); - this._expandHitArea(closeBtn, 2); - this._makeBouncyButton(closeBtn, 0.8, () => this._closeInfoPopup()); - const title = this.add.bitmapText(0, -124, "bigFont", "Credits", 30).setOrigin(0.5, 0.5); - bounceContainer.add(title); - const scrollAreaW = 420; - const scrollAreaH = 230; - const scrollAreaX = 0; - const scrollAreaY = 20; - const scrollFrameBg = this.add.graphics(); - scrollFrameBg.fillStyle(0x000000, 0.18); - scrollFrameBg.fillRoundedRect(scrollAreaX - scrollAreaW / 2, scrollAreaY - scrollAreaH / 2, scrollAreaW, scrollAreaH, 8); - bounceContainer.add(scrollFrameBg); - const contentContainer = this.add.container(0, scrollAreaY - scrollAreaH / 2 + 8); - bounceContainer.add(contentContainer); - - const creditsEntries = [ - { text: "Made by RobTop Games", scale: 0.8, font: "goldFont" }, - { text: "Modded by:", scale: 0.9, font: "bigFont" }, - { text: "breadbb, PinkDev, rohanis0000,", scale: 0.7, font: "goldFont" }, - { text: "bog, AntiMatter, arbstro, aloaf", scale: 0.7, font: "goldFont" }, - { text: "Contributors:", scale: 0.9, font: "bigFont" }, - { text: "t0nchi7 and Lasokar.", scale: 0.7, font: "goldFont" }, - { text: "© 2026 RobTop Games. All rights reserved.", scale: 0.4, font: "Arial", color: 0x000000 }, - ]; - let yPos = 0; - const lineItems = []; - creditsEntries.forEach(entry => { - let txt; - if (entry.font === "Arial") { - txt = this.add.text(0, yPos, entry.text, { - fontSize: `${Math.round(32 * (entry.scale || 0.65))}px`, - fontFamily: "Arial", - color: entry.color ? `#${entry.color.toString(16).padStart(6, '0')}` : "#ffffff" - }).setOrigin(0.5, 0); - } else { - txt = this.add.bitmapText(0, yPos, entry.font || "bigFont", entry.text, 32) - .setOrigin(0.5, 0) - .setScale(entry.scale || 0.65); - if (entry.color != null) txt.setTint(entry.color); - } - contentContainer.add(txt); - lineItems.push(txt); - yPos += Math.round(32 * (entry.scale || 0.65)) + 10; - }); - const totalContentH = yPos; - const maxScrollDown = Math.max(0, totalContentH - scrollAreaH + 16); - const maskGraphics = this.add.graphics(); - const maskShape = this.add.graphics(); - maskShape.fillStyle(0xffffff, 1); - const updateMask = () => { - if (!bounceContainer || !bounceContainer.active) return; - const wx = xPos + bounceContainer.x - xPos; - const s = bounceContainer.scaleX; - const bwx = xPos; - const bwy = popupHeight; - maskShape.clear(); - maskShape.fillStyle(0xffffff, 1); - maskShape.fillRect( - bwx + (scrollAreaX - scrollAreaW / 2) * s, - bwy + (scrollAreaY - scrollAreaH / 2) * s, - scrollAreaW * s, - scrollAreaH * s - ); - }; - const geomMask = maskShape.createGeometryMask(); - contentContainer.setMask(geomMask); - const maskUpdateEvent = this.events.on('postupdate', updateMask); - let scrollY = 0; - const baseContentY = scrollAreaY - scrollAreaH / 2 + 8; - const applyScroll = () => { - contentContainer.y = baseContentY - scrollY; - }; - applyScroll(); - const scrollZone = this.add.zone(scrollAreaX, scrollAreaY, scrollAreaW, scrollAreaH).setInteractive(); - bounceContainer.add(scrollZone); - scrollZone.on('wheel', (_p, _dx, deltaY) => { - scrollY = Phaser.Math.Clamp(scrollY + deltaY * 0.6, 0, maxScrollDown); - applyScroll(); - }); - - let dragStartY = 0; - let dragStartScroll = 0; - scrollZone.on('pointerdown', (pointer) => { - dragStartY = pointer.y; - dragStartScroll = scrollY; - }); - scrollZone.on('pointermove', (pointer) => { - if (pointer.isDown) { - const dy = dragStartY - pointer.y; - scrollY = Phaser.Math.Clamp(dragStartScroll + dy, 0, maxScrollDown); - applyScroll(); - } - }); - this._infoPopupCleanup = () => { - this.events.off('postupdate', updateMask); - maskShape.destroy(); - geomMask.destroy(); - }; - this.tweens.add({ - targets: bounceContainer, - scale: { from: 0, to: 1 }, - duration: 660, - ease: "Elastic.Out", - easeParams: [1, 0.6] - }); - } - _closeInfoPopup() { - if (this._infoPopup) { - if (this._infoPopupCleanup) { - this._infoPopupCleanup(); - this._infoPopupCleanup = null; - } - this._infoPopup.destroy(); - this._infoPopup = null; - } - } - _buildHowToPlayPopup() { - if (this._howToPlayPopup) { - return; - } - const TUTORIAL_PAGES = ["tutorial_01", "tutorial_02", "tutorial_03", "tutorial_04", "tutorial_05"]; - const GREEN = 0x00e719; - const YELLOW = 0xf8ff00; - const BLUE = 0x3cadf5; - const TUTORIAL_DESCRIPTIONS = [ - { fontSize: 40, lines: [ - [{ text: "TAP", color: GREEN }, { text: " the screen to jump." }], - [{ text: "HOLD", color: GREEN }, { text: " down to keep jumping." }] - ]}, - { fontSize: 40, lines: [ - [{ text: "Hold", color: GREEN }, { text: " to fly up." }], - [{ text: "Release", color: GREEN }, { text: " to fly down." }] - ]}, - { fontSize: 35, lines: [ - [{ text: "You can enter " }, { text: "practice mode", color: BLUE }, { text: " from" }], - [{ text: "the pause menu." }], - [{ text: "Practice mode lets you place" }], - [{ text: "checkpoints", color: GREEN }, { text: "." }] - ]}, - { fontSize: 35, lines: [ - [{ text: "You can place checkpoints manually, or" }], - [{ text: "use the auto-checkpoints feature." }], - [{ text: "Tap the delete button to remove your" }], - [{ text: "last checkpoint." }] - ]}, - { fontSize: 35, lines: [ - [{ text: "Jump Orbs", color: YELLOW }, { text: " activate when you are on" }], - [{ text: "top of them." }], - [{ text: "TAP", color: GREEN }, { text: " while touching an orb to" }], - [{ text: "interact with it and use its effect." }] - ]} - ]; - const TOTAL_PAGES = TUTORIAL_PAGES.length; - let currentPage = 0; - - const xPos = screenWidth / 2; - const _0x4c3182 = 320; - this._howToPlayPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(300); - const _0x249eb7 = this.add.rectangle(xPos, _0x4c3182, screenWidth, screenHeight, 0, 100 / 255); - _0x249eb7.setInteractive(); - this._howToPlayPopup.add(_0x249eb7); - const _0x14e46f = this.textures.get("GJ_square01").source[0].width * 0.325; - const panelContainer = this.add.container(xPos, _0x4c3182); - this._howToPlayPopup.add(panelContainer); - const _0x2c64c2 = this._drawScale9(0, 0, 830, 530, "GJ_square01", _0x14e46f, 16777215, 1); - panelContainer.add(_0x2c64c2); - const _0x5a0f88 = this.add.image(-240 - 160, 172 - _0x4c3182 - 110, "GJ_WebSheet", "GJ_closeBtn_001.png").setScale(0.8).setInteractive(); - this._expandHitArea(_0x5a0f88, 2); - this._makeBouncyButton(_0x5a0f88, 0.8, () => this._closeHowToPlayPopup()); - panelContainer.add(_0x5a0f88); - const howToPlayTitle = this.add.bitmapText(0, -210, "bigFont", "How To Play", 62).setOrigin(0.5, 0.5); - panelContainer.add(howToPlayTitle); - const DESC_TOP_Y = -195; - const DESC_BOT_Y = 15; - const DESC_MAX_H = DESC_BOT_Y - DESC_TOP_Y; - - let descLineObjects = []; - - const _buildDescLines = (pageIndex) => { - for (const obj of descLineObjects) obj.destroy(); - descLineObjects = []; - - const page = TUTORIAL_DESCRIPTIONS[pageIndex]; - if (!page || !page.lines.length) return; - - const fontSize = page.fontSize; - const lineSpacing = 0.35; - const lineH = fontSize * (1 + lineSpacing); - const startY = DESC_TOP_Y + fontSize / 0.5; - - for (let i = 0; i < page.lines.length; i++) { - const segments = page.lines[i]; - const lineY = startY + i * lineH; - if (segments.length === 1 && !segments[0].color) { - const obj = this.add.bitmapText(0, lineY, "bigFont", segments[0].text, fontSize) - .setOrigin(0.5, 0.5); - panelContainer.add(obj); - descLineObjects.push(obj); - continue; - } - const measured = segments.map(seg => { - const tmp = this.add.bitmapText(0, -9999, "bigFont", seg.text, fontSize); - const w = tmp.width; - tmp.destroy(); - return w; - }); - const totalW = measured.reduce((a, b) => a + b, 0); - let curX = -totalW / 2; - - for (let s = 0; s < segments.length; s++) { - const seg = segments[s]; - const obj = this.add.bitmapText(curX, lineY, "bigFont", seg.text, fontSize) - .setOrigin(0, 0.5); - if (seg.color) obj.setTint(seg.color); - panelContainer.add(obj); - descLineObjects.push(obj); - curX += measured[s]; - } - } - }; - - _buildDescLines(0); - const tutorialImage = this.add.image(-240 + 150, 155, TUTORIAL_PAGES[0]); - panelContainer.add(tutorialImage); - const nextGroup = this.add.container(-240 + 550, 165); - const nextBtnW = 125, nextBtnH = 80; - const nextBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; - const nextBtn9 = this._drawScale9(0, 0, nextBtnW, nextBtnH, "GJ_button01", nextBtnBorder, 0xffffff, 1); - const nextBtn = this.add.rectangle(0, 0, nextBtnW, nextBtnH).setInteractive(); - const nextLabel = this.add.bitmapText(-5, -2.5, "bigFont", "Next", 35).setOrigin(0.5, 0.5); - nextGroup.add(nextBtn9); - nextGroup.add(nextBtn); - nextGroup.add(nextLabel); - panelContainer.add(nextGroup); - - nextBtn.on("pointerdown", () => { - nextGroup._pressed = true; - this.tweens.killTweensOf(nextGroup); - this.tweens.add({ targets: nextGroup, scaleX: 1.26, scaleY: 1.26, duration: 300, ease: "Bounce.Out" }); - }); - nextBtn.on("pointerout", () => { - if (nextGroup._pressed) { - nextGroup._pressed = false; - this.tweens.killTweensOf(nextGroup); - this.tweens.add({ targets: nextGroup, scaleX: 1, scaleY: 1, duration: 400, ease: "Bounce.Out" }); - } - }); - nextBtn.on("pointerup", () => { - if (!nextGroup._pressed) return; - nextGroup._pressed = false; - this.tweens.killTweensOf(nextGroup); - nextGroup.setScale(1); - - if (currentPage >= TOTAL_PAGES - 1) { - this._closeHowToPlayPopup(); - } else { - currentPage++; - tutorialImage.setTexture(TUTORIAL_PAGES[currentPage]); - _buildDescLines(currentPage); - nextLabel.setText(currentPage >= TOTAL_PAGES - 1 ? "Exit" : "Next"); - } - }); - panelContainer.setScale(0); - this.tweens.add({ - targets: panelContainer, - scale: 1, - duration: 660, - ease: "Elastic.Out", - easeParams: [1, 0.6] - }); -} - _closeHowToPlayPopup() { - if (this._howToPlayPopup) { - this._howToPlayPopup.destroy(); - this._howToPlayPopup = null; - } - } - _buildUpdateLogPopup() { - if (this._updateLogPopup || window.levelID) { - return; - } - const xPos = screenWidth / 2; - const popupHeight = 320; - const popupWidth = 336; - this._updateLogPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); - const background = this.add.rectangle(xPos, popupHeight, screenWidth, screenHeight, 0, 100 / 255); - background.setInteractive(); - this._updateLogPopup.add(background); - - const bounceContainer = this.add.container(xPos, popupHeight).setScale(0); - this._updateLogPopup.add(bounceContainer); - const cornerRadius = this.textures.get("GJ_square02").source[0].width * 0.325; - const popupBg = this._drawScale9(0, 0, 480, popupWidth, "GJ_square02", cornerRadius, 16777215, 1); - bounceContainer.add(popupBg); - const closeBtn = this.add.image(-240 + 20, -148, "GJ_WebSheet", "GJ_closeBtn_001.png").setScale(0.8).setInteractive(); - bounceContainer.add(closeBtn); - this._expandHitArea(closeBtn, 2); - this._makeBouncyButton(closeBtn, 0.8, () => this._closeUpdateLogPopup()); - const title = this.add.bitmapText(0, -124, "bigFont", "BETA (EXPECT BUGS)", 30).setOrigin(0.5, 0.5).setTint(0xff6666); - bounceContainer.add(title); - const scrollAreaW = 420; - const scrollAreaH = 230; - const scrollAreaX = 0; - const scrollAreaY = 20; - const scrollFrameBg = this.add.graphics(); - scrollFrameBg.fillStyle(0x000000, 0.18); - scrollFrameBg.fillRoundedRect(scrollAreaX - scrollAreaW / 2, scrollAreaY - scrollAreaH / 2, scrollAreaW, scrollAreaH, 8); - bounceContainer.add(scrollFrameBg); - const contentContainer = this.add.container(0, scrollAreaY - scrollAreaH / 2 + 8); - bounceContainer.add(contentContainer); - /* colors for reference - 0xff6666 - 0xff9944 - 0xaaddff - fun messages from me :) - 0xff00ff - pink dev entries - */ - const updateEntries = [ - { text: "Update Log", scale: 0.85, font: "goldFont" }, - { text: "Accurate GDWeb+ logo", scale: 0.65 }, - { text: "Credit to Altruist for making it", scale: 0.6 }, - { text: "is this update finally out?", scale: 0.65, color: 0xaaddff }, - { text: "- rohanis0000", scale: 0.65, color: 0xaaddff }, - ]; - let yPos = 0; - const lineItems = []; - updateEntries.forEach(entry => { - const txt = this.add.bitmapText(0, yPos, entry.font || "bigFont", entry.text, 32) - .setOrigin(0.5, 0) - .setScale(entry.scale || 0.65); - if (entry.color != null) txt.setTint(entry.color); - contentContainer.add(txt); - lineItems.push(txt); - yPos += Math.round(32 * (entry.scale || 0.65)) + 10; - }); - const totalContentH = yPos; - const maxScrollDown = Math.max(0, totalContentH - scrollAreaH + 16); - const maskGraphics = this.add.graphics(); - const maskShape = this.add.graphics(); - maskShape.fillStyle(0xffffff, 1); - const updateMask = () => { - if (!bounceContainer || !bounceContainer.active) return; - const wx = xPos + bounceContainer.x - xPos; - const s = bounceContainer.scaleX; - const bwx = xPos; - const bwy = popupHeight; - maskShape.clear(); - maskShape.fillStyle(0xffffff, 1); - maskShape.fillRect( - bwx + (scrollAreaX - scrollAreaW / 2) * s, - bwy + (scrollAreaY - scrollAreaH / 2) * s, - scrollAreaW * s, - scrollAreaH * s - ); - }; - const geomMask = maskShape.createGeometryMask(); - contentContainer.setMask(geomMask); - const maskUpdateEvent = this.events.on('postupdate', updateMask); - let scrollY = 0; - const baseContentY = scrollAreaY - scrollAreaH / 2 + 8; - const applyScroll = () => { - contentContainer.y = baseContentY - scrollY; - }; - applyScroll(); - const scrollZone = this.add.zone(scrollAreaX, scrollAreaY, scrollAreaW, scrollAreaH).setInteractive(); - bounceContainer.add(scrollZone); - scrollZone.on('wheel', (_p, _dx, deltaY) => { - scrollY = Phaser.Math.Clamp(scrollY + deltaY * 0.6, 0, maxScrollDown); - applyScroll(); - }); - - let dragStartY = 0; - let dragStartScroll = 0; - scrollZone.on('pointerdown', (pointer) => { - dragStartY = pointer.y; - dragStartScroll = scrollY; - }); - scrollZone.on('pointermove', (pointer) => { - if (pointer.isDown) { - const dy = dragStartY - pointer.y; - scrollY = Phaser.Math.Clamp(dragStartScroll + dy, 0, maxScrollDown); - applyScroll(); - } - }); - this._updateLogPopupCleanup = () => { - this.events.off('postupdate', updateMask); - maskShape.destroy(); - geomMask.destroy(); - }; - this.tweens.add({ - targets: bounceContainer, - scale: { from: 0, to: 1 }, - duration: 660, - ease: "Elastic.Out", - easeParams: [1, 0.6] - }); - } - _closeUpdateLogPopup() { - if (this._updateLogPopup) { - if (this._updateLogPopupCleanup) { - this._updateLogPopupCleanup(); - this._updateLogPopupCleanup = null; - } - this._updateLogPopup.destroy(); - this._updateLogPopup = null; - } - } - _buildNewgroundsPopup() { - if (this._newgroundsPopup || window.levelID) return; - const xPos = screenWidth / 2; - const centerY = screenHeight / 2; - this._newgroundsPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); - const background = this.add.rectangle(xPos, centerY, screenWidth, screenHeight, 0, 100 / 255); - background.setInteractive(); - this._newgroundsPopup.add(background); - const bounceContainer = this.add.container(xPos, centerY).setScale(0); - this._newgroundsPopup.add(bounceContainer); - const cornerRadius = this.textures.get("square01_001").source[0].width * 0.325; - const panelBg = this._drawScale9(0, 0, 460, 240, "square01_001", cornerRadius, 16777215, 1); - bounceContainer.add(panelBg); - const title = this.add.bitmapText(0, -76, "goldFont", "Newgrounds", 40).setOrigin(0.5, 0.5); - bounceContainer.add(title); - const body = this.add.text(0, -10, "Visit Newgrounds to find awesome\nmusic?", { - fontSize: "25px", - fontFamily: "Arial, sans-serif", - color: "#ffffff", - align: "center" - }).setOrigin(0.5, 0.5); - bounceContainer.add(body); - const cancelGroup = this.add.container(-70, 65); - const cancelBtnW = 165, cancelBtnH = 55; - const cancelBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; - const cancelBtn9 = this._drawScale9(0, 0, cancelBtnW, cancelBtnH, "GJ_button01", cancelBtnBorder, 0xffffff, 1); - const cancelBtn = this.add.rectangle(0, 0, cancelBtnW, cancelBtnH).setInteractive(); - cancelGroup.add(cancelBtn9); - cancelGroup.add(cancelBtn); - const cancelLabel = this.add.bitmapText(-2, -3, "goldFont", "Cancel", 38).setOrigin(0.5, 0.5); - cancelGroup.add(cancelLabel); - bounceContainer.add(cancelGroup); - cancelBtn.on("pointerdown", () => { cancelGroup._pressed = true; this.tweens.killTweensOf(cancelGroup); this.tweens.add({ targets: cancelGroup, scaleX: 1.26, scaleY: 1.26, duration: 300, ease: "Bounce.Out" }); }); - cancelBtn.on("pointerout", () => { if (cancelGroup._pressed) { cancelGroup._pressed = false; this.tweens.killTweensOf(cancelGroup); this.tweens.add({ targets: cancelGroup, scaleX: 1, scaleY: 1, duration: 400, ease: "Bounce.Out" }); } }); - cancelBtn.on("pointerup", () => { if (cancelGroup._pressed) { cancelGroup._pressed = false; this.tweens.killTweensOf(cancelGroup); cancelGroup.setScale(1); this._closeNewgroundsPopup(); } }); - const openGroup = this.add.container(90, 65); - const openBtnW = 125, openBtnH = 55; - const openBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; - const openBtn9 = this._drawScale9(0, 0, openBtnW, openBtnH, "GJ_button01", openBtnBorder, 0xffffff, 1); - const openBtn = this.add.rectangle(0, 0, openBtnW, openBtnH).setInteractive(); - openGroup.add(openBtn9); - openGroup.add(openBtn); - const openLabel = this.add.bitmapText(-2, -3, "goldFont", "Open", 39).setOrigin(0.5, 0.5); - openGroup.add(openLabel); - bounceContainer.add(openGroup); - openBtn.on("pointerdown", () => { openGroup._pressed = true; this.tweens.killTweensOf(openGroup); this.tweens.add({ targets: openGroup, scaleX: 1.26, scaleY: 1.26, duration: 300, ease: "Bounce.Out" }); }); - openBtn.on("pointerout", () => { if (openGroup._pressed) { openGroup._pressed = false; this.tweens.killTweensOf(openGroup); this.tweens.add({ targets: openGroup, scaleX: 1, scaleY: 1, duration: 400, ease: "Bounce.Out" }); } }); - openBtn.on("pointerup", () => { if (openGroup._pressed) { openGroup._pressed = false; this.tweens.killTweensOf(openGroup); openGroup.setScale(1); this._closeNewgroundsPopup(); window.open("https://www.newgrounds.com/audio", "_blank"); } }); - this.tweens.add({ - targets: bounceContainer, - scale: { from: 0, to: 1 }, - duration: 660, - ease: "Elastic.Out", - easeParams: [1, 0.6] - }); - } - _closeNewgroundsPopup() { - if (this._newgroundsPopup) { - this._newgroundsPopup.destroy(); - this._newgroundsPopup = null; - } - } - _buildFeaturedInfoPopup() { - if (this._featuredInfoPopup) return; - const xPos = screenWidth / 2; - const centerY = screenHeight / 2; - this._featuredInfoPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); - const background = this.add.rectangle(xPos, centerY, screenWidth, screenHeight, 0, 100 / 255); - background.setInteractive(); - this._featuredInfoPopup.add(background); - const bounceContainer = this.add.container(xPos, centerY).setScale(0); - this._featuredInfoPopup.add(bounceContainer); - const cornerRadius = this.textures.get("square01_001").source[0].width * 0.325; - const panelBg = this._drawScale9(0, 0, 560, 300, "square01_001", cornerRadius, 16777215, 1); - bounceContainer.add(panelBg); - const title = this.add.bitmapText(0, -98, "goldFont", "Featured", 42).setOrigin(0.5, 0.5); - bounceContainer.add(title); - const body = this.add.text(0, -5, "This menu is being worked on currently and is\nbeing constantly tested for bugs and better\nquality. The reason it is here is to show a demo\nof what it would look like.", { - fontSize: "21px", - fontFamily: "Arial, sans-serif", - color: "#ffffff", - align: "center", - lineSpacing: 4 - }).setOrigin(0.5, 0.5); - bounceContainer.add(body); - const okGroup = this.add.container(-5, 95); - const okBtnW = 90, okBtnH = 55; - const okBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; - const okBtn9 = this._drawScale9(0, 0, okBtnW, okBtnH, "GJ_button01", okBtnBorder, 0xffffff, 1); - const okBtn = this.add.rectangle(0, 0, okBtnW, okBtnH).setInteractive(); - okGroup.add(okBtn9); - okGroup.add(okBtn); - const okLabel = this.add.bitmapText(-3, -4, "goldFont", "OK", 44).setOrigin(0.5, 0.5); - okGroup.add(okLabel); - bounceContainer.add(okGroup); - okBtn.on("pointerdown", () => { okGroup._pressed = true; this.tweens.killTweensOf(okGroup); this.tweens.add({ targets: okGroup, scaleX: 1.26, scaleY: 1.26, duration: 300, ease: "Bounce.Out" }); }); - okBtn.on("pointerout", () => { if (okGroup._pressed) { okGroup._pressed = false; this.tweens.killTweensOf(okGroup); this.tweens.add({ targets: okGroup, scaleX: 1, scaleY: 1, duration: 400, ease: "Bounce.Out" }); } }); - okBtn.on("pointerup", () => { if (okGroup._pressed) { okGroup._pressed = false; this.tweens.killTweensOf(okGroup); okGroup.setScale(1); this._closeFeaturedInfoPopup(); } }); - this.tweens.add({ - targets: bounceContainer, - scale: { from: 0, to: 1 }, - duration: 660, - ease: "Elastic.Out", - easeParams: [1, 0.6] - }); - } - _closeFeaturedInfoPopup() { - if (this._featuredInfoPopup) { - this._featuredInfoPopup.destroy(); - this._featuredInfoPopup = null; - } - } - _expandHitArea(_0x122213, _0x37180a) { - const _0x46ea45 = _0x122213.width; - const _0x43b461 = _0x122213.height; - const _0x960250 = _0x46ea45 * (_0x37180a - 1) / 2; - const _0x3f88a1 = _0x43b461 * (_0x37180a - 1) / 2; - _0x122213.input.hitArea.setTo(-_0x960250, -_0x3f88a1, _0x46ea45 + _0x960250 * 2, _0x43b461 + _0x3f88a1 * 2); - } - _makeBouncyButton(textureX, _0x57b645, _0x2f13d0, _0xda0c21) { - const _0x396ca0 = _0x57b645 * 1.26; - textureX.on("pointerdown", () => { - if (!_0xda0c21 || !!_0xda0c21()) { - textureX._pressed = true; - this.tweens.killTweensOf(textureX, "scale"); - this.tweens.add({ - targets: textureX, - scale: _0x396ca0, - duration: 300, - ease: "Bounce.Out" - }); - } - }); - textureX.on("pointerout", (pointer) => { - if (textureX._pressed) { - textureX._pressed = false; - this.tweens.killTweensOf(textureX, "scale"); - this.tweens.add({ - targets: textureX, - scale: _0x57b645, - duration: 400, - ease: "Bounce.Out" - }); - } - }); - textureX.on("pointerup", () => { - if (textureX._pressed) { - textureX._pressed = false; - this.tweens.killTweensOf(textureX); - textureX.setScale(_0x57b645); - _0x2f13d0(); - } - }); - return textureX; - } - _toggleFullscreen() { - if (this.scale.isFullscreen) { - this.scale.stopFullscreen(); - } else { - this.scale.startFullscreen(); - try { - screen.orientation.lock("landscape").catch(() => {}); - } catch (_0x22124f) {} - } - } - _drawScale9(_0x147730, _0x4c8cbf, scaleWidth, scaleHeight, _0x24a44b, borderSize, _0x590eba, _0x206735) { - const _0x4080b2 = this.add.container(_0x147730, _0x4c8cbf); - const _0x2522df = this.textures.get(_0x24a44b); - const _0x401ec1 = _0x2522df.source[0]; - const _0x3f82ec = _0x401ec1.width; - const _0x294746 = _0x401ec1.height; - const _0x2b09f1 = scaleWidth - borderSize * 2; - const _0x990515 = scaleHeight - borderSize * 2; - const _0x1d065e = [{ - sx: 0, - sy: 0, - sw: borderSize, - sh: borderSize, - dx: -scaleWidth / 2, - dy: -scaleHeight / 2, - dw: borderSize, - dh: borderSize - }, { - sx: borderSize, - sy: 0, - sw: _0x3f82ec - borderSize * 2, - sh: borderSize, - dx: -scaleWidth / 2 + borderSize, - dy: -scaleHeight / 2, - dw: _0x2b09f1, - dh: borderSize - }, { - sx: _0x3f82ec - borderSize, - sy: 0, - sw: borderSize, - sh: borderSize, - dx: scaleWidth / 2 - borderSize, - dy: -scaleHeight / 2, - dw: borderSize, - dh: borderSize - }, { - sx: 0, - sy: borderSize, - sw: borderSize, - sh: _0x294746 - borderSize * 2, - dx: -scaleWidth / 2, - dy: -scaleHeight / 2 + borderSize, - dw: borderSize, - dh: _0x990515 - }, { - sx: borderSize, - sy: borderSize, - sw: _0x3f82ec - borderSize * 2, - sh: _0x294746 - borderSize * 2, - dx: -scaleWidth / 2 + borderSize, - dy: -scaleHeight / 2 + borderSize, - dw: _0x2b09f1, - dh: _0x990515 - }, { - sx: _0x3f82ec - borderSize, - sy: borderSize, - sw: borderSize, - sh: _0x294746 - borderSize * 2, - dx: scaleWidth / 2 - borderSize, - dy: -scaleHeight / 2 + borderSize, - dw: borderSize, - dh: _0x990515 - }, { - sx: 0, - sy: _0x294746 - borderSize, - sw: borderSize, - sh: borderSize, - dx: -scaleWidth / 2, - dy: scaleHeight / 2 - borderSize, - dw: borderSize, - dh: borderSize - }, { - sx: borderSize, - sy: _0x294746 - borderSize, - sw: _0x3f82ec - borderSize * 2, - sh: borderSize, - dx: -scaleWidth / 2 + borderSize, - dy: scaleHeight / 2 - borderSize, - dw: _0x2b09f1, - dh: borderSize - }, { - sx: _0x3f82ec - borderSize, - sy: _0x294746 - borderSize, - sw: borderSize, - sh: borderSize, - dx: scaleWidth / 2 - borderSize, - dy: scaleHeight / 2 - borderSize, - dw: borderSize, - dh: borderSize - }]; - for (let _0x24f653 = 0; _0x24f653 < _0x1d065e.length; _0x24f653++) { - const scale9Piece = _0x1d065e[_0x24f653]; - const _0xade586 = "_s9_" + _0x24f653; - if (!_0x2522df.has(_0xade586)) { - _0x2522df.add(_0xade586, 0, scale9Piece.sx, scale9Piece.sy, scale9Piece.sw, scale9Piece.sh); - } - const _0x1145e5 = this.add.image(scale9Piece.dx, scale9Piece.dy, _0x24a44b, _0xade586).setOrigin(0, 0).setDisplaySize(scale9Piece.dw, scale9Piece.dh); - if (_0x590eba !== undefined) { - _0x1145e5.setTint(_0x590eba); - } - if (_0x206735 !== undefined) { - _0x1145e5.setAlpha(_0x206735); - } - _0x4080b2.add(_0x1145e5); - } - return _0x4080b2; - } - _startGame() { - if (!this._menuActive) { - return; - } - - // fixed loading saved new best from local storage - this._bestPercent = parseFloat(localStorage.getItem("bestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); - this._practiceBestPercent = parseFloat(localStorage.getItem("practiceBestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); - - this._menuActive = false; - this._slideIn = true; - if (this._menuGlitter) { - this._menuGlitter.destroy(); - this._menuGlitter = null; - } - if (this._menuUpdateLogBtn) { - this._menuUpdateLogBtn.setVisible(false); - } - if (this._menuNewgroundsBtn) { - this._menuNewgroundsBtn.setVisible(false); - } - if (this._menuSettingsBtn) { - this._menuSettingsBtn.setVisible(false); - } - if (this._menuAchievementsBtn) { - this._menuAchievementsBtn.setVisible(false); - } - if (this._menuStatsBtn) { - this._menuStatsBtn.setVisible(false); - } - if (this._playBtn) { - this.tweens.killTweensOf(this._playBtn); - this.tweens.add({ - targets: this._playBtn, - scale: 0.01, - duration: 200, - ease: "Quad.In", - onComplete: () => { - this._playBtn.destroy(); - this._playBtn = null; - } - }); - } - //icon stuff the threequel - if (this._iconBtn) { - this._closeIconSelector && this._closeIconSelector(true); - this.tweens.killTweensOf(this._iconBtn); - this.tweens.add({ - targets: this._iconBtn, - scale: 0.01, - duration: 200, - ease: "Quad.In", - onComplete: () => { - this._iconBtn.destroy(); - this._iconBtn = null; - } - }); -} - if (this._chrSelDecor) { - this.tweens.add({ - targets: this._chrSelDecor, - y: screenHeight + 100, - alpha: 0, - duration: 200, - ease: "Quad.In", - onComplete: () => { - if (this._chrSelDecor) { this._chrSelDecor.destroy(); this._chrSelDecor = null; } - } - }); - } - if (this._lvlEditDecor) { - this.tweens.add({ - targets: this._lvlEditDecor, - y: screenHeight + 100, - alpha: 0, - duration: 200, - ease: "Quad.In", - onComplete: () => { - if (this._lvlEditDecor) { this._lvlEditDecor.destroy(); this._lvlEditDecor = null; } - } - }); - } - //creator stuff the threequel - if (this._creatorBtn) { - this._closeCreatorMenu && this._closeCreatorMenu(true); - this._closeSearchMenu && this._closeSearchMenu(true); - this.tweens.killTweensOf(this._creatorBtn); - this.tweens.add({ - targets: this._creatorBtn, - scale: 0.01, - duration: 200, - ease: "Quad.In", - onComplete: () => { - this._creatorBtn.destroy(); - this._creatorBtn = null; - } - }); -} - if (this._robLogo) { - this.tweens.add({ - targets: this._robLogo, - y: screenHeight + this._robLogo.height, - duration: 300, - ease: "Quad.In", - onComplete: () => { - this._robLogo.destroy(); - this._robLogo = null; - } - }); - } - if (this._copyrightText) { - this.tweens.add({ - targets: this._copyrightText, - y: 680, - duration: 300, - ease: "Quad.In", - onComplete: () => { - this._copyrightText.destroy(); - this._copyrightText = null; - } - }); - } - if (this._menuFsBtn) { - this.tweens.add({ - targets: this._menuFsBtn, - y: -this._menuFsBtn.height, - duration: 300, - ease: "Quad.In", - onComplete: () => { - this._menuFsBtn.destroy(); - this._menuFsBtn = null; - } - }); - } - if (this._menuInfoBtn) { - this.tweens.add({ - targets: this._menuInfoBtn, - y: -this._menuInfoBtn.height, - duration: 300, - ease: "Quad.In", - onComplete: () => { - this._menuInfoBtn.destroy(); - this._menuInfoBtn = null; - } - }); - } - this._closeInfoPopup(); - this._closeUpdateLogPopup(); - if (this._tryMeImg) { - this.tweens.add({ - targets: this._tryMeImg, - y: -this._tryMeImg.height, - duration: 300, - ease: "Quad.In", - onComplete: () => { - this._tryMeImg.destroy(); - this._tryMeImg = null; - } - }); - } - if (this._downloadBtns) { - for (const _0xaa3a95 of this._downloadBtns) { - this.tweens.killTweensOf(_0xaa3a95); - this.tweens.add({ - targets: _0xaa3a95, - y: screenHeight + _0xaa3a95.height, - duration: 300, - ease: "Quad.In", - onComplete: () => _0xaa3a95.destroy() - }); - } - this._downloadBtns = null; - } - if (this._socialIcons && this._socialIcons.length > 0) { - for (const _icon of this._socialIcons) { - this.tweens.add({ - targets: _icon, - y: screenHeight + 64, - duration: 300, - ease: "Quad.In", - onComplete: () => _icon.destroy() - }); - } - this._socialIcons = []; - } - if (this._logo) { - this.tweens.add({ - targets: this._logo, - y: -this._logo.height, - duration: 300, - ease: "Quad.In", - onComplete: () => { - this._logo.destroy(); - this._logo = null; - } - }); - } - - if (window.isEditor) { - this._cameraX = 0; - this._cameraY = 0; - this._playerWorldX = 0; - this._level.additiveContainer.setVisible(true); - this._level.container.setVisible(true); - this._level.topContainer.setVisible(true); - this._player.setCubeVisible(false); - this._player2.setCubeVisible(false); - this._attemptsLabel.setVisible(false); - window.selectedObjId = 1; - this._initEditorLogic(); - return; - } - this._cameraX = -centerX; - this._cameraY = 0; - this._cameraXRef._v = this._cameraX; - this._prevCameraX = this._cameraX; - const _0x22e36e = this._cameraX - (this._menuCameraX || 0); - this._level.shiftGroundTiles(_0x22e36e); - this._playerWorldX = this._cameraX; - let speedKey = parseInt(window.settingsMap["kA4"] || "0"); - if (speedKey == 0) { - playerSpeed = SpeedPortal.ONE_TIMES; - } else if (speedKey == 1) { - playerSpeed = SpeedPortal.HALF; - } else if (speedKey == 2) { - playerSpeed = SpeedPortal.TWO_TIMES; - } else if (speedKey == 3) { - playerSpeed = SpeedPortal.THREE_TIMES; - } else if (speedKey == 4) { - playerSpeed = SpeedPortal.FOUR_TIMES; - } - this._state.y = 30; - this._state.onGround = true; - this._level.additiveContainer.setVisible(true); - this._level.container.setVisible(true); - this._level.topContainer.setVisible(true); - this._player.setCubeVisible(true); - this._player.reset(); - this._isDual = false; - this._state2.reset(); - this._player2.reset(); - this._player2.setCubeVisible(false); - this._player2.setShipVisible(false); - this._player2.setBallVisible(false); - this._player2.setWaveVisible(false); - this._levelAttempts = 1; - this._levelJumps = 0; - this._attempts++; - localStorage.setItem("gd_totalAttempts", this._attempts); - this._attemptsLabel.setText("Attempt " + this._levelAttempts); - this._attemptsLabel.setVisible(true); - this._positionAttemptsLabel(); - let gamemode = parseInt(window.settingsMap["kA2"] || "0"); - if (gamemode == 1) { - this._player.enterShipMode(); - } else if (gamemode == 2) { - this._state.y = 30; - this._player.enterBallMode({ y: 30 }); - } else if (gamemode == 3) { - this._player.enterUfoMode(); - } else if (gamemode == 4) { - this._player.enterWaveMode(); - } - } - _pushButton(ignoreMacro = false) { - const objectsUnderPointer = this.input.manager.hitTest( - this.input.activePointer, - this._startPosGui.list, - this.cameras.main - ); - const isOverUI = objectsUnderPointer.length > 0; - const fromClick = this.input.activePointer.isDown; - const cancelInput = isOverUI && fromClick; - - if (this._menuActive) { - this._audio.playEffect("playSound_01", { - volume: 1 - }); - this._startGame(); - return; - } - - if (!cancelInput) { - if (!this._clickHistory) this._clickHistory = []; - this._clickHistory.push(this.time.now); - } - - if (!this._slideIn && !this._state.isDead && !cancelInput) { - this._state.upKeyDown = true; - this._state.upKeyPressed = true; - this._state.queuedHold = true; - if (!this._state.isFlying && !this._state.isWave && !this._state.isUfo && this._state.canJump) { - this._player.updateJump(0); - this._totalJumps++; - this._levelJumps++; - localStorage.setItem("gd_totalJumps", this._totalJumps); - } else if (this._state.isUfo) { - this._player.updateJump(0); - this._totalJumps++; - this._levelJumps++; - localStorage.setItem("gd_totalJumps", this._totalJumps); - } - } - - if (!ignoreMacro && this._macroBot) { - this._macroBot.recordEdge(true, this._physicsFrame); - } - } - _releaseButton(ignoreMacro = false) { - this._state.upKeyDown = false; - this._state.upKeyPressed = false; - this._state.queuedHold = false; - if (!ignoreMacro && this._macroBot) { - this._macroBot.recordEdge(false, this._physicsFrame); - } - } - _initMacroBot() { - this._macroBot = new MacroBot(this); - window.macroBot = this._macroBot; - } - _startMacroRecording(meta = {}) { - if (!this._macroBot) this._initMacroBot(); - this._macroBot.startRecording({ - level: window.currentlevel?.[2] || "", - ...meta - }); - } - _stopMacroRecording() { - if (!this._macroBot) return null; - return this._macroBot.stopRecording(); - } - _startMacroPlayback(macroData) { - console.log(macroData); - if (!this._macroBot) this._initMacroBot(); - this._macroBot.startPlayback(macroData); - } - _stopMacroPlayback() { - if (this._macroBot) this._macroBot.stopPlayback(); - } - _exportMacroFile(filename = null) { - if (!this._macroBot) return; - const safeName = (filename || `${window.currentlevel?.[2] || "macro"}.gdr`) - .replace(/[^\w.\-]+/g, "_"); - this._macroBot.download(safeName); - } - _importMacroFile() { - const fileInput = document.createElement("input"); - fileInput.type = "file"; - fileInput.accept = ".wbgdr"; - - fileInput.onchange = async (e) => { - const file = e.target.files?.[0]; - if (!file) return; - - try { - if (!this._macroBot) this._initMacroBot(); - - const macroData = await this._macroBot.importFile(file); - this._macroBot.inputs = Array.isArray(macroData.inputs) ? macroData.inputs.slice() : []; - const fallback = file.name.replace(/\.[^/.]+$/, ""); - const macroName = macroData.meta?.name || fallback; - - this._macroBot.meta = macroData.meta || this._macroBot.meta; - this._macroBot.meta.name = macroName; - - this._macroName = macroName; - this._macroLoaded = true; - } catch (err) { - alert("Failed to import: " + err.message); - } - }; - - fileInput.click(); - } - _positionMenuItems() { - const _0x1e5db8 = screenWidth / 2; - if (this._logo) { - this._logo.x = _0x1e5db8; - } - if (this._menuInfoBtn) { - this._menuInfoBtn.x = screenWidth - 30 - 3; - } - if (this._copyrightText) { - this._copyrightText.x = screenWidth - 20; - } - if (this._tryMeImg) { - this._tryMeImg.x = _0x1e5db8 + 175; - } - if (this._menuGlitter) { - this._menuGlitter.x = _0x1e5db8; - this._menuGlitter.y = 320; - } - if (this._playBtn) { - this._playBtn.x = _0x1e5db8; - this.tweens.killTweensOf(this._playBtn, "y"); - this._playBtn.y = 320; - } - if (this._downloadBtns) { - const _0x285ef7 = screenWidth - 130; - const _0x4a8263 = 570; - const _0x23d03e = 60; - for (let _0x1bdfae = 0; _0x1bdfae < this._downloadBtns.length; _0x1bdfae++) { - const yOffset = _0x1bdfae === 1 ? -_0x23d03e : 0; - this._downloadBtns[_0x1bdfae].setPosition(_0x285ef7, _0x4a8263 + yOffset); - } - } - if (this._iconBtn) { - this._iconBtn.x = (screenWidth / 2) - this._playBtn.width / 2 - 100 - (this._iconBtn.width * this._iconBtn.scaleX) / 2; - this.tweens.killTweensOf(this._iconBtn, "y"); - this._iconBtn.y = 320; - this.tweens.add({ - targets: this._iconBtn, - y: 324, - duration: 750, - ease: "Quad.InOut", - yoyo: true, - repeat: -1 - }); - } - if (this._creatorBtn) { - this._creatorBtn.x = (screenWidth / 2) + this._playBtn.width / 2 + 100 + (this._creatorBtn.width * this._creatorBtn.scaleX) / 2; - this.tweens.killTweensOf(this._creatorBtn, "y"); - this._creatorBtn.y = 320; - } - if (this._robLogo) { - this._robLogo.x = 110; - this._robLogo.y = 585; - } - if (this._socialIcons && this._socialIcons.length > 0) { - const _iconSpacing = 52; - const _originX = 65; - const _originY = 478; - const _layout = [{row:0,col:0},{row:0,col:1},{row:0,col:2},{row:0,col:3}, - {row:1,col:0},{row:1,col:1},{row:1,col:2},{row:1,col:3}, - {row:2,col:0},{row:2,col:1},{row:2,col:2},{row:2,col:3},{row:2,col:4}]; - this._socialIcons.forEach((icon, i) => { - icon.x = _originX + _layout[i].col * _iconSpacing; - icon.y = _originY + _layout[i].row * _iconSpacing; - }); - } - } - _positionAttemptsLabel() { - let _0xdbdd91 = this._cameraX + screenWidth / 2; - if (this._levelAttempts > 1) { - _0xdbdd91 += 100; - } - this._attemptsLabel.setPosition(_0xdbdd91, 150); - } - _resetGameplayState() { - this._cameraX = -centerX; - this._cameraY = 0; - this._cameraXRef._v = -centerX; - this._prevCameraX = -centerX; - this._playerWorldX = 0; - this._deltaBuffer = 0; - this._deathTimer = 0; - this._deathSoundPlayed = false; - this._newBestShown = false; - this._hadNewBest = false; - this._levelWon = false; - this._endCameraOverride = false; - this._endCamTween = null; - this._spaceWasDown = false; - this._physicsFrame = 0; - } - _restartLevel() { - this._attempts++; - localStorage.setItem("gd_totalAttempts", this._attempts); - this._levelAttempts++; - this._levelJumps = 0; - const _0x2ba78a = this._cameraX; - if (this._levelWon && this._practicedMode.practiceMode) { - this._practicedMode.togglePracticeMode(); - this._practicedMode.clearCheckpoints(); - if (this._checkpointBtnContainer) { - this._checkpointBtnContainer.setVisible(false); - } - } - if (this._practicedMode.practiceMode) { - const checkpoint = this._practicedMode.loadLastCheckpoint(); - if (checkpoint) { - this._respawnFromCheckpoint(); - return; - } - } - this._practicedMode.clearCheckpoints(); - this._resetGameplayState(); - this._state.reset(); - this._player.reset(); - this._isDual = false; - this._state2.reset(); - this._player2.reset(); - this._player2.setCubeVisible(false); - this._player2.setShipVisible(false); - this._player2.setBallVisible(false); - this._player2.setWaveVisible(false); - this._glitterEmitter.stop(); - let speedKey = parseInt(window.settingsMap["kA4"] || "0"); - if (speedKey == 0) { - playerSpeed = SpeedPortal.ONE_TIMES; - } else if (speedKey == 1) { - playerSpeed = SpeedPortal.HALF; - } else if (speedKey == 2) { - playerSpeed = SpeedPortal.TWO_TIMES; - } else if (speedKey == 3) { - playerSpeed = SpeedPortal.THREE_TIMES; - } else if (speedKey == 4) { - playerSpeed = SpeedPortal.FOUR_TIMES; - } - this._level.resetObjects(); - this._level.shiftGroundTiles(this._cameraX - _0x2ba78a); - this._level.resetGroundState(); - this._level.resetColorTriggers(); - this._level.resetAlphaTriggers(); - this._level.resetRotateTriggers(); - this._level.resetPulseTriggers(); - this._level.resetEnterEffectTriggers(); - this._level.resetMoveTriggers(); - this._level.resetVisibility(); - if (this._orbGfx) { this._orbGfx.clear(); } - this._colorManager.reset(); - this._player.noclipStats.totalFrames = 0; - this._player.noclipStats.deathFrames = 0; - this._player.noclipStats.deaths = 0; - - const musicOffset = this._getStartPosMusicOffset(); - const startPositions = this._level.getStartPositions(); - - if (this._startPosIndex !== -1 && startPositions[this._startPosIndex]) { - const pos = startPositions[this._startPosIndex]; - - this._playerWorldX = pos.x; - this._state.y = pos.y; - if (pos.gameMode == 1) { - this._player.enterShipMode(); - } else if (pos.gameMode == 2) { - this._state.y = 30; - this._player.enterBallMode({ y: 30 }); - } else if (pos.gameMode == 3) { - this._player.enterUfoMode(); - } else if (pos.gameMode == 4) { - this._player.enterWaveMode(); - } else if (pos.gameMode == 6) { - this._player.enterSpiderMode(); - } - this._state.gravityFlipped = pos.gravityFlipped; - this._state.isMini = pos.miniMode; - playerSpeed = [ - SpeedPortal.ONE_TIMES, - SpeedPortal.HALF, - SpeedPortal.TWO_TIMES, - SpeedPortal.THREE_TIMES, - SpeedPortal.FOUR_TIMES - ][pos.speed]; - this._state.mirrored = pos.mirrored; - this._level.fastForwardTriggers(pos.x, this._colorManager); - } - - this._audio.reset(); - this._audio.startMusic(musicOffset); - this._paused = false; - if (this._pauseContainer) { - this._pauseContainer.destroy(); - this._pauseContainer = null; - } - this._pauseBtn.setVisible(true).setAlpha(75 / 255); - if (this._practiceModeBarContainer) { - this._practiceModeBarContainer.setVisible(this._practicedMode && this._practicedMode.practiceMode); - } - this._attemptsLabel.setText("Attempt " + this._levelAttempts); - this._attemptsLabel.setVisible(true); - this._positionAttemptsLabel(); - let gamemode = parseInt(window.settingsMap["kA2"] || "0"); - if (gamemode == 1) { - this._player.enterShipMode(); - } else if (gamemode == 2) { - this._state.y = 30; - this._player.enterBallMode({ y: 30 }); - } else if (gamemode == 3) { - this._player.enterUfoMode(); - } else if (gamemode == 4) { - this._player.enterWaveMode(); - } else if (gamemode == 6) { - this._player.enterSpiderMode(); - } - - if (this._player && this._player._hitboxTrail) { - this._player._hitboxTrail = []; - } - - if (this._macroBot?.recording == true){ - this._macroBot?.clearRecording(); - } - if (this._macroBot?.playing == true){ - this._macroBot?.clearPlayback(); - } - } - _getStartPosMusicOffset(){ - const startPositions = this._level.getStartPositions(); - let musicOffset = 0; - if (this._startPosIndex !== -1 && startPositions[this._startPosIndex]) { - musicOffset = startPositions[this._startPosIndex].x / 623.16; - } - return musicOffset; - } - _respawnFromCheckpoint() { - const checkpoint = this._practicedMode.loadLastCheckpoint(); - if (!checkpoint) { - this._restartLevel(); - return; - } - this._deathTimer = 0; - this._deathSoundPlayed = false; - this._newBestShown = false; - this._state.isDead = false; - this._slideIn = false; - this._playerWorldX = checkpoint.x; - this._cameraX = checkpoint.cameraX; - this._cameraXRef._v = this._cameraX; - this._state.y = checkpoint.y; - this._state.yVelocity = checkpoint.yVelocity; - this._state.gravityFlipped = checkpoint.gravityFlipped; - this._state.isMini = checkpoint.isMini; - this._state.isCube = checkpoint.isCube; - this._state.isShip = checkpoint.isShip; - this._state.isBall = checkpoint.isBall; - this._state.isUfo = checkpoint.isUfo; - this._state.isWave = checkpoint.isWave; - this._state.isSpider = checkpoint.isSpider; - this._state.isBird = checkpoint.isBird; - this._state.isDart = checkpoint.isDart; - this._state.isRobot = checkpoint.isRobot; - this._state.isSwing = checkpoint.isSwing; - this._state.isJetpack = checkpoint.isJetpack; - this._state.isFlying = checkpoint.isFlying; - this._state.isJumping = checkpoint.isJumping; - this._state.onGround = checkpoint.onGround; - this._state.canJump = checkpoint.canJump; - this._state.wasBoosted = checkpoint.wasBoosted; - this._state.rotation = checkpoint.rotation; - this._state.gravity = checkpoint.gravity; - this._state.jumpPower = checkpoint.jumpPower; - this._state.mirrored = checkpoint.mirrored; - this._state.isDashing = checkpoint.isDashing; - this._state.dashYVelocity = checkpoint.dashYVelocity; - this._player.reset(); - this._state.isFlying = false; - this._state.isBall = false; - this._state.isWave = false; - this._state.isUfo = false; - this._state.isSpider = false; - this._state.isBird = false; - if (checkpoint.isFlying) { - this._player.enterShipMode(null, true); // dont mess with y velocity if ur loading a checkpoint - } else if (checkpoint.isBall) { - this._player.enterBallMode(); - } else if (checkpoint.isUfo) { - this._player.enterUfoMode(null, true); // dont mess with y velocity if ur loading a checkpoint - } else if (checkpoint.isWave) { - this._player.enterWaveMode(); - } else if (checkpoint.isSpider) { - this._player.enterSpiderMode(); - } else if (checkpoint.isBird) { - this._player.setBirdVisible(true); - this._player.setCubeVisible(true); - for (const layer of this._player._playerLayers) { - if (layer) { - layer.sprite.setScale(0.55); - } - } - } else { - this._player.setCubeVisible(true); - } - this._state.isFlying = checkpoint.isFlying; - this._state.isBall = checkpoint.isBall; - this._state.isWave = checkpoint.isWave; - this._state.isUfo = checkpoint.isUfo; - this._state.isSpider = checkpoint.isSpider; - this._state.isBird = checkpoint.isBird; - this._state.ignorePortals = true; - this._state2.ignorePortals = true; - this._level.resetGroundTiles(this._cameraX); - this._level.resetObjects(); - this._level._flyCeilingY = checkpoint.flyCeilingY; - this._level._flyGroundActive = checkpoint.flyGroundActive; - this._level._flyVisualOnly = checkpoint.flyVisualOnly; - this._level._groundTargetValue = checkpoint.groundTargetValue; - this._level.flyCameraTarget = checkpoint.flyCameraTarget; - this._level._groundAnimating = checkpoint.groundAnimating; - this._level._groundAnimFrom = checkpoint.groundAnimFrom; - this._level._groundAnimTo = checkpoint.groundAnimTo; - this._level._groundAnimTime = checkpoint.groundAnimTime; - this._level._groundAnimDuration = checkpoint.groundAnimDuration; - this._level._groundStartScreenY = checkpoint.groundStartScreenY !== undefined - ? checkpoint.groundStartScreenY - (checkpoint.cameraY || 0) + this._cameraY - : b(0) + this._cameraY; - this._level._ceilingStartScreenY = checkpoint.ceilingStartScreenY - - (checkpoint.cameraY || 0) + this._cameraY; - this._level._groundY = checkpoint.groundY; - this._level._ceilingY = checkpoint.ceilingY; - if (typeof checkpoint.speed === "number") { - playerSpeed = checkpoint.speed; - } else { - let speedKey = parseInt(window.settingsMap["kA4"] || "0"); - if (speedKey == 0) { - playerSpeed = SpeedPortal.ONE_TIMES; - } else if (speedKey == 1) { - playerSpeed = SpeedPortal.HALF; - } else if (speedKey == 2) { - playerSpeed = SpeedPortal.TWO_TIMES; - } else if (speedKey == 3) { - playerSpeed = SpeedPortal.THREE_TIMES; - } else if (speedKey == 4) { - playerSpeed = SpeedPortal.FOUR_TIMES; - } - } - this._level.resetColorTriggers(); - this._level.resetAlphaTriggers(); - this._level.resetRotateTriggers(); - this._level.resetPulseTriggers(); - this._level.resetEnterEffectTriggers(); - this._level.resetMoveTriggers(); - this._level.resetVisibility(); - this._level.additiveContainer.x = -this._cameraX; - this._level.additiveContainer.y = this._cameraY; - this._level.container.x = -this._cameraX; - this._level.container.y = this._cameraY; - this._level.topContainer.x = -this._cameraX; - this._level.topContainer.y = this._cameraY; - this._level.updateVisibility(this._cameraX); - this._level.updateObjectDebugIds(); - this._updateBackground(); - this._applyMirrorEffect(); - if (!this._audio.musicPlaying) { - this._audio.startMusic(); - } - - if (this._player && this._player._hitboxTrail) { - this._player._hitboxTrail = []; - } - - this._physicsFrame = checkpoint.physicsFrame; - if (this._macroBot?.recording == true){ - this._macroBot?.rollbackRecording(this._physicsFrame); - if (this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown || this._lKey.isDown){ - this._macroBot.recordEdge(true, this._physicsFrame); - } else { - this._macroBot.recordEdge(false, this._physicsFrame); - } - } - if (this._macroBot?.playing == true){ - this._macroBot?.rollbackPlayback(this._physicsFrame); - } - } - _onFullscreenChange(_0x310c5b) { - if (!_0x310c5b) { - l(1138); - } - this.time.delayedCall(200, () => this._applyScreenResize()); - } - _applyScreenResize() { - if (this.scale.isFullscreen) { - const _0x5bc34b = window.innerWidth / window.innerHeight; - l(Math.round(screenHeight * _0x5bc34b)); - } - this.scale.setGameSize(screenWidth, screenHeight); - this.scale.refresh(); - this._bg.setSize(screenWidth, screenHeight); - this._pauseBtn.x = screenWidth - 30; - if (this._menuActive) { - this._positionMenuItems(); - } - if (this._paused && this._pauseContainer) { - this._pauseContainer.destroy(); - this._pauseContainer = null; - this._buildPauseOverlay(); - } - this._level.resizeScreen(); - if (!this._menuActive) { - const _0x56287b = this._cameraX; - this._cameraX = this._playerWorldX - centerX; - this._cameraXRef._v = this._cameraX; - this._level.additiveContainer.x = -this._cameraX; - this._level.additiveContainer.y = this._cameraY; - this._level.container.x = -this._cameraX; - this._level.container.y = this._cameraY; - this._level.topContainer.x = -this._cameraX; - this._level.topContainer.y = this._cameraY; - this._level.shiftGroundTiles(this._cameraX - _0x56287b); - this._level.updateGroundTiles(this._cameraY); - this._level.updateVisibility(this._cameraX); - this._level.updateObjectDebugIds(); - this._level.applyEnterEffects(this._cameraX); - const _0xde8a1a = this._playerWorldX - this._cameraX; - this._player.syncSprites(this._cameraX, this._cameraY, 0, this._getMirrorXOffset(_0xde8a1a)); - this._applyMirrorEffect(); - } - } - _updateBackground() { - this._bg.tilePositionX += (this._cameraX - this._prevCameraX) * this._bgSpeedX; - this._prevCameraX = this._cameraX; - this._bg.tilePositionY = this._bgInitY - this._cameraY * this._bgSpeedY; - } - _updateCameraY(_0xc7c517) { - let explosionPiece = this._cameraY; - let _0x1a27be = explosionPiece; - if (this._level.flyCameraTarget !== null) { - _0x1a27be = this._level.flyCameraTarget; - } else { - let _0x2bc8fb = this._state.y; - let _0x259956 = 140; - let _0x5025ec = 80; - let _0x1f7976 = explosionPiece - o + 320; - if (this._state.gravityFlipped) { - if (_0x2bc8fb > _0x1f7976 + _0x5025ec) { - _0x1a27be = _0x2bc8fb - 320 - _0x5025ec + o; - } else if (_0x2bc8fb < _0x1f7976 - _0x259956) { - _0x1a27be = _0x2bc8fb - 320 + _0x259956 + o; - } - } else { - if (_0x2bc8fb > _0x1f7976 + _0x259956) { - _0x1a27be = _0x2bc8fb - 320 - _0x259956 + o; - } else if (_0x2bc8fb < _0x1f7976 - _0x5025ec) { - _0x1a27be = _0x2bc8fb - 320 + _0x5025ec + o; - } - } - } - if (_0x1a27be < 0) { - _0x1a27be = 0; - } - if (_0xc7c517 !== 0) { - explosionPiece += (_0x1a27be - explosionPiece) / (10 / _0xc7c517); - if (explosionPiece < 0) { - explosionPiece = 0; - } - this._cameraY = explosionPiece; - } - } - _quantizeDelta(_0x654f39) { - const speed = window.speedHack || 1; - let _0x578d1b = (_0x654f39 * speed) / 1000 + this._deltaBuffer; - let _0x53e02e = Math.round(_0x578d1b / u); - if (_0x53e02e < 0) { - _0x53e02e = 0; - } - if (_0x53e02e > 60) { - _0x53e02e = 60; - } - let _0xd8019e = _0x53e02e * u; - this._deltaBuffer = _0x578d1b - _0xd8019e; - return _0xd8019e * 60; - } - update(_0x54fa47, deltaTime) { - if (window.isEditor) { - if (window.isEditorPause) return; - const pointer = this.input.activePointer; - this._hitObjects = this.input.hitTestPointer(pointer); - this._handleEditorCamera(deltaTime); - this._updateEditorGrid(); - if (pointer.isDown && !this._isDraggingSlider) { - if (this._isSwipeEnabled) { - if (this._hitObjects.length !== 0) return; - const currentGridX = Math.floor((pointer.x + this._cameraX) / 60) * 60; - const currentGridY = Math.floor((pointer.y + this._cameraY + 20) / 60) * 60; - - if (currentGridX !== this._lastSwipeGridX || currentGridY !== this._lastSwipeGridY) { - this._editorAction(); - this._lastSwipeGridX = currentGridX; - this._lastSwipeGridY = currentGridY; - } - } else { - if (!this._isDragging && this._hitObjects.length !== 0) return; - const dragX = pointer.x - this._clickStartPos.x; - const dragY = pointer.y - this._clickStartPos.y; - const dragDistance = Math.sqrt(dragX * dragX + dragY * dragY); - if (dragDistance > 10) { - this._isDragging = true; - this._cameraX = this._cameraStartX - dragX; - this._cameraY = this._cameraStartY - dragY; - } - } - } - this._updateEditorTimeline(); - return; - } - let rawPercent = (this._playerWorldX / this._level.endXPos) * 100; - rawPercent = Math.min(100, Math.max(0, rawPercent)); - let displayValue; - if (this._levelWon) { - const p = this._interpolatedPercent || 0; - if (window.percentageDecimals) { - displayValue = p.toFixed(2) + "%"; - } else { - displayValue = Math.floor(p) + "%"; - } - } else if (window.percentageDecimals) { - displayValue = rawPercent.toFixed(2) + "%"; - } else { - displayValue = Math.floor(rawPercent) + "%"; - } - this._percentageLabel.setText(displayValue); - this._percentageLabel.setVisible(window.showPercentage && !this._menuActive); - this._startPosGui.setVisible(window.startPosSwitcher && !this._menuActive); - this._noclipIndicator.setVisible(window.noClip && !this._menuActive); - this._accuracyIndicator.setVisible(window.noClip && window.noClipAccuracy && !this._menuActive); - this._deathsIndicator.setVisible(window.noClip && window.noClipAccuracy && !this._menuActive); - this._accuracyIndicator.setText(`${this._player.noclipStats.accuracy.toFixed(2)}%`); - this._deathsIndicator.setText(`${this._player.noclipStats.deaths} Deaths`); - - this._cpsIndicator.setVisible(window.showCPS && !this._menuActive); - if (this._clickHistory && this._clickHistory.length > 0) { - this._clickHistory = this._clickHistory.filter(timestamp => this.time.now - timestamp <= 1000); - this._cpsIndicator.setText(`${this._clickHistory.length} CPS`); - } else { - this._cpsIndicator.setText("0 CPS"); - } - if (this._state.upKeyDown){ - this._cpsIndicator.setTint(0x00ff00); - } else{ - this._cpsIndicator.setTint(0xffffff); - } - this._cpsIndicator.setPosition(10, 10 + (window.noClip * 20) + (window.noClip && window.noClipAccuracy * 40)); - - this._bottedIndicator.setVisible(this._macroBot?.playing); - this._bottedIndicator.setPosition(10, 10 + (window.noClip * 20) + (window.noClip && window.noClipAccuracy * 40) + (window.showCPS * 20)); - if (this._macroBtn){ - this._macroBtn.setVisible(window.macroBot); - } - - this._fpsAccum += deltaTime; - this._fpsFrames++; - if (this._fpsAccum >= 250) { - this._fpsText.setText(Math.round(this._fpsFrames * 1000 / this._fpsAccum)); - this._fpsAccum = 0; - this._fpsFrames = 0; - } - if (this._paused) { - if (!this._updateLogPopup && (this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown || this._lKey.isDown) && !this._spaceWasDown && !this._settingsPopup) { - setTimeout(() => { - this._resumeGame(); - }, 75); - } - this._deltaBuffer = 0; - return; - } - if (this._menuActive) { - const _anyOverlayOpen = this._iconOverlay || this._creatorOverlay || this._searchOverlay || - this._onlineLevelsOverlay || this._settingsLayerOverlay || this._settingsPopup || - this._infoPopup || this._newgroundsPopup || this._statsLayerOverlay || this._updateLogPopup; - if (!_anyOverlayOpen && (this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown) && !this._spaceWasDown) { - if (this._creatorMenuOpen) return; - this._spaceWasDown = true; - if (this._levelSelectOverlay) { - this._audio.playEffect("playSound_01", { volume: 1 }); - this._closeLevelSelect(true); - this._audio.stopMusic(); - this.game.registry.set("autoStartGame", true); - this.scene.restart(); - return; - } - this._openLevelSelect(); - return; - } - const _arrowLeft = this._leftKey.isDown || this._aKey.isDown; - const _arrowRight = this._rightKey.isDown || this._dKey.isDown; - if (!_anyOverlayOpen && (_arrowLeft || _arrowRight) && !this._arrowWasDown) { - if (this._levelSelectOverlay) { - if (_arrowLeft) window.leftbuttoncallback(); - else window.rightbuttoncallback(); - } - } - this._arrowWasDown = _arrowLeft || _arrowRight; - this._spaceWasDown = this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown || this._lKey.isDown; - const menuDelta = Math.min(deltaTime / 1000 * 60, 2); - const menuSpeed = 0.85; - this._menuCameraX = (this._menuCameraX || 0) + menuDelta * playerSpeed * d * menuSpeed; - const _0x38afac = this._cameraX; - this._cameraX = this._menuCameraX; - this._updateBackground(); - this._cameraX = _0x38afac; - this._prevCameraX = this._menuCameraX; - this._cameraXRef._v = this._menuCameraX; - this._level.stepGroundAnimation(deltaTime / 1000); - this._level.updateGroundTiles(this._cameraY); - if (this._menuRainbowTime === undefined) this._menuRainbowTime = 0; - this._menuRainbowTime += deltaTime / 1000; - const _rainbowHue = (this._menuRainbowTime * 15) % 360; - const _rainbowHex = Phaser.Display.Color.HSVToRGB(_rainbowHue / 360, 0.85, 1.0).color; - const _groundHex = Phaser.Display.Color.HSVToRGB(_rainbowHue / 360, 0.85, 1.0).color; - this._bg.setTint(_rainbowHex); - this._level.setGroundColor(_groundHex); - return; - } - if (this._slideIn) { - const slideDelta = this._quantizeDelta(deltaTime); - this._playerWorldX += slideDelta * playerSpeed * d; - const slideGroundSpeed = 0.25; - this._slideGroundX = (this._slideGroundX || this._cameraX) + slideDelta * playerSpeed * d * slideGroundSpeed; - this._cameraXRef._v = this._slideGroundX; - const slidePlayerScreenX = this._playerWorldX - this._cameraX; - this._player.updateGroundRotation(slideDelta * d); - this._player.syncSprites(this._cameraX, this._cameraY, deltaTime / 1000, this._getMirrorXOffset(slidePlayerScreenX)); - this._level.additiveContainer.x = -this._cameraX; - this._level.additiveContainer.y = this._cameraY; - this._level.container.x = -this._cameraX; - this._level.container.y = this._cameraY; - this._level.topContainer.x = -this._cameraX; - this._level.topContainer.y = this._cameraY; - this._level.updateVisibility(this._cameraX); - this._level.updateObjectDebugIds(); - this._updateBackground(); - this._level.stepGroundAnimation(deltaTime / 1000); - this._level.updateGroundTiles(this._cameraY); - this._applyMirrorEffect(); - if (this._playerWorldX >= 0) { - this._slideIn = false; - this._deltaBuffer = 0; - this._playerWorldX = 0; - this._cameraX = this._playerWorldX - centerX; - this._cameraXRef._v = this._cameraX; - const _0x490749 = this._cameraX - this._slideGroundX; - this._level.shiftGroundTiles(_0x490749); - if (this._firstPlay) { - this._firstPlay = false; - this._audio.startMusic(); - } - this._pauseBtn.setVisible(true).setAlpha(0); - this.tweens.add({ - targets: this._pauseBtn, - alpha: 75 / 255, - duration: 500 - }); - if (this._practiceModeBarContainer) { - this._practiceModeBarContainer.setVisible(this._practicedMode && this._practicedMode.practiceMode); - } - } - return; - } - this._applyJumpInput = () => { - const jumpHeld = this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown || this._lKey.isDown; - if (!this._updateLogPopup && jumpHeld && !this._spaceWasDown) { - this._pushButton(); - } else if (!jumpHeld && this._spaceWasDown) { - this._releaseButton(); - } - this._spaceWasDown = jumpHeld; - }; - - const objectsUnderPointer = this.input.manager.hitTest( - this.input.activePointer, - this._startPosGui.list, - this.cameras.main - ); - const isOverUI = objectsUnderPointer.length > 0; - const fromClick = this.input.activePointer.isDown; - const cancelInput = isOverUI && fromClick; - - if (!!this.input.activePointer.isDown && !this._state.upKeyDown && !this._state.isDead) { - this._state.upKeyDown = true; - this._state.queuedHold = true; - } - if (cancelInput) { - this._state.upKeyDown = false; - this._state.upKeyPressed = false; - this._state.queuedHold = false; - } - this._level.updateEndPortalY(this._cameraY, this._state.isFlying || this._state.isWave || this._state.isUfo); - if (!this._levelWon && !this._state.isDead && this._level.endXPos > 0) { - const _0x448396 = 600; - if (this._playerWorldX >= this._level.endXPos - _0x448396) { - this._levelWon = true; - this._endPortalGameY = this._level._endPortalGameY || 240; - this._triggerEndPortal(); - } - } - if (this._levelWon) { - this._deltaBuffer = 0; - if (this._endCamTween) { - const visMaxSection = this._endCamTween; - this._cameraX = visMaxSection.fromX + (visMaxSection.toX - visMaxSection.fromX) * visMaxSection.p; - this._cameraY = visMaxSection.fromY + (visMaxSection.toY - visMaxSection.fromY) * visMaxSection.p; - } - this._cameraXRef._v = this._cameraX; - this._level.additiveContainer.x = -this._cameraX; - this._level.additiveContainer.y = this._cameraY; - this._level.container.x = -this._cameraX; - this._level.container.y = this._cameraY; - this._level.topContainer.x = -this._cameraX; - this._level.topContainer.y = this._cameraY; - this._updateBackground(); - this._level.stepGroundAnimation(deltaTime / 1000); - this._level.updateGroundTiles(this._cameraY); - this._applyMirrorEffect(); - return; - } - if (this._state.isDead) { - if (!this._deathSoundPlayed) { - if (!this._practicedMode.practiceMode) { - this._audio.stopMusic(); - } - this._audio.playEffect("explode_11", { - volume: 0.65 * this._sfxVolume - }); - this._deathSoundPlayed = true; - this._totalDeaths++; - localStorage.setItem("gd_totalDeaths", this._totalDeaths); - } - if (!this._newBestShown) { - this._newBestShown = true; - let _0x435587 = this._level.endXPos || 6000; - let _0x169d53 = this._playerWorldX; - this._lastPercent = Math.min(99, Math.max(0, Math.floor(_0x169d53 / _0x435587 * 100))); - if (this._lastPercent > this._bestPercent && !this._practicedMode.practiceMode) { - this._bestPercent = this._lastPercent; - localStorage.setItem("bestPercent_" + (window.currentlevel[2] || "level_1"), this._bestPercent); - this._hadNewBest = true; - this._showNewBest(); - } - if (this._practicedMode.practiceMode) { - const pracKey = "practiceBestPercent_" + (window.currentlevel[2] || "level_1"); - const prevPracticeBest = parseFloat(localStorage.getItem(pracKey) || "0"); - if (this._lastPercent > prevPracticeBest) { - localStorage.setItem(pracKey, this._lastPercent); - this._practiceBestPercent = this._lastPercent; - if (this._updatePracticeHUDBar) this._updatePracticeHUDBar(); - } - } - } - this._player.updateExplosionPieces(deltaTime); - this._deathTimer += deltaTime; - let _0x237728 = this._hadNewBest ? 1400 : 1000; - if (this._deathTimer > _0x237728) { - if (this._practicedMode.practiceMode) { - this._respawnFromCheckpoint(); - } else { - this._restartLevel(); - } - } - return; - } - this._playTime += deltaTime / 1000; - this._audio.update(deltaTime / 1000); - - window._animTimer += deltaTime; - for (let _as of window._animatedSprites) { - if (window._animTimer - (_as._lastAnimSwap || 0) >= _as._animInterval) { - _as._lastAnimSwap = window._animTimer; - _as._animIdx = (_as._animIdx + 1) % _as._animFrames.length; - let _fr = getAtlasFrame(_as._animScene, _as._animFrames[_as._animIdx]); - if (_fr) { - try { - _as.setTexture(_fr.atlas, _fr.frame); - } catch(e){} - } - } - } - if (this._level && this._level._sawSprites) { - const sawRotation = deltaTime * 0.003; - for (let _saw of this._level._sawSprites) { - if (_saw && _saw.active) _saw.rotation += sawRotation; - } - } - this._level.updateAudioScale(this._audio.getMeteringValue()); - if (!this._orbGfx) { - this._orbGfx = this.add.graphics().setDepth(54).setBlendMode(S); - } - this._orbParticleAngle = ((this._orbParticleAngle || 0) + deltaTime * 0.004) % (Math.PI * 2); - this._orbGfxTimer = (this._orbGfxTimer || 0) + deltaTime; - if (this._orbGfxTimer > 33) { - this._orbGfxTimer = 0; - this._orbGfx.clear(); - if (this._level && this._level._orbSprites && this._level.container) { - try { - let _drawn = 0; - const _orbTypeColorMap = { - 36: 0xfffb57, - 84: 0x58ffff, - 141: 0xff52f0, - 444: 0xff00d2, - 1022: 0x63ff5f, - 1330: 0xffffff, - 1333: 0xff6326, - 1594: 0x6cff6b, - 1704: 0x04ff04, - 1751: 0xff00d2 - }; - for (let _oSpr of this._level._orbSprites) { - if (_drawn >= 4) break; - if (!_oSpr || !_oSpr.visible || !_oSpr.active || !_oSpr.scene) continue; - const _sx = _oSpr.x + this._level.container.x; - const _sy = _oSpr.y + this._level.container.y; - if (_sx < -40 || _sx > screenWidth + 40 || _sy < -40 || _sy > screenHeight + 40) continue; - _drawn++; - const _orbTypeTint = _orbTypeColorMap[_oSpr._orbId]; - for (let _pi = 0; _pi < 5; _pi++) { - const _orbitSpeed = 0.7 + (_pi % 3) * 0.35; - const _orbitR = 34 + (_pi * 5 % 17); - const _ang = this._orbParticleAngle * _orbitSpeed + (_pi * Math.PI * 2 / 5); - const _px = _sx + Math.cos(_ang) * _orbitR; - const _py = _sy + Math.sin(_ang) * (_orbitR * 0.85); - const _size = (window.orbParticleSize || 3.5) + (_pi % 3) * 1.0; - const _alpha = 0.5 + (_pi % 4) * 0.12; - this._orbGfx.fillStyle(_orbTypeTint, _alpha); - this._orbGfx.fillRect(_px - _size, _py - _size, _size * 2, _size * 2); - } - } - } catch(e) {} - } - } - let quantizedDelta = this._quantizeDelta(deltaTime); - let subSteps = quantizedDelta > 0 ? Math.max(1, Math.round(quantizedDelta * 4)) : 0; - if (subSteps > 60) { - subSteps = 60; - } - let subStepDelta = subSteps > 0 ? quantizedDelta / subSteps : 0; - let verticalDelta = subStepDelta * d; - let horizontalDelta = subStepDelta * playerSpeed * d; - const initialY = this._state.y; - for (let i = 0; i < subSteps; i++) { - this._state.lastY = this._state.y; - this._physicsFrame++; - this._applyJumpInput(); - if (this._macroBot?.playing) { - this._macroBot.step(this._physicsFrame); - } - this._player.updateJump(verticalDelta); - this._state.y += this._state.yVelocity * verticalDelta; - this._player.checkCollisions(this._playerWorldX - centerX); - this._playerWorldX += horizontalDelta; - if (this._isDual && !this._state2.isDead) { - this._state2.upKeyDown = this._state.upKeyDown; - this._state2.upKeyPressed = this._state.upKeyPressed; - this._state2.queuedHold = this._state.queuedHold; - this._state2.lastY = this._state2.y; - this._player2.updateJump(verticalDelta); - this._state2.y += this._state2.yVelocity * verticalDelta; - this._player2.checkCollisions(this._playerWorldX - centerX - horizontalDelta); - if (this._state2.isDead && !this._state.isDead) { - this._player.killPlayer(); - } - } - if (!this._state.isFlying && !this._state.isWave && !this._state.isUfo) { - if (this._state.isBall) { - const ballOnSurface = this._state.onGround || this._state.onCeiling; - this._player.updateBallRoll(horizontalDelta, ballOnSurface); - } else if (this._state.onGround) { - this._player.updateGroundRotation(verticalDelta); - } else if (this._player.rotateActionActive) { - this._player.updateRotateAction(u); - } else if (this._state.isDashing) { - this._player.updateDashRotation(u); - } - } - - if (!this._player._scene._slideIn){ - if (!this._player._hitboxTrail) this._player._hitboxTrail = []; - if (!this._player.p.isDead) { - this._player._hitboxTrail.push({ x: this._playerWorldX, y: this._player.p.y, rotation: this._player._rotation }); - if (this._player._hitboxTrail.length > 180) this._player._hitboxTrail.shift(); - } - } - } - this._state.lastY = initialY; - this._state.ignorePortals = false; - this._state2.ignorePortals = false; - if (!this._endCameraOverride) { - const cameraOffsetX = this._playerWorldX - centerX; - if (this._level.endXPos > 0) { - const maxCameraX = this._level.endXPos - screenWidth; - if (cameraOffsetX >= maxCameraX - 200) { - this._endCameraOverride = true; - this._cameraX = cameraOffsetX; - const endCameraY = -140 + (this._level._endPortalGameY || 240); - const easingPower = 1.8; - const easeInOutCubic = t => t < 0.5 ? Math.pow(t * 2, easingPower) / 2 : 1 - Math.pow((1 - t) * 2, easingPower) / 2; - this._endCamTween = { - p: 0, - fromX: this._cameraX, - toX: maxCameraX, - fromY: this._cameraY, - toY: endCameraY - }; - this.tweens.add({ - targets: this._endCamTween, - p: 1, - duration: 1200, - ease: easeInOutCubic - }); - } else { - this._cameraX = cameraOffsetX; - } - } else { - this._cameraX = cameraOffsetX; - } - } - if (this._endCameraOverride && this._endCamTween) { - const tween = this._endCamTween; - this._cameraX = tween.fromX + (tween.toX - tween.fromX) * tween.p; - this._cameraY = tween.fromY + (tween.toY - tween.fromY) * tween.p; - } - this._cameraXRef._v = this._cameraX; - if (!this._endCameraOverride) { - this._updateCameraY(quantizedDelta); - } - this._level.additiveContainer.x = -this._cameraX; - this._level.additiveContainer.y = this._cameraY; - this._level.container.x = -this._cameraX; - this._level.container.y = this._cameraY; - this._level.topContainer.x = -this._cameraX; - this._level.topContainer.y = this._cameraY; - let playerX = this._playerWorldX; - for (let colorTrigger of this._level.checkColorTriggers(playerX)) { - this._colorManager.triggerColor(colorTrigger.index, colorTrigger.color, colorTrigger.duration); - if (colorTrigger.tintGround) { - this._colorManager.triggerColor(gs, colorTrigger.color, colorTrigger.duration); - } - } - this._level.checkMoveTriggers(playerX); - this._level.stepMoveTriggers(deltaTime / 1000); - this._level.checkAlphaTriggers(playerX); - this._level.stepAlphaTriggers(deltaTime / 1000); - this._level.checkRotateTriggers(playerX); - this._level.stepRotateTriggers(deltaTime / 1000); - this._level.checkPulseTriggers(playerX); - this._level.stepPulseTriggers(deltaTime / 1000, this._colorManager); - this._colorManager.step(deltaTime / 1000); - this._level.applyColorChannels(this._colorManager); - this._bg.setTint(this._colorManager.getHex(fs)); - this._level.setGroundColor(this._colorManager.getHex(gs)); - this._level.updateVisibility(this._cameraX); - this._level.updateObjectDebugIds(); - this._level.checkEnterEffectTriggers(playerX); - this._level.applyEnterEffects(this._cameraX); - this._glitterCenterX = this._cameraX + screenWidth / 2; - this._glitterCenterY = T - this._cameraY; - this._updateBackground(); - this._level.stepGroundAnimation(deltaTime / 1000); - this._level.updateGroundTiles(this._cameraY); - if (this._state.isFlying) { - this._player.updateShipRotation(quantizedDelta); - } - const playerScreenX = this._playerWorldX - this._cameraX; - this._player.syncSprites(this._cameraX, this._cameraY, deltaTime / 1000, this._getMirrorXOffset(playerScreenX)); - if (this._isDual && !this._state2.isDead) { - this._player2.syncSprites(this._cameraX, this._cameraY, deltaTime / 1000, this._getMirrorXOffset(playerScreenX)); - } - this._applyMirrorEffect(); - } - -_handleEditorCamera = (delta) => { - const camSpeed = 15; - const cursors = this.input.keyboard.createCursorKeys(); - const wasd = this.input.keyboard.addKeys('W,A,S,D'); - - if (cursors.left.isDown || wasd.A.isDown) { - this._cameraX -= camSpeed; - } else if (cursors.right.isDown || wasd.D.isDown) { - this._cameraX += camSpeed; - } - - if (cursors.up.isDown || wasd.W.isDown) { - this._cameraY -= camSpeed; - } else if (cursors.down.isDown || wasd.S.isDown) { - this._cameraY += camSpeed; - } - - this._level.container.x = -this._cameraX; - this._level.container.y = -this._cameraY; - this._level.additiveContainer.x = -this._cameraX; - this._level.additiveContainer.y = -this._cameraY; - this._level.topContainer.x = -this._cameraX; - this._level.topContainer.y = -this._cameraY; - - this._bg.tilePositionX = this._cameraX * 0.1; - this._bg.tilePositionY = this._bgInitY + this._cameraY * 0.1; -}; - -_initEditorLogic = () => { - if (this._editorGridGraphics) this._editorGridGraphics.destroy(); - this._editorGridGraphics = this.add.graphics().setDepth(5); - const allObj = window.allobjects(); - this._totalIds = Object.keys(allObj).length; - this._editorPage = 0; - this._maxPerPage = 12; - this._isSwipeEnabled = false; - this._lastSwipeGridX; - this._lastSwipeGridY; - this._clickStartPos = { x: 0, y: 0 }; - this._isDragging = false; - this._isDraggingSlider = false; - this._editorTab = "build"; - window.editorSelectedObject = -1; - this._editorZoom = 1.0; - this.input.on('pointerdown', (pointer) => { - this._clickStartPos.x = pointer.x; - this._clickStartPos.y = pointer.y; - this._cameraStartX = this._cameraX; - this._cameraStartY = this._cameraY; - this._isDragging = false; - }); - this.input.on('pointerup', (pointer) => { - if (!this._isSwipeEnabled && !this._isDragging && !this._isDraggingSlider && this._hitObjects.length === 0) { - this._editorAction(); - } - this._lastSwipeGridX = -1; - this._lastSwipeGridY = -1; - this._isDragging = false; - this._isDraggingSlider = false; - }); - this._createEditorGui(); -}; - -_createEditorGui = () => { - const centerX = screenWidth / 2; - const bottomY = screenHeight - 100; - - this._editorGui = this.add.container(screenWidth - 40, 40).setScrollFactor(0).setDepth(1000); - const editorPause = this.add.image(0, 0, "GJ_GameSheet03", "GJ_pauseBtn_001.png").setInteractive().setFlipX(true).setAngle(-90); - this._deleteButton = this.add.image(50, 40, "GJ_GameSheet03", "GJ_trashBtn_001.png").setInteractive(); - this._editorGui.add(editorPause, this._deleteButton); - this._makeBouncyButton(editorPause, 1.0, () => this._showEditorPauseMenu(true), () => true); - this._makeBouncyButton(this._deleteButton, 0.9, () => this._deleteSelectedObject(), () => true); - this._initEditorPauseMenu(); - - this._toolbox = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); - - const bg = this.add.rectangle(0, screenHeight, screenWidth, 200, 0x000000).setOrigin(0, 1).setAlpha(0.75).setInteractive(); - this._toolbox.add(bg); - - this._leftArrow = this.add.image(screenWidth / 2 - 330, screenHeight - 100, "GJ_GameSheet03", "GJ_arrow_02_001.png") - .setInteractive().setScale(0.7); - - this._rightArrow = this.add.image(screenWidth / 2 + 330, screenHeight - 100, "GJ_GameSheet03", "GJ_arrow_02_001.png") - .setInteractive().setScale(0.7).setFlipX(true); - - this._toolbox.add([this._leftArrow, this._rightArrow]); - - const swipeX = centerX + 450; - const swipeY = screenHeight - 100; - - this._swipeContainer = this.add.container(swipeX, swipeY).setDepth(1001); - this._toolbox.add(this._swipeContainer); - - this._swipeBg = this.add.image(0, 0, "GJ_button01").setInteractive().setScale(0.8); - this._swipeText = this.add.bitmapText(-1, -2, "bigFont", "swipe", 16).setOrigin(0.5); - - this._swipeContainer.add([this._swipeBg, this._swipeText]); - - this._makeBouncyButton(this._swipeBg, 0.8, () => { - this._isSwipeEnabled = !this._isSwipeEnabled; - - if (this._isSwipeEnabled) { - this._swipeBg.setTexture("GJ_button02"); - } else { - this._swipeBg.setTexture("GJ_button01"); - } - }); - - const tabX = (screenWidth / 2) - 475; - const tabYStart = screenHeight - 150; - const tabSpacing = 55; - - this._separatorLeft = this.add.image(tabX + 100, screenHeight - 100, "GJ_GameSheet03", "edit_vLine_001.png"); - this._toolbox.add(this._separatorLeft); - - this._separatorRight = this.add.image(centerX + 375, screenHeight - 100, "GJ_GameSheet03", "edit_vLine_001.png"); - this._toolbox.add(this._separatorRight); - - const tabs = [ - { id: "build", frame: "edit_buildBtn_001.png" }, - { id: "edit", frame: "edit_editBtn_001.png" }, - { id: "delete", frame: "edit_deleteBtn_001.png" } - ]; - - this._tabButtons = {}; - tabs.forEach((tab, i) => { - const btn = this.add.image(tabX, tabYStart + (i * tabSpacing), "GJ_GameSheet03", tab.frame).setInteractive(); - this._toolbox.add(btn); - this._tabButtons[tab.id] = btn; - this._makeBouncyButton(btn, 1, () => { - this._editorTab = tab.id; - this._editorPage = 0; - this._updateTabVisuals(); - this._buildObjectGrid(); - }); - }); - - this._sideButtons = this.add.container(screenWidth - 48, 120).setScrollFactor(0).setDepth(1000); - this._copyPasteBtn = this.add.image(0, 0, "GJ_GameSheet03", "GJ_duplicateObjectBtn2_001.png").setInteractive().setAngle(90).setFlipY(true).setScale(1); - this._deselectBtn = this.add.image(0, 75, "GJ_GameSheet03", "GJ_deSelBtn2_001.png").setInteractive().setAngle(90).setFlipY(true).setScale(1); - - this._sideButtons.add([this._copyPasteBtn, this._deselectBtn]); - - this._makeBouncyButton(this._copyPasteBtn, 1, () => { - this._duplicateSelectedObject(); - }); - - this._makeBouncyButton(this._deselectBtn, 1, () => { - this._clearEditorSelection(); - }); - - this._zoomButtons = this.add.container(48, screenHeight / 2 - 20).setScrollFactor(0).setDepth(1000); - - const zoomInBtn = this.add.image(0, 0, "GJ_GameSheet03", "GJ_zoomInBtn_001.png").setAngle(90).setFlipY(true).setInteractive().setScale(0.9); - const zoomOutBtn = this.add.image(0, 75, "GJ_GameSheet03", "GJ_zoomOutBtn_001.png").setAngle(90).setFlipY(true).setInteractive().setScale(0.9); - - this._zoomButtons.add([zoomInBtn, zoomOutBtn]); - - this._makeBouncyButton(zoomInBtn, 0.9, () => this._adjustZoom(0.1)); - this._makeBouncyButton(zoomOutBtn, 0.9, () => this._adjustZoom(-0.1)); - - this._zoomText = this.add.bitmapText(screenWidth / 2, 80, "bigFont", "Zoom: 1.00x", 40).setOrigin(0.5).setScrollFactor(0).setDepth(2000).setAlpha(0); - - this.input.on('wheel', (pointer, gameObjects, deltaX, deltaY, deltaZ) => { - const zoomAmount = deltaY > 0 ? -0.1 : 0.1; - this._adjustZoom(zoomAmount, pointer.x, pointer.y); - }); - - this._updateEditorActionButtons(); - this._updateTabVisuals(); - this._buildObjectGrid(); - this._initEditorTimeline(); -}; - -_adjustZoom = (delta, anchorX = screenWidth / 2, anchorY = screenHeight / 2) => { - const oldZoom = this._editorZoom; - let newZoom = oldZoom + delta; - newZoom = Phaser.Math.Clamp(newZoom, 0.1, 4.0); - if (oldZoom === newZoom) return; - const worldAnchorX = (this._cameraX + anchorX) / oldZoom; - const worldAnchorY = (this._cameraY + anchorY) / oldZoom; - this._editorZoom = newZoom; - this._level.topContainer.setScale(newZoom); - this._level.additiveContainer.setScale(newZoom); - this._level.container.setScale(newZoom); - this._cameraX = (worldAnchorX * newZoom) - anchorX; - this._cameraY = (worldAnchorY * newZoom) - anchorY; - this._updateEditorGrid(); - this._zoomText.setText(`Zoom: ${newZoom.toFixed(2)}x`); - this._zoomText.setAlpha(1); - this.tweens.killTweensOf(this._zoomText); - this.tweens.add({ - targets: this._zoomText, - alpha: 0, - duration: 500, - delay: 500, - ease: 'Power1' - }); -}; - -_updateTabVisuals = () => { - Object.keys(this._tabButtons).forEach(id => { - const isSelected = this._editorTab === id; - const btn = this._tabButtons[id]; - let frameName = btn.frame.name.replace("SBtn", "Btn"); - if (isSelected) { - frameName = frameName.replace("Btn", "SBtn"); - } - btn.setFrame(frameName); - }); -}; - -_getSheetForFrameThingy = (frameName) => { - const sheets = ["GJ_WebSheet", "GJ_GameSheet", "GJ_GameSheet02", "GJ_GameSheet03", "GJ_GameSheet04"]; - for (const key of sheets) { - if (this.textures.exists(key) && this.textures.get(key).has(frameName)) { - return key; - } - } -}; - -_buildObjectGrid = () => { - if (this._gridContainer) this._gridContainer.destroy(); - if (this._pageDotsContainer) this._pageDotsContainer.destroy(); - if (this._categoryContainer) this._categoryContainer.destroy(); - - const OBJECT_CATEGORIES = [ - { id: "blocks", icon: "tab1", types: ["solid", "slope"] }, - { id: "hazards", icon: "tab2", types: ["hazard", "spike"] }, - { id: "orbs", icon: "tab3", types: ["ring", "pad", "portal", "speed"] }, - { id: "deco", icon: "tab4", types: ["deco"] }, - { id: "triggers",icon: "tab5", types: ["trigger"] }, - ]; - - this._gridContainer = this.add.container(0, 0); - this._toolbox.add(this._gridContainer); - - const allObjectsData = window.allobjects(); - const itemsForGrid = []; - this._currentBuildCategory = this._currentBuildCategory || "blocks"; - - if (this._editorTab === "build") { - this._categoryContainer = this.add.container(screenWidth / 2, screenHeight - 218); - this._toolbox.add(this._categoryContainer); - const catSpacing = 85; - const catStartX = -((OBJECT_CATEGORIES.length - 1) * catSpacing) / 2; - OBJECT_CATEGORIES.forEach((cat, i) => { - const isSelected = this._currentBuildCategory === cat.id; - const btn = this.add.image(catStartX + (i * catSpacing), 0, cat.icon).setInteractive().setScale(0.12).setTint(isSelected ? 0x888888 : 0xffffff).setAlpha(isSelected ? 1 : 0.33); - this._categoryContainer.add(btn); - this._makeBouncyButton(btn, 0.12, () => { - this._currentBuildCategory = cat.id; - this._editorPage = 0; - this._buildObjectGrid(); - }); - }); - const activeCatDef = OBJECT_CATEGORIES.find(c => c.id === this._currentBuildCategory); - for (let i = 1; i <= this._totalIds; i++) { - const def = getObjectFromId(i); - const rawDef = allObjectsData[String(i)]; - - if (def && rawDef) { - if (activeCatDef.types.includes(rawDef.type)) { - itemsForGrid.push({ type: "object", id: i, frame: def.frame }); - } - } - } - } else if (this._editorTab === "edit") { - const moveActions = [ - { dx: 0, dy: -3, icon: "edit_upBtn_001.png", angle: 0, scale: 1, flipX: false }, - { dx: 0, dy: 3, icon: "edit_upBtn_001.png", angle: 180, scale: 1, flipX: false }, - { dx: -3, dy: 0, icon: "edit_upBtn_001.png", angle: 270, scale: 1, flipX: false }, - { dx: 3, dy: 0, icon: "edit_upBtn_001.png", angle: 90, scale: 1, flipX: false }, - - { dx: 0, dy: -60, icon: "edit_upBtn2_001.png", angle: 90, scale: 1, flipX: false }, - { dx: 0, dy: 60, icon: "edit_upBtn2_001.png", angle: 270, scale: 1, flipX: false }, - { dx: -60, dy: 0, icon: "edit_upBtn2_001.png", angle: 0, scale: 1, flipX: false }, - { dx: 60, dy: 0, icon: "edit_upBtn2_001.png", angle: 180, scale: 1, flipX: false }, - - { dx: 0, dy: -300, icon: "edit_upBtn3_001.png", angle: 90, scale: 1, flipX: false }, - { dx: 0, dy: 300, icon: "edit_upBtn3_001.png", angle: 270, scale: 1, flipX: false }, - { dx: -300, dy: 0, icon: "edit_upBtn3_001.png", angle: 0, scale: 1, flipX: false }, - { dx: 300, dy: 0, icon: "edit_upBtn3_001.png", angle: 180, scale: 1, flipX: false }, - - { dx: 0, dy: -1, icon: "edit_upBtn_001.png", angle: 0, scale: 0.7, flipX: false }, - { dx: 0, dy: 1, icon: "edit_upBtn_001.png", angle: 180, scale: 0.7, flipX: false }, - { dx: -1, dy: 0, icon: "edit_upBtn_001.png", angle: 270, scale: 0.7, flipX: false }, - { dx: 1, dy: 0, icon: "edit_upBtn_001.png", angle: 90, scale: 0.7, flipX: false }, - - { dx: 0, dy: -30, icon: "edit_upBtn5_001.png", angle: 0, scale: 1, flipX: false }, - { dx: 0, dy: 30, icon: "edit_upBtn5_001.png", angle: 180, scale: 1, flipX: false }, - { dx: -30, dy: 0, icon: "edit_upBtn5_001.png", angle: 270, scale: 1, flipX: false }, - { dx: 30, dy: 0, icon: "edit_upBtn5_001.png", angle: 90, scale: 1, flipX: false } - ]; - moveActions.forEach(a => itemsForGrid.push({ type: "action", subType: "move", ...a })); - - const flipActions = [ - { axis: "x", icon: "edit_flipYBtn_001.png", angle: 90, scale: 0.8, flipX: false }, - { axis: "y", icon: "edit_flipXBtn_001.png", angle: 90, scale: 0.8, flipX: false } - ]; - flipActions.forEach(a => itemsForGrid.push({ type: "action", subType: "flip", ...a })); - - const rotateActions = [ - { degrees: 90, icon: "edit_ccwBtn_001.png", angle: 0, scale: 0.8, flipX: true }, - { degrees: -90, icon: "edit_ccwBtn_001.png", angle: 0, scale: 0.8, flipX: false }, - { degrees: 45, icon: "edit_rotate45rBtn_001.png", angle: 0, scale: 0.85, flipX: false }, - { degrees: -45, icon: "edit_rotate45lBtn_001.png", angle: 0, scale: 0.85, flipX: false } - ]; - rotateActions.forEach(a => itemsForGrid.push({ type: "action", subType: "rotate", ...a })); - } else if (this._editorTab === "delete") { - itemsForGrid.push({ - type: "delete", - icon: "edit_delBtn_001.png" - }); - } - - if (this._editorTab === "build") { - window.totalPages = Math.ceil(itemsForGrid.length / this._maxPerPage); - } else if (this._editorTab === "edit") { - window.totalPages = 3; - } else if (this._editorTab === "delete"){ - window.totalPages = 1; - } - - if (this._editorPage >= window.totalPages) this._editorPage = 0; - - const showArrows = this._editorTab !== "delete"; - if (this._leftArrow) { - this._leftArrow.setVisible(showArrows); - this._leftArrow.disableInteractive(); - if (showArrows) this._leftArrow.setInteractive(); - } - if (this._rightArrow) { - this._rightArrow.setVisible(showArrows); - this._rightArrow.disableInteractive(); - if (showArrows) this._rightArrow.setInteractive(); - } - - if (showArrows) { - this._makeBouncyButton(this._leftArrow, 0.8, () => { - if (this._editorTab === "edit") { - this._editorPage = (this._editorPage > 0) ? this._editorPage - 1 : 2; - } else { - this._editorPage = (this._editorPage > 0) ? this._editorPage - 1 : window.totalPages - 1; - } - - this._buildObjectGrid(); - }); - - this._makeBouncyButton(this._rightArrow, 0.8, () => { - this._editorPage = (this._editorPage < window.totalPages - 1) ? this._editorPage + 1 : 0; - this._buildObjectGrid(); - }); - } - - if (this._editorTab !== "delete") { - this._pageDotsContainer = this.add.container(0, 0); - this._toolbox.add(this._pageDotsContainer); - - const dotSpacing = 18; - const dotsStartX = (screenWidth / 2) - ((window.totalPages - 1) * dotSpacing) / 2; - const dotsY = screenHeight - 10; - - for (let i = 0; i < window.totalPages; i++) { - const dot = this.add.circle( - dotsStartX + (i * dotSpacing), - dotsY, - 4, - i === this._editorPage ? 0xffffff : 0x888888 - ); - if (i === this._editorPage) { - dot.setStrokeStyle(1, 0xffffff, 0.5); - } - this._pageDotsContainer.add(dot); - } - } - - const startIdx = this._editorPage * this._maxPerPage; - const pageItems = this._editorTab === "delete" - ? itemsForGrid - : itemsForGrid.slice(startIdx, startIdx + this._maxPerPage); - - const paddingX = 90; - const paddingY = 80; - const cols = 6; - const startX = (screenWidth / 2) - ((cols - 1) * paddingX) / 2; - const startY = screenHeight - 140; - - pageItems.forEach((item, index) => { - const col = index % cols; - const row = Math.floor(index / cols); - - const x = startX + (col * paddingX); - const y = startY + (row * paddingY); - - if (item.type === "object") { - const btnBg = this.add.image(x, y, "GJ_GameSheet03", "GJ_checkOff_001.png") - .setScale(1.2) - .setInteractive(); - - const sheet = this._getSheetForFrameThingy(item.frame); - const icon = this.add.image(x, y, sheet, item.frame); - - const targetSize = 64; - const maxDim = Math.max(icon.width, icon.height); - const scaleMultiplier = targetSize / maxDim; - - icon.setScale(Math.min(scaleMultiplier, 0.6)); - - if (window.selectedObjId === item.id) btnBg.setTint(0x888888); - - this._gridContainer.add([btnBg, icon]); - - this._makeBouncyButton(btnBg, 1.2, () => { - window.selectedObjId = item.id; - this._buildObjectGrid(); - }); - } else if (item.type === "action") { - const btn = this.add.image(x, y, "GJ_button01") - .setInteractive() - .setScale(0.92); - - const icon = this.add.image(x, y, "GJ_GameSheet03", item.icon) - .setAngle(item.angle) - .setScale(item.scale) - .setFlipX(item.flipX); - - this._gridContainer.add([btn, icon]); - - this._makeBouncyButton(btn, 0.92, () => { - if (item.subType === "move") { - this._moveObject(item.dx, item.dy); - } else if (item.subType === "rotate") { - this._rotateObject(item.degrees); - } else if (item.subType === "flip") { - this._flipObject(item.axis); - } - }); - } else if (item.type === "delete") { - const btnBg = this.add.image(x, y, "GJ_GameSheet03", "GJ_checkOff_001.png").setScale(1.2).setInteractive(); - - const icon = this.add.image(x, y, "GJ_GameSheet03", item.icon); - - this._deleteGridButton = btnBg; - - this._gridContainer.add([btnBg, icon]); - - this._makeBouncyButton(btnBg, 1.2, () => { - this._deleteSelectedObject(); - }); - - this._updateEditorActionButtons(); - } - }); -}; - -_moveObject = (dx, dy) => { - const selectedIndex = window.editorSelectedObject; - if (selectedIndex === -1) return; - - const collider = this._level.objects[selectedIndex]; - const sprites = this._level.objectSprites[selectedIndex]; - const saveObj = window.levelObjects[selectedIndex]; - - if (!saveObj) return; - - if (collider) { - collider.x += dx; collider.y += dy; - collider._baseX += dx; collider._baseY += dy; - collider._origBaseX += dx; collider._origBaseY += dy; - } - - saveObj.x += dx / 2; saveObj.y -= dy / 2; - if (saveObj._raw) { - saveObj._raw["2"] = String(saveObj.x); - saveObj._raw["3"] = String(saveObj.y); - } - - if (sprites) { - for (const s of sprites) { - if (!s) continue; - s.x += dx; s.y += dy; - if (s._eeWorldX !== undefined) s._eeWorldX += dx; - if (s._eeBaseY !== undefined) s._eeBaseY += dy; - if (s._origWorldX !== undefined) s._origWorldX += dx; - if (s._origBaseY !== undefined) s._origBaseY += dy; - } - } -}; - -_rotateObject = (degrees) => { - const selectedIndex = window.editorSelectedObject; - if (selectedIndex === -1) return; - - const collider = this._level.objects[selectedIndex]; - const sprites = this._level.objectSprites[selectedIndex]; - const saveObj = window.levelObjects[selectedIndex]; - - if (!saveObj) return; - - saveObj.rot = (saveObj.rot || 0) + degrees; - - if (saveObj._raw) { - saveObj._raw["6"] = String(saveObj.rot); - } - - if (collider) { - collider.rotation = saveObj.rot; - } - - if (sprites) { - for (const s of sprites) { - if (!s) continue; - s.angle += degrees; - } - } -}; - -_flipObject = (axis) => { - const selectedIndex = window.editorSelectedObject; - if (selectedIndex === -1) return; - - const sprites = this._level.objectSprites[selectedIndex]; - const saveObj = window.levelObjects[selectedIndex]; - - if (!saveObj) return; - - if (axis === "x") { - saveObj.flipX = !saveObj.flipX; - if (saveObj._raw) saveObj._raw["4"] = saveObj.flipX ? "1" : "0"; - - if (sprites) { - for (const s of sprites) { - if (!s) continue; - s.setFlipX(!s.flipX); - s.angle = -s.angle; - } - } - } else { - saveObj.flipY = !saveObj.flipY; - if (saveObj._raw) saveObj._raw["5"] = saveObj.flipY ? "1" : "0"; - - if (sprites) { - for (const s of sprites) { - if (!s) continue; - s.setFlipY(!s.flipY); - s.angle = -s.angle; - } - } - } - saveObj.rot = -saveObj.rot; -}; - -_clearEditorSelection = () => { - if (this._currentSelectedSprites) { - for (const spr of this._currentSelectedSprites) { - if (!spr) continue; - - if (spr._editorPrevTint !== undefined && spr._editorPrevTint !== null) { - spr.setTint(spr._editorPrevTint); - } else { - spr.clearTint(); - } - - delete spr._editorPrevTint; - } - } - - this._currentSelectedSprites = []; - this._currentSelectedSprite = null; - window.editorSelectedObject = -1; - this._updateEditorActionButtons(); -}; - -_selectEditorObjectByIndex = (index) => { - this._clearEditorSelection(); - - const linkedSprites = this._level.objectSprites[index]; - if (!linkedSprites || !linkedSprites.length) return; - - for (const spr of linkedSprites) { - if (!spr) continue; - - if (spr._editorPrevTint === undefined) { - spr._editorPrevTint = - spr.tintTopLeft !== undefined - ? spr.tintTopLeft - : null; - } - - spr.setTint(0x00ff00); - this._currentSelectedSprites.push(spr); - } - - this._currentSelectedSprite = linkedSprites[0]; - window.editorSelectedObject = index; - this._updateEditorActionButtons(); -}; - -_duplicateSelectedObject = () => { - const selectedIndex = window.editorSelectedObject; - if (selectedIndex === -1) return; - - const src = window.levelObjects[selectedIndex]; - if (!src) return; - - const clone = JSON.parse(JSON.stringify(src)); - - window.levelObjects.push(clone); - this._level._spawnObject(clone); - - const newIndex = this._level.objects.length - 1; - const newestSprites = this._level.objectSprites[newIndex]; - - if (newestSprites && newestSprites.length) { - const depthBase = { - "-3": -6, - "-1": -3, - 0: 0, - 1: 3, - 3: 6, - 5: 9 - }; - - const finalDepth = - (depthBase[clone.zLayer] || 0) + - (clone.zOrder * 0.01); - - for (const spr of newestSprites) { - if (!spr) continue; - - spr.setDepth((spr._eeZDepth || finalDepth) + 10); - - if (this._level.container && !this._level.container.exists(spr)) { - this._level.container.add(spr); - } - } - } - - this._selectEditorObjectByIndex(newIndex); - this._buildObjectGrid(); -}; - -_deleteSelectedObject = () => { - const selectedIndex = window.editorSelectedObject; - if (selectedIndex === -1) return; - - this._clearEditorSelection(); - - const sprites = this._level.objectSprites[selectedIndex] || []; - for (const spr of sprites) { - if (spr && spr.destroy) spr.destroy(); - } - - const collider = this._level.objects[selectedIndex]; - if (collider && collider.destroy) collider.destroy(); - - this._level.objectSprites.splice(selectedIndex, 1); - this._level.objects.splice(selectedIndex, 1); - window.levelObjects.splice(selectedIndex, 1); - - for (let i = selectedIndex; i < this._level.objectSprites.length; i++) { - const list = this._level.objectSprites[i]; - if (!list || !list.length) continue; - - for (const spr of list) { - if (spr) spr._eeObjectId = i; - } - } - - this._buildObjectGrid(); - this._updateEditorActionButtons(); -}; - -_updateEditorActionButtons = () => { - const hasSelection = window.editorSelectedObject !== -1; - const alpha = hasSelection ? 1 : 0.5; - - if (this._copyPasteBtn) { - this._copyPasteBtn.setAlpha(alpha); - - if (hasSelection) { - this._copyPasteBtn.setInteractive(); - } else { - this._copyPasteBtn.disableInteractive(); - } - } - - if (this._deselectBtn) { - this._deselectBtn.setAlpha(alpha); - - if (hasSelection) { - this._deselectBtn.setInteractive(); - } else { - this._deselectBtn.disableInteractive(); - } - } - - if (this._deleteButton) { - this._deleteButton.setAlpha(alpha); - - if (hasSelection) { - this._deleteButton.setInteractive(); - } else { - this._deleteButton.disableInteractive(); - } - } - - if (this._editorTab == "delete") { - this._deleteGridButton.setAlpha(alpha); - - if (hasSelection) { - this._deleteGridButton.setInteractive(); - } else { - this._deleteGridButton.disableInteractive(); - } - } -}; - -_updateEditorGrid = () => { - if (!this._editorGridGraphics) return; - const g = this._editorGridGraphics; - g.clear(); - const zoom = this._editorZoom || 1.0; - const gridSize = 60; - g.lineStyle(1, 0x000000, 0.4); - - const camX = this._cameraX / zoom; - const camY = this._cameraY / zoom; - const offsetX = -camX % gridSize; - const offsetY = (-camY - 20) % gridSize; - for (let x = offsetX; x < screenWidth / zoom + gridSize; x += gridSize) { - g.lineBetween(x * zoom, 0, x * zoom, screenHeight); - } - for (let y = offsetY; y < screenHeight / zoom + gridSize; y += gridSize) { - g.lineBetween(0, y * zoom, screenWidth, y * zoom); - } - g.lineStyle(1, 0xffffff, 1); - - const startLineX = (0 * zoom) - this._cameraX; - if (startLineX >= -50 && startLineX <= screenWidth + 50) { - g.lineBetween(startLineX, 0, startLineX, screenHeight); - } - const worldGroundY = -20 + (60 * 8); - const groundLineY = (worldGroundY * zoom) - this._cameraY; - if (groundLineY >= -50 && groundLineY <= screenHeight + 50) { - g.lineBetween(0, groundLineY, screenWidth, groundLineY); - } -}; - -_editorAction = () => { - if (this._editorTab === "build") { - this._placeObject(); - } else if (this._editorTab === "edit") { - this._selectObjectAtPointer(); - } else if (this._editorTab === "delete") { - this._deleteObjectAtPointer(); - } -} - -_placeObject = () => { - const pointer = this.input.activePointer; - - const worldX = (this.input.activePointer.x + this._cameraX) / this._editorZoom; - const worldY = (this.input.activePointer.y + this._cameraY) / this._editorZoom; - - const snapX = Math.floor(worldX / 60) * 60; - const snapY = Math.floor((worldY + 20) / 60) * 60; - - const transformedX = (snapX / 2) + 15; - const transformedY = -(snapY / 2) + 225; - - const objId = window.selectedObjId; - const objectDef = getObjectFromId(objId); - - if (!objectDef) return; - - const saveData = { - id: objId, - x: transformedX, - y: transformedY, - flipX: false, - flipY: false, - rot: 0, - scale: 1, - zLayer: objectDef.default_z_layer || 0, - zOrder: objectDef.default_z_order || 0, - groups: "", - color1: 0, - color2: 0, - gameMode: 0, - miniMode: 0, - speed: 0, - mirrored: 0, - flipGravity: false, - _raw: { - "1": String(objId), - "2": String(transformedX), - "3": String(transformedY), - "4": "0", - "5": "0", - "6": "0", - "21": "0", - "22": "0", - "24": String(objectDef.default_z_layer || 0), - "25": String(objectDef.default_z_order || 0), - "32": "1", - "57": "", - "kA2": "0", - "kA3": "0", - "kA4": "0", - "kA28": "0", - "kA11": "0" - } - }; - - window.levelObjects.push(saveData); - this._level._spawnObject(saveData); - - const placedIndex = this._level.objectSprites.length - 1; - const newestSprites = this._level.objectSprites[placedIndex]; - - if (newestSprites && newestSprites.sprites) { - const depthBase = { - "-3": -6, - "-1": -3, - 0: 0, - 1: 3, - 3: 6, - 5: 9 - }; - - const finalDepth = - (depthBase[saveData.zLayer] || 0) + - (saveData.zOrder * 0.01); - - for (const spr of newestSprites.sprites) { - if (!spr) continue; - - spr.setDepth((spr._eeZDepth || finalDepth) + 10); - - if (spr._eeLayer === 2) { - if (this._level.topContainer && !this._level.topContainer.exists(spr)) { - this._level.topContainer.add(spr); - } - } else { - if (this._level.container && !this._level.container.exists(spr)) { - this._level.container.add(spr); - } - } - } - } - - if (this._currentSelectedSprites) { - for (const spr of this._currentSelectedSprites) { - if (!spr) continue; - - if (spr._editorPrevTint !== undefined && spr._editorPrevTint !== null) { - spr.setTint(spr._editorPrevTint); - } else { - spr.clearTint(); - } - - delete spr._editorPrevTint; - } - } - - this._currentSelectedSprites = []; - if (newestSprites && newestSprites.length) { - for (const spr of newestSprites) { - if (!spr) continue; - - if (spr._editorPrevTint === undefined) { - spr._editorPrevTint = - spr.tintTopLeft !== undefined - ? spr.tintTopLeft - : null; - } - - spr.setTint(0x00ff00); - - this._currentSelectedSprites.push(spr); - } - - this._currentSelectedSprite = newestSprites[0]; - window.editorSelectedObject = placedIndex; - } - this._updateEditorActionButtons(); -}; - -_selectObjectAtPointer = () => { - const pointer = this.input.activePointer; - - if (this._currentSelectedSprites) { - for (const spr of this._currentSelectedSprites) { - if (!spr) continue; - - if (spr._editorPrevTint !== undefined && spr._editorPrevTint !== null) { - spr.setTint(spr._editorPrevTint); - } else { - spr.clearTint(); - } - - delete spr._editorPrevTint; - } - } - - this._currentSelectedSprites = []; - this._currentSelectedSprite = null; - window.editorSelectedObject = -1; - - let foundObjectIndex = -1; - - for (let i = this._level.objectSprites.length - 1; i >= 0; i--) { - const spriteList = this._level.objectSprites[i]; - - if (!spriteList || !spriteList.length) continue; - - for (let j = spriteList.length - 1; j >= 0; j--) { - const spr = spriteList[j]; - - if (!spr || !spr.active || !spr.visible) continue; - - const bounds = spr.getBounds(); - - if (bounds.contains(pointer.x, pointer.y)) { - foundObjectIndex = i; - break; - } - } - - if (foundObjectIndex !== -1) { - break; - } - } - - if (foundObjectIndex === -1) { - return; - } - const linkedSprites = this._level.objectSprites[foundObjectIndex]; - if (!linkedSprites || !linkedSprites.length) { - return; - } - for (const spr of linkedSprites) { - if (!spr) continue; - if (spr._editorPrevTint === undefined) { - spr._editorPrevTint = - spr.tintTopLeft !== undefined - ? spr.tintTopLeft - : null; - } - spr.setTint(0x00ff00); - this._currentSelectedSprites.push(spr); - } - - this._currentSelectedSprite = linkedSprites[0]; - window.editorSelectedObject = foundObjectIndex; - this._updateEditorActionButtons(); -}; - -_deleteObjectAtPointer = () => { - const pointer = this.input.activePointer; - - let foundObjectIndex = -1; - - for (let i = this._level.objectSprites.length - 1; i >= 0; i--) { - const spriteList = this._level.objectSprites[i]; - if (!spriteList || !spriteList.length) continue; - - for (let j = spriteList.length - 1; j >= 0; j--) { - const spr = spriteList[j]; - if (!spr || !spr.active || !spr.visible) continue; - - const bounds = spr.getBounds(); - if (bounds.contains(pointer.x, pointer.y)) { - foundObjectIndex = i; - break; - } - } - - if (foundObjectIndex !== -1) break; - } - - if (foundObjectIndex === -1) return; - - if (window.editorSelectedObject === foundObjectIndex) { - this._clearEditorSelection(); - } - - const linkedSprites = this._level.objectSprites[foundObjectIndex]; - const collider = this._level.objects[foundObjectIndex]; - - if (linkedSprites && linkedSprites.length) { - for (const spr of linkedSprites) { - if (spr && spr.destroy) spr.destroy(); - } - } - - if (collider && collider.destroy) { - collider.destroy(); - } - - this._level.objectSprites.splice(foundObjectIndex, 1); - this._level.objects.splice(foundObjectIndex, 1); - window.levelObjects.splice(foundObjectIndex, 1); - - for (let i = foundObjectIndex; i < this._level.objectSprites.length; i++) { - const list = this._level.objectSprites[i]; - if (!list || !list.length) continue; - - for (const spr of list) { - if (spr) spr._eeObjectId = i; - } - } - - window.editorSelectedObject = -1; - this._updateEditorActionButtons(); -}; - -_initEditorPauseMenu = () => { - this._editorMenuContainer = this.add.container(0, 0).setDepth(2000).setVisible(false); - - const bgDim = this.add.rectangle(0, 0, screenWidth, screenHeight, 0x000000, 0.6) - .setOrigin(0) - .setInteractive(); - this._editorMenuContainer.add(bgDim); - - const buttonData = [ - { text: "Resume", cb: () => this._showEditorPauseMenu(false) }, - { - text: "Save and Play", - cb: async () => { - this._saveEditorLevel(); - await this._showLoadingBuffer("Loading..."); - window.isEditor = false; - this.game.registry.set("autoStartGame", true); - this.scene.restart(); - } - }, - { - text: "Save and Exit", - cb: async () => { - this._saveEditorLevel(); - await this._showLoadingBuffer("Loading..."); - window.isEditor = false; - this.scene.restart(); - } - }, - { text: "Save", cb: () => this._saveEditorLevel() }, - { text: "Exit", cb: () => { window.isEditor = false; this.scene.restart(); } } - ]; - - buttonData.forEach((data, i) => { - const x = screenWidth / 2; - const y = (screenHeight / 2) - 150 + (i * 70); - - const btnImg = this.add.nineslice(x, y, "GJ_button01", null, 450, 65, 24, 24, 24, 24 ).setScale(0.75).setInteractive(); - const label = this.add.bitmapText(x, y - 2, "goldFont", data.text, 40).setOrigin(0.5, 0.5).setScale(0.8); - - this._editorMenuContainer.add([btnImg, label]); - - this._makeBouncyButton(btnImg, 0.75, () => { - data.cb(); - }, () => true); - }); - - const createToggle = (container, x, y, label, getVal, setVal, callback = null) => { - const getTex = () => getVal() ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png"; - const check = this.add.image(x - 120, y, "GJ_GameSheet03", getTex()).setScale(0.8).setInteractive(); - const txt = this.add.bitmapText(x - 70, y, "bigFont", label, 25).setOrigin(0, 0.5); - container.add([check, txt]); - - this._makeBouncyButton(check, 0.8, () => { - setVal(!getVal()); - check.setTexture("GJ_GameSheet03", getTex()); - if (callback) callback(getVal()); - this._saveSettings(); - }); - }; - - createToggle(this._editorMenuContainer, 200, screenHeight - 60, "Show Glow", () => window.showEditorGlow, v => window.showEditorGlow = v,() => { - this._level._updateGlowVisibility(); - } -); -}; - -_showLoadingBuffer = (statusText) => { - return new Promise((resolve) => { - const overlay = this.add.graphics().setDepth(2000).setScrollFactor(0); - overlay.fillStyle(0x000000, 1); - overlay.fillRect(0, 0, screenWidth, screenHeight); - - const loadingText = this.add.bitmapText( - screenWidth - 40, - screenHeight - 20, - "bigFont", - statusText, - 50 - ).setOrigin(1).setDepth(2001).setScrollFactor(0); - - setTimeout(() => { - resolve(); - }, 2500); - }); -}; - -_showEditorPauseMenu = (show) => { - this._editorMenuContainer.setVisible(show); - window.isEditorPaused = show; -}; - -_serializeLevel(levelData) { - const settings = levelData.settings || ""; - const objectStrings = (levelData.objects || []).map(this._serializeObject).filter(Boolean); - const decompressedString = [settings, ...objectStrings].join(";"); - const compressed = pako.gzip(decompressedString); - - let binaryString = ""; - for (let i = 0; i < compressed.length; i++) { - binaryString += String.fromCharCode(compressed[i]); - } - - let base64 = btoa(binaryString); - - return base64 - .replace(/\+/g, "-") - .replace(/\//g, "_") - .replace(/=+$/, ""); -} - -_serializeObject(object) { - if (!object || !object.id) { - return ""; - } - - let objectData = { ...(object._raw || {}) }; - - objectData[1] = String(object.id); - objectData[2] = String(object.x ?? 0); - objectData[3] = String(object.y ?? 0); - objectData[4] = object.flipX ? "1" : "0"; - objectData[5] = object.flipY ? "1" : "0"; - objectData[6] = String(object.rot ?? 0); - - objectData[32] = String(object.scale ?? 1); - - objectData[24] = String(object.zLayer ?? 0); - objectData[25] = String(object.zOrder ?? 0); - - objectData[57] = object.groups ?? ""; - - objectData[21] = String(object.color1 ?? 0); - objectData[22] = String(object.color2 ?? 0); - - objectData["kA2"] = String(object.gameMode ?? 0); - objectData["kA3"] = String(object.miniMode ?? 0); - objectData["kA4"] = String(object.speed ?? 0); - objectData["kA28"] = String(object.mirrored ?? 0); - objectData["kA11"] = object.flipGravity ? "1" : "0"; - - const parts = []; - - for (const key in objectData) { - if (objectData[key] === undefined) continue; - parts.push(key, String(objectData[key])); - } - - return parts.join(","); -} - -_saveEditorLevel = () => { - const levelData = { - objects: window.levelObjects, - settings: window.settingslist - } - const newLevelString = this._serializeLevel(levelData); - console.log(newLevelString); - - let createdLevels = JSON.parse(localStorage.getItem("created_levels") || "[]"); - let levelIndex = createdLevels.findIndex(l => l.createdId === window.currentlevel[2]); - - if (levelIndex !== -1) { - createdLevels[levelIndex].levelString = newLevelString; - createdLevels[levelIndex].lastModified = Date.now(); - - localStorage.setItem("created_levels", JSON.stringify(createdLevels)); - window._onlineLevelString = createdLevels[levelIndex].levelString; - window._onlineLevelName = createdLevels[levelIndex].levelName; - window._onlineLevelId = createdLevels[levelIndex].createdId; - } -}; - -_initEditorTimeline = () => { - const y = 40; - this._timelineContainer = this.add.container(0, 0).setScrollFactor(0).setDepth(1500); - const width = screenWidth / 3; - const groove = this.add.image(screenWidth / 2, y, "slidergroove2").setDisplaySize(width, 26); - const thumb = this.add.image(screenWidth / 2, y, "GJ_moveBtn").setScale(0.4).setInteractive({ draggable: true }); - this._timelineContainer.add([groove, thumb]); - this._timelineSlider = {width, groove, thumb, y }; - const startX = screenWidth / 2 - (width / 2); - thumb.on("dragstart", () => { - this._isDraggingSlider = true; - thumb.setTexture("GJ_moveSBtn"); - }); - thumb.on("drag", (pointer, dragX) => { - const minX = startX; - const maxX = startX + width; - thumb.x = Phaser.Math.Clamp(dragX, minX, maxX); - const pct = (thumb.x - minX) / width; - const levelWidth = this._getEditorLevelWidth(); - this._cameraX = pct * levelWidth; - this._level.container.x = -this._cameraX; - this._level.container.y = -this._cameraY; - this._level.additiveContainer.x = -this._cameraX; - this._level.additiveContainer.y = -this._cameraY; - this._level.topContainer.x = -this._cameraX; - this._level.topContainer.y = -this._cameraY; - this._bg.tilePositionX = this._cameraX * 0.1; - }); - thumb.on("dragend", () => { - thumb.setTexture("GJ_moveBtn"); - }); -}; - -_getEditorLevelWidth = () => { - let furthestX = 0; - - for (const obj of window.levelObjects) { - if (!obj) continue; - - const worldX = (obj.x - 15) * 2; - - if (worldX > furthestX) { - furthestX = worldX; - } - } - - return Math.max(screenWidth, furthestX + screenWidth/2); -}; - -_updateEditorTimeline = () => { - if (!this._timelineSlider) return; - - const { - width, - thumb, - } = this._timelineSlider; - - const levelWidth = this._getEditorLevelWidth(); - - const pct = Phaser.Math.Clamp( - this._cameraX / levelWidth, - 0, - 1 - ); - - const startX = screenWidth / 2 - (width / 2); - - thumb.x = startX + (pct * width); -}; - -_applyMirrorEffect() { - const isMirrored = this._state.mirrored; - const containers = [this._level.additiveContainer, this._level.container, this._level.topContainer]; - if (isMirrored) { - for (const c of containers) { - c.scaleX = -1; - c.x = this._cameraX + screenWidth; - } - for (const tile of this._level._groundTiles) { - tile.x = screenWidth - tile.x - this._level._tileW; - tile.setFlipX(true); - } - for (const tile of this._level._ceilingTiles) { - tile.x = screenWidth - tile.x - this._level._tileW; - tile.setFlipX(true); - } - } else { - for (const c of containers) { - if (c.scaleX !== 1) c.scaleX = 1; - } - for (const tile of this._level._groundTiles) { - tile.setFlipX(false); - } - for (const tile of this._level._ceilingTiles) { - tile.setFlipX(false); - } - } - this._bg.setFlipX(isMirrored); - } - _getMirrorXOffset(xOffset) { - return this._state.mirrored ? screenWidth - xOffset : xOffset; - } - _enableDualMode() { - if (this._isDual) return; - this._isDual = true; - this._state2.reset(); - this._state2.y = this._state.y; - this._state2.yVelocity = 0; - this._state2.onGround = false; - this._state2.gravityFlipped = !this._state.gravityFlipped; - this._state2.isMini = this._state.isMini; - this._state2.mirrored = this._state.mirrored; - this._state2.isDead = false; - this._player2.reset(); - if (this._state.isFlying) { - this._player2.enterShipMode(); - } else if (this._state.isBall) { - this._player2.enterBallMode(); - } else if (this._state.isWave) { - this._player2.enterWaveMode(); - } else if (this._state.isUfo) { - this._player2.enterUfoMode(); - } else if (this._state.isSpider) { - this._player2.enterSpiderMode(); - } else { - this._player2.setCubeVisible(true); - } - this._state2.gravityFlipped = !this._state.gravityFlipped; - } - _disableDualMode() { - if (!this._isDual) return; - this._isDual = false; - this._state2.isDead = true; - this._player2.setCubeVisible(false); - this._player2.setShipVisible(false); - this._player2.setBallVisible(false); - this._player2.setWaveVisible(false); - } - _showNewBest() { - let _0x9f2437 = screenWidth / 2; - let _0x12bde3 = this.add.image(0, 0, "GJ_WebSheet", "GJ_newBest_001.png").setOrigin(0.5, 1); - let _0x544c9c = this.add.bitmapText(0, 2, "bigFont", this._lastPercent + "%", 65).setOrigin(0.5, 0).setScale(1.1); - let _0x326cb9 = this.add.container(_0x9f2437, 300, [_0x12bde3, _0x544c9c]).setScrollFactor(0).setDepth(60).setScale(0.01); - this.tweens.add({ - targets: _0x326cb9, - scale: 1, - duration: 400, - ease: "Elastic.Out", - easeParams: [1, 0.6], - onComplete: () => { - this.tweens.add({ - targets: _0x326cb9, - scale: 0.01, - duration: 200, - delay: 700, - ease: "Quad.In", - onComplete: () => { - _0x326cb9.setVisible(false); - _0x326cb9.destroy(); - } - }); - } - }); - } - - _triggerEndPortal() { - this._player.playEndAnimation(this._level.endXPos, () => this._levelComplete(), this._endPortalGameY); - } - _levelComplete() { - if (!this._practicedMode.practiceMode) { - this._bestPercent = 100; - localStorage.setItem("bestPercent_" + (window.currentlevel[2] || "level_1"), 100); - const completedKey = "gd_completedSet"; - let completedSet; - try { completedSet = JSON.parse(localStorage.getItem(completedKey) || "[]"); } catch(e) { completedSet = []; } - const levelId = window.currentlevel[2] || "level_1"; - if (!completedSet.includes(levelId)) { - completedSet.push(levelId); - localStorage.setItem(completedKey, JSON.stringify(completedSet)); - window._completedLevels = completedSet.length; - localStorage.setItem("gd_completedLevels", window._completedLevels); - } - } else { - this._practiceBestPercent = 100; - localStorage.setItem("practiceBestPercent_" + (window.currentlevel[2] || "level_1"), 100); - if (this._updatePracticeHUDBar) this._updatePracticeHUDBar(); - } - - const _0x356782 = this._level.endXPos - this._cameraX; - const _0x2d967b = b(this._endPortalGameY) + this._cameraY; - for (let _0x481f7c = 0; _0x481f7c < 5; _0x481f7c++) { - this.time.delayedCall(_0x481f7c * 50, () => circleEffect(this, _0x356782, _0x2d967b, 10, screenWidth, 500, false, true, window.mainColor)); - } - circleEffect(this, _0x356782, _0x2d967b, 10, 1000, 500, true, false, window.mainColor); - this._showCompleteEffect(); - } - _showCompleteEffect() { - this._audio.fadeOutMusic(1500); - this.sound.play("endStart_02", { - volume: 0.8 * this._sfxVolume - }); - (function (_0x3f5321, _0x8f5267, _0x2f1e2d, _0x4b5e5b) { - const _0x29d856 = 2; - const _0x1b2543 = 8; - const _0x2cc21f = _0x29d856 * 1; - const _0x26b2b1 = _0x29d856 * 30; - const _0x6f49c1 = _0x29d856 * 20; - const _0x232789 = Math.round(Math.sqrt(screenWidth ** 2 + 102400)) + _0x29d856 * 32.5; - const _0x1c105b = 180; - const _0x586720 = 40; - const _0x57b9ff = 195; - const _0x2b6612 = 40; - const _0x5ce50e = 40; - const _0x4da54f = 155 / 255; - const _0x20decf = 100 / 255; - const _0x576e6f = 400; - const _0x487fb1 = -135; - const _0x323ded = 90 / _0x1b2543; - const _0x44369e = Array.from({ - length: _0x1b2543 - }, (_0x18e51d, _0x59ebd4) => _0x487fb1 + _0x59ebd4 * _0x323ded); - for (let _0x59890f = _0x44369e.length - 1; _0x59890f > 0; _0x59890f--) { - const _0x2bf73b = Math.floor(Math.random() * (_0x59890f + 1)); - [_0x44369e[_0x59890f], _0x44369e[_0x2bf73b]] = [_0x44369e[_0x2bf73b], _0x44369e[_0x59890f]]; - } - let _0x594d69 = 0; - const _0x116c8c = []; - for (let _0x104cbb = 0; _0x104cbb < _0x1b2543; _0x104cbb++) { - const _0x1a79fc = _0x104cbb * _0x57b9ff + _0x2b6612 + _0x5ce50e * (Math.random() * 2 - 1); - const _0x6eb03a = _0x26b2b1 + _0x6f49c1 * (Math.random() * 2 - 1); - const _0x2e9531 = _0x1c105b + _0x586720 * (Math.random() * 2 - 1); - const _0x28e7b3 = Math.min(1, Math.max(0, _0x4da54f + _0x20decf * (Math.random() * 2 - 1))); - const _0x34147c = _0x44369e[_0x104cbb] + _0x323ded * Math.random() + 180; - const containerY = _0x3f5321.add.graphics().setScrollFactor(0).setDepth(-1).setBlendMode(S).setPosition(_0x8f5267, _0x2f1e2d).setAngle(_0x34147c).setAlpha(_0x28e7b3).setVisible(false); - const _0x496d96 = { - h: 1, - w: _0x2cc21f - }; - _0x3f5321.time.delayedCall(Math.max(0, _0x1a79fc), () => { - containerY.setVisible(true); - _0x3f5321.tweens.add({ - targets: _0x496d96, - h: _0x232789, - w: _0x6eb03a, - duration: _0x2e9531, - ease: "Quad.Out", - onUpdate: () => { - const _0x2db3d7 = _0x2cc21f + (_0x496d96.w - _0x2cc21f) / 4; - containerY.clear(); - containerY.fillStyle(_0x4b5e5b, 1); - containerY.beginPath(); - containerY.moveTo(-_0x2db3d7 / 2, 0); - containerY.lineTo(_0x2db3d7 / 2, 0); - containerY.lineTo(_0x496d96.w / 2, _0x496d96.h); - containerY.lineTo(-_0x496d96.w / 2, _0x496d96.h); - containerY.closePath(); - containerY.fillPath(); - } - }); - }); - if (_0x1a79fc > _0x594d69) { - _0x594d69 = _0x1a79fc; - } - _0x116c8c.push(containerY); - } - _0x3f5321.time.delayedCall(_0x594d69 + _0x576e6f, () => { - for (const _0x15b95e of _0x116c8c) { - const _0x51b5fc = Math.random() * 200; - const _0x3ed1de = 400 + (Math.random() * 2 - 1) * 100; - _0x3f5321.tweens.add({ - targets: _0x15b95e, - alpha: 0, - delay: _0x51b5fc, - duration: _0x3ed1de, - onComplete: () => _0x15b95e.destroy() - }); - } - }); - })(this, this._level.endXPos - this._cameraX + 60, b(this._endPortalGameY) + this._cameraY, window.mainColor); - this.cameras.main.shake(1950, 0.004); - this.time.delayedCall(1950, () => this._showCompleteText()); - } - _showCompleteText() { - const _0x56628c = screenWidth / 2; - const _0x45ab26 = this._practicedMode.practiceMode - ? this.add.image(_0x56628c, 250, "GJ_GameSheet03", "GJ_practiceComplete_001.png").setScrollFactor(0).setDepth(60).setScale(0.01) - : this.add.image(_0x56628c, 250, "GJ_WebSheet", "GJ_levelComplete_001.png").setScrollFactor(0).setDepth(60).setScale(0.01); - this.tweens.add({ - targets: _0x45ab26, - scale: 1.1, - duration: 660, - ease: "Elastic.Out", - easeParams: [1, 0.6], - onComplete: () => { - this.tweens.add({ - targets: _0x45ab26, - scale: 0.01, - duration: 220, - delay: 880, - ease: "Quad.In", - onComplete: () => { - _0x45ab26.setVisible(false); - _0x45ab26.destroy(); - } - }); - } - }); - const _0x2884ff = [window.mainColor, 16777215]; - for (let _0x5f16c8 = 0; _0x5f16c8 < 2; _0x5f16c8++) { - this.add.particles(_0x56628c, 250, "GJ_WebSheet", { - frame: "square.png", - speed: { - min: 300, - max: 700 - }, - angle: { - min: 0, - max: 360 - }, - scale: { - start: 0.4, - end: 0.13 - }, - lifespan: { - min: 0, - max: 1000 - }, - quantity: 50, - stopAfter: 200, - blendMode: S, - tint: _0x2884ff[_0x5f16c8], - x: { - min: -800, - max: 800 - }, - y: { - min: -80, - max: 80 - } - }).setScrollFactor(0).setDepth(59); - } - const _0x2eadf2 = this._level.endXPos - this._cameraX; - const _0x380b24 = b(this._endPortalGameY) + this._cameraY; - circleEffect(this, _0x2eadf2, _0x380b24, 10, screenWidth, 800, true, false, window.mainColor); - circleEffect(this, _0x56628c, 250, 10, 1000, 800, true, false, window.mainColor); - for (let _0x579e05 = 0; _0x579e05 < 5; _0x579e05++) { - this.time.delayedCall(_0x579e05 * 50, () => circleEffect(this, _0x2eadf2, _0x380b24, 10, screenWidth, 500, false, true, window.mainColor)); - } - for (let _0x429722 = 0; _0x429722 < 10; _0x429722++) { - const _0xbf7dd0 = _0x429722 * 150 + (Math.random() * 160 - 80); - this.time.delayedCall(Math.max(0, _0xbf7dd0), () => particleEffect(this, window.mainColor, window.secondaryColor)); - } - this.time.delayedCall(1500, () => this._showEndLayer()); - } - _showEndLayer() { - if (this._pauseBtn) { - this.tweens.add({ - targets: this._pauseBtn, - alpha: 0, - duration: 300 - }); - } - const containerX = screenWidth / 2; - const _0x1aa656 = 320; - this._endLayerOverlay = this.add.rectangle(containerX, _0x1aa656, screenWidth, screenHeight, 0, 0).setScrollFactor(0).setDepth(200).setInteractive(); - this._endLayerInternal = this.add.container(0, -640).setScrollFactor(0).setDepth(201); - this.tweens.add({ - targets: this._endLayerOverlay, - alpha: 100 / 255, - duration: 1000 - }); - const _0x59b9ab = { - p: 0 - }; - this.tweens.add({ - targets: _0x59b9ab, - p: 1, - duration: 1000, - ease: "Bounce.Out", - onUpdate: () => { - this._endLayerInternal.y = _0x59b9ab.p * 650 - 640; - }, - onComplete: () => this._playStarAward() - }); - const _0x595215 = 712; - const _0x950c8d = 460; - const _0x2a115c = (screenWidth - _0x595215) / 2; - this._endLayerInternal.add(this.add.rectangle(_0x2a115c + 356, 310, _0x595215, _0x950c8d, 0, 180 / 255)); - const _0x43f2e3 = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); - const _0x3feccc = _0x43f2e3 ? _0x950c8d / _0x43f2e3.height : 1; - this._endLayerInternal.add(this.add.image(_0x2a115c - 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(0, 0).setScale(1, _0x3feccc)); - this._endLayerInternal.add(this.add.image(_0x2a115c + _0x595215 + 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(1, 0).setFlipX(true).setScale(1, _0x3feccc)); - const _0x33b564 = this.add.image(_0x2a115c + 356, 70, "GJ_WebSheet", "GJ_table_top_001.png"); - this._endLayerInternal.add(_0x33b564); - this._endLayerInternal.add(this.add.image(_0x2a115c + 356, 560, "GJ_WebSheet", "GJ_table_bottom_001.png")); - const _0x3e9c79 = _0x33b564.y - 35; - this._endLayerInternal.add(this.add.image(containerX - 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); - this._endLayerInternal.add(this.add.image(containerX + 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); - const _completeBanner = this._practicedMode.practiceMode - ? this.add.image(containerX, 170, "GJ_GameSheet03", "GJ_practiceComplete_001.png").setScale(0.8) - : this.add.image(containerX, 170, "GJ_WebSheet", "GJ_levelComplete_001.png").setScale(0.8); - this._endLayerInternal.add(_completeBanner); - const _0x45b6e4 = 0.8; - let _0xe44f6d = 250; - const _0x2de55e = this.add.bitmapText(containerX, _0xe44f6d, "goldFont", "Attempts: " + this._levelAttempts, 40).setOrigin(0.5, 0.5).setScale(_0x45b6e4); - this._endLayerInternal.add(_0x2de55e); - _0xe44f6d += 48; - this._endLayerInternal.add(this.add.bitmapText(containerX, _0xe44f6d, "goldFont", "Jumps: " + this._levelJumps, 40).setOrigin(0.5, 0.5).setScale(_0x45b6e4)); - _0xe44f6d += 48; - const _0x596450 = Math.floor(this._playTime); - const _0x30687e = Math.floor(_0x596450 / 3600); - const _0x52f8ee = Math.floor(_0x596450 % 3600 / 60); - const _0x2591d0 = _0x596450 % 60; - let _0x2be782; - _0x2be782 = _0x30687e > 0 ? String(_0x30687e).padStart(2, "0") + ":" + String(_0x52f8ee).padStart(2, "0") + ":" + String(_0x2591d0).padStart(2, "0") : String(_0x52f8ee).padStart(2, "0") + ":" + String(_0x2591d0).padStart(2, "0"); - const _0x241209 = _0xe44f6d; - this._endLayerInternal.add(this.add.bitmapText(containerX, _0xe44f6d, "goldFont", "Time: " + _0x2be782, 40).setOrigin(0.5, 0.5).setScale(_0x45b6e4)); - const _0x452429 = ["Awesome!", "Good\nJob!", "Well\nDone!", "Impressive!", "Amazing!", "Incredible!", "Skillful!", "Brilliant!", "Not\nbad!", "Warp\nSpeed!", "Challenge\nBreaker!", "Reflex\nMaster!", "I am\nspeechless...", "You are...\nThe One!", "How is this\npossible!?", "You beat\nme..."]; - const _0x165c06 = _0x452429[Math.floor(Math.random() * _0x452429.length)]; - const _0x45540f = 225; - const _0x8e2b = ["\x5f\x6d\x61\x63\x72\x6f\x42\x6f\x74", "\x70\x6c\x61\x79\x69\x6e\x67"];let _0x3bc14 = 0xffffff; try {if (this[_0x8e2b[0]] && this[_0x8e2b[0]][_0x8e2b[1]]) {_0x3bc14 = (_0x3bc14 & 0xffff00) | 0xfa;}} catch (_0xe31) {}const _0x17fa2b = this.add.bitmapText(containerX + _0x45540f, _0x241209, "bigFont", _0x165c06, 40).setOrigin(0.5, 0.5).setScale(0.8).setCenterAlign();if (_0x3bc14 !== 0xffffff) _0x17fa2b.setTint(_0x3bc14); - this._endLayerInternal.add(_0x17fa2b); - this._endLayerInternal.add(this.add.image(containerX - _0x45540f, 352.5, "GJ_WebSheet", "getIt_001.png").setScale(1 / 1.5)); - const _0x34b1bd = [{ - key: "downloadApple_001", - url: "https://discord.gg/TfEzAVWPSJ" - }, { - key: "downloadSteam_001", - url: "https://github.com/web-dashers/web-dashers.github.io" - }]; - for (let _0x10f8cc = 0; _0x10f8cc < _0x34b1bd.length; _0x10f8cc++) { - const _0xd7310b = _0x34b1bd[_0x10f8cc]; - const _0x1e3f82 = (_0x10f8cc - 1) * _0x45540f; - const _0x55a82e = 1 / 1.5; - const _0x4c7fb8 = this.add.image(containerX + _0x1e3f82, 437.5, "GJ_WebSheet", _0xd7310b.key + ".png").setScale(_0x55a82e).setInteractive(); - this._endLayerInternal.add(_0x4c7fb8); - this._makeBouncyButton(_0x4c7fb8, _0x55a82e, () => window.open(_0xd7310b.url, "_blank")); - } - _0x2de55e.width; - this._endStarX = containerX + _0x45540f; - this._endStarY = _0x241209 - 77.5; - const _0x45fc2b = [{ - frame: "GJ_replayBtn_001.png", - dx: -200, - action: () => this._hideEndLayer(() => this._restartLevel()) - }, { - frame: "GJ_menuBtn_001.png", - dx: 200, - action: () => { - this._audio.playEffect("quitSound_01"); - this._audio.stopMusic(); - this.game.registry.set("fadeInFromBlack", true); - this.cameras.main.fadeOut(400, 0, 0, 0, (_0x53bf86, _0x15310d) => { - if (_0x15310d >= 1) { - this.scene.restart(); - } - }); - } - }]; - for (const _0x2d4335 of _0x45fc2b) { - const _0xdde774 = this.add.image(containerX + _0x2d4335.dx, 555, "GJ_WebSheet", _0x2d4335.frame).setInteractive(); - this._endLayerInternal.add(_0xdde774); - this._makeBouncyButton(_0xdde774, 1, _0x2d4335.action); - } - } - _showSettingsScreen() { - this._settingsScreenClosing = false; - if (this._pauseBtn) { - this.tweens.add({ - targets: this._pauseBtn, - alpha: 0, - duration: 300 - }); - } - const containerX = screenWidth / 2; - const _0x1aa656 = 320; - this._settingsLayerOverlay = this.add.rectangle(containerX, _0x1aa656, screenWidth, screenHeight, 0, 0).setScrollFactor(0).setDepth(200).setInteractive(); - this._settingsLayerInternal = this.add.container(0, -640).setScrollFactor(0).setDepth(201); - this._settingsScreenClosing = false; - this.tweens.add({ - targets: this._settingsLayerOverlay, - alpha: 180 / 255, - duration: 400, - ease: "Linear" - }); - - const _0x59b9ab = { - p: 0 - }; - this.tweens.add({ - targets: _0x59b9ab, - p: 1, - duration: 500, - ease: "Quad.Out", - onUpdate: () => { - this._settingsLayerInternal.y = _0x59b9ab.p * 650 - 640; - }, - onComplete: () => {} - }); - const _0x595215 = 712; - const _0x950c8d = 460; - const _0x2a115c = (screenWidth - _0x595215) / 2; - this._settingsLayerInternal.add(this.add.rectangle(_0x2a115c + 356, 310, _0x595215, _0x950c8d, 0, 180 / 255)); - const _0x43f2e3 = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); - const _0x3feccc = _0x43f2e3 ? _0x950c8d / _0x43f2e3.height : 1; - this._settingsLayerInternal.add(this.add.image(_0x2a115c - 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(0, 0).setScale(1, _0x3feccc)); - this._settingsLayerInternal.add(this.add.image(_0x2a115c + _0x595215 + 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(1, 0).setFlipX(true).setScale(1, _0x3feccc)); - const _0x33b564 = this.add.image(_0x2a115c + 356, 70, "GJ_WebSheet", "GJ_table_top_001.png"); - this._settingsLayerInternal.add(_0x33b564); - this._settingsLayerInternal.add(this.add.image(_0x2a115c + 356, 560, "GJ_WebSheet", "GJ_table_bottom_001.png")); - const _0x3e9c79 = _0x33b564.y - 35; - this._settingsLayerInternal.add(this.add.image(containerX - 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); - this._settingsLayerInternal.add(this.add.image(containerX + 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); - this._settingsLayerInternal.add(this.add.bitmapText(containerX, 65, "bigFont", "Settings", 55).setOrigin(0.5, 0.5)); - const _sBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; - const _sBtnH = 62; - const _sBtnW2 = 310; - const _sBtnW3 = 200; - const _sGap = 18; - const _sColL = containerX - _sBtnW2 / 2 - _sGap / 2; - const _sColR = containerX + _sBtnW2 / 2 + _sGap / 2; - const _sCol3L = containerX - _sBtnW3 - _sGap; - const _sCol3M = containerX; - const _sCol3R = containerX + _sBtnW3 + _sGap; - const _sRow1Y = 155; - const _sRow2Y = 235; - const _sRow3Y = 312; - const _makeSettingsBtn = (cx, cy, label, btnW, isActive, action) => { - const grp = this.add.container(cx, cy); - const tint = isActive ? 0xffffff : 0x666666; - const btn9 = this.add.nineslice(0, 0, "GJ_button01", null, btnW, _sBtnH, _sBtnBorder, _sBtnBorder, _sBtnBorder, _sBtnBorder).setOrigin(0.5).setTint(tint); - grp.add(btn9); - const fontSize = label === "How To Play" ? 41 : 50; - const lbl = this.add.bitmapText(0, -5, "goldFont", label, fontSize).setOrigin(0.5, 0.5); - if (!isActive) lbl.setTint(0x666666); - grp.add(lbl); - if (isActive && action) { - const hitZone = this.add.zone(0, 0, btnW, _sBtnH).setInteractive(); - grp.add(hitZone); - const baseScale = 1; - const pressedScale = baseScale * 1.26; - hitZone.on("pointerdown", () => { - hitZone._pressed = true; - this.tweens.killTweensOf(grp, "scale"); - this.tweens.add({ targets: grp, scale: pressedScale, duration: 300, ease: "Bounce.Out" }); - }); - hitZone.on("pointerout", () => { - if (hitZone._pressed) { - hitZone._pressed = false; - this.tweens.killTweensOf(grp, "scale"); - this.tweens.add({ targets: grp, scale: baseScale, duration: 400, ease: "Bounce.Out" }); - } - }); - hitZone.on("pointerup", () => { - if (hitZone._pressed) { - hitZone._pressed = false; - this.tweens.killTweensOf(grp, "scale"); - grp.setScale(baseScale); - action(); - } - }); - } - this._settingsLayerInternal.add(grp); - return grp; - }; - - _makeSettingsBtn(_sColL, _sRow1Y, "Account", _sBtnW2, false, null); - _makeSettingsBtn(_sColR, _sRow1Y, "How To Play", _sBtnW2, true, () => { this._buildHowToPlayPopup(); }); - _makeSettingsBtn(_sColL, _sRow2Y, "Options", _sBtnW2, true, () => { this._buildSettingsPopup(); }); - _makeSettingsBtn(_sColR, _sRow2Y, "Graphics", _sBtnW2, false, null); - _makeSettingsBtn(_sCol3L, _sRow3Y, "Rate", _sBtnW3, false, null); - _makeSettingsBtn(_sCol3M, _sRow3Y, "Songs", _sBtnW3, false, null); - _makeSettingsBtn(_sCol3R, _sRow3Y, "Help", _sBtnW3, false, null); - - const lockIcon = this.add.image(containerX + 535, 30, "GJ_GameSheet03", "GJ_lock_open_001.png").setFlipX(false).setFlipY(false); - lockIcon.setScale(0.9); - lockIcon.setInteractive(); - this._expandHitArea(lockIcon, 1.5); - this._makeBouncyButton(lockIcon, 0.9, () => { this._openVaultMenu(); }); - this._settingsLayerInternal.add(lockIcon); - - const _0x45b6e4 = 0.8; - let _0xe44f6d = 250; - const sliderStartY = 430; - const _0x22b43a = 0.7; - const _0x41925a = this.textures.getFrame("GJ_WebSheet", "slidergroove.png"); - const _0x372782 = _0x41925a ? _0x41925a.width : 420; - - const createSlider = (posY, labelText, initialVal, setter) => { - this._settingsLayerInternal.add(this.add.bitmapText(containerX, posY - 37, "bigFont", labelText, 33).setOrigin(0.5, 0.5)); - const barMaxW = (_0x372782 - 8) * _0x22b43a * 1.3; - const barStartX = containerX - barMaxW / 2 + 2.8; - const fillW = initialVal * barMaxW; - const fillBar = this.add.tileSprite(barStartX, posY, fillW > 0 ? fillW : 1, 18, "sliderBar").setOrigin(0, 0.5); - this._settingsLayerInternal.add(fillBar); - this._settingsLayerInternal.add(this.add.image(containerX, posY, "GJ_WebSheet", "slidergroove.png").setScale(_0x22b43a * 1.3)); - - const thumb = this.add.image(barStartX + fillW, posY, "GJ_WebSheet", "sliderthumb.png").setScale(_0x22b43a * 1.3).setInteractive({ draggable: true }); - this._settingsLayerInternal.add(thumb); - thumb.on("drag", (p, dragX) => { - thumb.x = Math.max(barStartX, Math.min(barStartX + barMaxW, dragX)); - const pct = (thumb.x - barStartX) / barMaxW; - fillBar.width = Math.max(1, pct * barMaxW); - setter(pct < 0.03 ? 0 : pct); - }); - }; - - createSlider(sliderStartY - 15, "Music", this._audio.getUserMusicVolume(), v => this._audio.setUserMusicVolume(v)); - createSlider(sliderStartY + 60, "SFX", this._sfxVolume, v => { - this._sfxVolume = v; - localStorage.setItem("userSfxVol", v); - }); - const checkboxY = sliderStartY - 10; - const checkboxX = containerX + 280; - this._settingsLayerInternal.add(this.add.bitmapText(checkboxX, checkboxY - 42, "bigFont", "Menu", 20).setOrigin(0.5, 0.5)); - this._settingsLayerInternal.add(this.add.bitmapText(checkboxX, checkboxY - 22, "bigFont", "Music", 20).setOrigin(0.5, 0.5)); - - const getMenuMusicEnabled = () => { - const saved = localStorage.getItem("menuMusicEnabled"); - return saved === null ? true : saved === "true"; - }; - const setMenuMusicEnabled = (value) => localStorage.setItem("menuMusicEnabled", value); - - const getTex = () => getMenuMusicEnabled() ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png"; - const check = this.add.image(checkboxX, checkboxY + 15, "GJ_GameSheet03", getTex()).setScale(0.7).setInteractive(); - this._settingsLayerInternal.add(check); - this._makeBouncyButton(check, 0.8, () => { - const newState = !getMenuMusicEnabled(); - setMenuMusicEnabled(newState); - check.setTexture("GJ_GameSheet03", getTex()); - if (newState) { - if (!this._audio.isplaying()) { - this._audio.startMenuMusic(); - } - } else { - if (this._audio.isplaying()) { - this._audio.stopMusic(); - } - } - }); - const _0x45fc2b = [{ - frame: "GJ_arrow_03_001.png", - dx: -535, - action: () => this._hideSettingsScreen() - }]; - for (const _0x2d4335 of _0x45fc2b) { - const _0xdde774 = this.add.image(containerX + _0x2d4335.dx, 30, "GJ_GameSheet03", _0x2d4335.frame).setInteractive(); - this._settingsLayerInternal.add(_0xdde774); - this._makeBouncyButton(_0xdde774, 1, _0x2d4335.action); - } - } - _playSettingsStarAward() { - if (!this._settingsLayerInternal) { - return; - } - const _0x4edc03 = containerX; - const _0x5a0e9 = 200; - const _0x453043 = this.add.image(_0x4edc03, _0x5a0e9, "GJ_WebSheet", "GJ_bigStar_001.png").setScale(3).setAlpha(0); - this._settingsLayerInternal.add(_0x453043); - this.tweens.add({ - targets: _0x453043, - scale: 0.8, - alpha: 1, - duration: 300, - delay: 0, - ease: "Bounce.Out" - }); - } - _hideSettingsScreen() { - if (!this._settingsLayerInternal || this._settingsScreenClosing) { - return; - } - this._settingsScreenClosing = true; - const _0x272eb1 = () => { - this._settingsScreenClosing = false; - if (this._settingsLayerOverlay) { - this._settingsLayerOverlay.destroy(); - this._settingsLayerOverlay = null; - } - if (this._settingsLayerInternal) { - this._settingsLayerInternal.destroy(); - this._settingsLayerInternal = null; - } - - if (this._pauseBtn) { - this.tweens.add({ - targets: this._pauseBtn, - alpha: 1, - duration: 300 - }); - } - }; - this.tweens.add({ - targets: this._settingsLayerOverlay, - alpha: 0, - duration: 500, - ease: "Linear" - }); - - const _0x59b9ab = { - p: 1 - }; - this.tweens.add({ - targets: _0x59b9ab, - p: 0, - duration: 500, - ease: "Quad.In", - onUpdate: () => { - this._settingsLayerInternal.y = _0x59b9ab.p * 650 - 640; - }, - onComplete: _0x272eb1 - }); - } - _showStatsScreen() { - if (this._pauseBtn) { - this.tweens.add({ - targets: this._pauseBtn, - alpha: 0, - duration: 300 - }); - } - const containerX = screenWidth / 2; - const _0x1aa656 = 320; - this._statsLayerOverlay = this.add.rectangle(containerX, _0x1aa656, screenWidth, screenHeight, 0, 0).setScrollFactor(0).setDepth(200).setInteractive(); - this._statsLayerInternal = this.add.container(0, -640).setScrollFactor(0).setDepth(201); - this.tweens.add({ - targets: this._statsLayerOverlay, - alpha: 100 / 255, - duration: 1000 - }); - const _0x59b9ab = { - p: 0 - }; - this.tweens.add({ - targets: _0x59b9ab, - p: 1, - duration: 500, - ease: "Quad.Out", - onUpdate: () => { - this._statsLayerInternal.y = _0x59b9ab.p * 650 - 640; - } - }); - const _0x595215 = 712; - const _0x950c8d = 460; - const _0x2a115c = (screenWidth - _0x595215) / 2; - this._statsLayerInternal.add(this.add.rectangle(_0x2a115c + 356, 310, _0x595215, _0x950c8d, 0xac531e)); - const _0x43f2e3 = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); - const _0x3feccc = _0x43f2e3 ? _0x950c8d / _0x43f2e3.height : 1; - this._statsLayerInternal.add(this.add.image(_0x2a115c - 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(0, 0).setScale(1, _0x3feccc)); - this._statsLayerInternal.add(this.add.image(_0x2a115c + _0x595215 + 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(1, 0).setFlipX(true).setScale(1, _0x3feccc)); - const _0x33b564 = this.add.image(_0x2a115c + 356, 70, "GJ_WebSheet", "GJ_table_top_001.png"); - this._statsLayerInternal.add(_0x33b564); - this._statsLayerInternal.add(this.add.image(_0x2a115c + 356, 560, "GJ_WebSheet", "GJ_table_bottom_001.png")); - const _0x3e9c79 = _0x33b564.y - 35; - this._statsLayerInternal.add(this.add.image(containerX - 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); - this._statsLayerInternal.add(this.add.image(containerX + 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); - this._statsLayerInternal.add(this.add.bitmapText(containerX, 65, "bigFont", "Stats", 55).setOrigin(0.5, 0.5)); - const _rowPanelTop = 102; - const _rowPanelBottom = 528; - const _rowLeft = _0x2a115c + 7.8; - const _rowRight = _0x2a115c + _0x595215 - 7.8; - const _rowWidth = _rowRight - _rowLeft; - const _rowCount = 6; - const _rowH = (_rowPanelBottom - _rowPanelTop) / _rowCount; - - const rows = [ - { label: "Total Jumps:", value: String(this._totalJumps || 0) }, - { label: "Total Attempts:", value: String(this._attempts || 1) }, - { label: "Completed Levels:", value: String(window._completedLevels || 0) }, - { label: "Total Deaths:", value: String(this._totalDeaths || 0) }, - { label: "???:", value: String(window._totalDiamonds || '?') }, - { label: "???:", value: String(window._totalOrbs || '?') }, - - ]; - rows.forEach((row, index) => { - const rowCenterY = _rowPanelTop + index * _rowH + _rowH / 2; - const bgColor = index % 2 === 0 ? 0xac531e : 0xcf6d30; - this._statsLayerInternal.add( - this.add.rectangle(containerX, rowCenterY, _rowWidth, _rowH, bgColor).setOrigin(0.5, 0.5) - ); - if (index > 0) { - this._statsLayerInternal.add( - this.add.rectangle(containerX, _rowPanelTop + index * _rowH, _rowWidth, 0.5, 0x000000).setOrigin(0.5, 0.5) - ); - } - this._statsLayerInternal.add( - this.add.bitmapText(_rowLeft + 20, rowCenterY, "goldFont", row.label, 34).setOrigin(0, 0.5) - ); - this._statsLayerInternal.add( - this.add.bitmapText(_rowRight - 20, rowCenterY, "goldFont", row.value, 34).setOrigin(1, 0.5) - ); - }); - const _0x45fc2b = [{ - frame: "GJ_arrow_03_001.png", - dx: -535, - action: () => this._hideStatsScreen() - }]; - for (const _0x2d4335 of _0x45fc2b) { - const _0xdde774 = this.add.image(containerX + _0x2d4335.dx, 30, "GJ_GameSheet03", _0x2d4335.frame).setInteractive(); - this._statsLayerInternal.add(_0xdde774); - this._makeBouncyButton(_0xdde774, 1, _0x2d4335.action); - } - } - _hideStatsScreen() { - if (!this._statsLayerInternal) { - return; - } - const _0x272eb1 = () => { - if (this._statsLayerOverlay) { - this._statsLayerOverlay.destroy(); - this._statsLayerOverlay = null; - } - if (this._statsLayerInternal) { - this._statsLayerInternal.destroy(); - this._statsLayerInternal = null; - } - if (this._pauseBtn) { - this.tweens.add({ - targets: this._pauseBtn, - alpha: 1, - duration: 300 - }); - } - }; - this.tweens.add({ - targets: this._statsLayerOverlay, - alpha: 0, - duration: 500, - ease: "Linear" - }); - const _0x59b9ab = { - p: 1 - }; - this.tweens.add({ - targets: _0x59b9ab, - p: 0, - duration: 500, - ease: "Quad.In", - onUpdate: () => { - this._statsLayerInternal.y = _0x59b9ab.p * 650 - 640; - }, - onComplete: _0x272eb1 - }); - } - _playStarAward() { - if (!this._endLayerInternal) { - return; - } - const _0x4edc03 = this._endStarX; - const _0x5a0e9 = this._endStarY; - const _0x453043 = this.add.image(_0x4edc03, _0x5a0e9, "GJ_WebSheet", "GJ_bigStar_001.png").setScale(3).setAlpha(0); - this._endLayerInternal.add(_0x453043); - this.tweens.add({ - targets: _0x453043, - scale: 0.8, - alpha: 1, - duration: 300, - delay: 0, - ease: "Bounce.Out" - }); - this.time.delayedCall(100, () => { - this._audio.playEffect("highscoreGet02"); - const _0x1204d3 = _0x4edc03; - const _0x96e3b2 = _0x5a0e9 + this._endLayerInternal.y; - this.add.particles(_0x1204d3, _0x96e3b2, "GJ_WebSheet", { - frame: "square.png", - speed: { - min: 200, - max: 600 - }, - angle: { - min: 0, - max: 360 - }, - scale: { - start: 0.5, - end: 0 - }, - alpha: { - start: 1, - end: 0 - }, - lifespan: { - min: 200, - max: 600 - }, - quantity: 30, - stopAfter: 30, - blendMode: S, - tint: 16776960 - }).setScrollFactor(0).setDepth(202); - const _0x43203f = this.add.graphics().setScrollFactor(0).setDepth(202).setBlendMode(S); - const _0x403316 = { - t: 0 - }; - this.tweens.add({ - targets: _0x403316, - t: 1, - duration: 400, - ease: "Quad.Out", - onUpdate: () => { - _0x43203f.clear(); - _0x43203f.fillStyle(16776960, 1 - _0x403316.t); - _0x43203f.fillCircle(_0x1204d3, _0x96e3b2, 20 + _0x403316.t * 200); - }, - onComplete: () => _0x43203f.destroy() - }); - }); - } - _openListScene(title, rowHeight, onBack) { - const sw = screenWidth; - const sh = screenHeight; - const objects = []; - const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(300); - fadeIn.fillStyle(0x000000, 1); - fadeIn.fillRect(0, 0, sw, sh); - this.tweens.add({ targets: fadeIn, alpha: 0, duration: 280, ease: "Linear", - onComplete: () => fadeIn.destroy() }); - - const bgGfx = this.add.graphics().setScrollFactor(0).setDepth(200); - const steps = 80; - for (let i = 0; i < steps; i++) { - const t = i / (steps - 1); - const r = 0; - const g = Math.round(0x66 * (1 - t) + 0x33 * t); - const b = Math.round(0xff * (1 - t) + 0x99 * t); - bgGfx.fillStyle((r << 16) | (g << 8) | b, 1); - bgGfx.fillRect(0, Math.floor(i * sh / steps), sw, Math.ceil(sh / steps) + 1); - } - objects.push(bgGfx); - const blocker = this.add.zone(sw / 2, sh / 2, sw, sh) - .setScrollFactor(0).setDepth(200).setInteractive(); - objects.push(blocker); - const cBL = this.add.image(0, sh, "GJ_GameSheet03", "GJ_sideArt_001.png") - .setScrollFactor(0).setDepth(201).setOrigin(1, 1).setFlipY(true).setAngle(90); - const cBR = this.add.image(sw, sh, "GJ_GameSheet03", "GJ_sideArt_001.png") - .setScrollFactor(0).setDepth(201).setOrigin(1, 0).setFlipY(false).setAngle(90); - objects.push(cBL, cBR); - const panelW = 712; - const panelH = 460; - const panelCX = sw / 2; - const panelCY = sh / 2; - const panelBg = this.add.rectangle(panelCX, panelCY + 10, panelW, panelH, 0xC2723E) - .setScrollFactor(0).setDepth(201).setOrigin(0.5); - objects.push(panelBg); - const listLeft = panelCX - panelW / 2; - const listTop = panelCY - panelH / 2 + 10; - const stripesGfx = this.add.graphics().setScrollFactor(0).setDepth(202); - objects.push(stripesGfx); - let _rowCount = 0; - const _redrawStripes = (offsetY = 0) => { - stripesGfx.clear(); - for (let ri = 0; ri < _rowCount; ri++) { - const ry = (listTop + 12) + ri * rowHeight - offsetY; - const ryBottom = ry + rowHeight; - if (ryBottom <= (listTop + 12) || ry >= listTop + panelH) continue; - const clampedY = Math.max(ry, listTop + 12); - const clampedH = Math.min(ryBottom, listTop + panelH) - clampedY; - stripesGfx.fillStyle(ri % 2 === 0 ? 0xB5652E : 0xC2723E, 1); - stripesGfx.fillRect(listLeft, clampedY, panelW, clampedH); - } - if (_rowCount > 0) { - const topDividerY = (listTop + 12) - offsetY; - if (topDividerY >= listTop + 12 && topDividerY < listTop + panelH) { - stripesGfx.fillStyle(0x000000, 0.6); - stripesGfx.fillRect(listLeft + 5, topDividerY, panelW - 10, 1.5); - } - const lastRowY = (listTop + 12) + (_rowCount - 1) * rowHeight - offsetY; - const bottomDividerY = lastRowY + rowHeight; - if (bottomDividerY > listTop + 12 && bottomDividerY <= listTop + panelH) { - stripesGfx.fillStyle(0x000000, 0.6); - stripesGfx.fillRect(listLeft + 5, bottomDividerY, panelW - 10, 1.5); - } - } - }; - - const addRow = () => { _rowCount++; _redrawStripes(); }; - const clearRows = () => { _rowCount = 0; _redrawStripes(); }; - const sideFrame = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); - const sideScaleY = sideFrame ? panelH / sideFrame.height : 1; - const leftBorder = this.add.image(listLeft - 40, 90, - "GJ_WebSheet", "GJ_table_side_001.png") - .setScrollFactor(0).setDepth(203).setOrigin(0, 0).setScale(1, sideScaleY); - objects.push(leftBorder); - const rightBorder = this.add.image(listLeft + panelW + 40, 90, - "GJ_WebSheet", "GJ_table_side_001.png") - .setScrollFactor(0).setDepth(203).setOrigin(1, 0).setFlipX(true).setScale(1, sideScaleY); - objects.push(rightBorder); - const topBorder = this.add.image(panelCX, 80, - "GJ_WebSheet", "GJ_table_top_001.png") - .setScrollFactor(0).setDepth(203).setOrigin(0.5); - objects.push(topBorder); - const bottomBorder = this.add.image(panelCX, 570, - "GJ_WebSheet", "GJ_table_bottom_001.png") - .setScrollFactor(0).setDepth(203).setOrigin(0.5); - objects.push(bottomBorder); - - if (title) { - const titleTxt = this.add.bitmapText(panelCX, panelCY - 123, "bigFont", title, 26) - .setScrollFactor(0).setDepth(204).setOrigin(0.5, 0.5); - objects.push(titleTxt); - } - const pageLbl = this.add.bitmapText(sw - 8, 3, "goldFont", "", 22) - .setScrollFactor(0).setDepth(204).setOrigin(1, 0).setVisible(false); - objects.push(pageLbl); - const backBtn = this.add.image(45, 45, "GJ_GameSheet03", "GJ_arrow_01_001.png") - .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive(); - objects.push(backBtn); - const closeOverlay = () => { - const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(400).setAlpha(0); - fadeOut.fillStyle(0x000000, 1); - fadeOut.fillRect(0, 0, sw, sh); - this.tweens.add({ targets: fadeOut, alpha: 1, duration: 160, ease: "Linear", - onComplete: () => { - for (const o of objects) if (o && o.destroy) o.destroy(); - if (onBack) onBack(); - this.tweens.add({ targets: fadeOut, alpha: 0, duration: 160, ease: "Linear", - onComplete: () => fadeOut.destroy() }); - } - }); - }; - this._makeBouncyButton(backBtn, 1, () => closeOverlay()); - const prevBtn = this.add.image(40, sh / 2, "GJ_GameSheet03", "GJ_arrow_03_001.png") - .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive().setVisible(false); - objects.push(prevBtn); - this._makeBouncyButton(prevBtn, 1, () => {}); - const nextBtn = this.add.image(sw - 40, sh / 2, "GJ_GameSheet03", "GJ_arrow_03_001.png") - .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive().setFlipX(true).setVisible(false); - objects.push(nextBtn); - this._makeBouncyButton(nextBtn, 1, () => {}); - - return { overlay: bgGfx, objects, listLeft, listTop, panelW, panelH, - panelCX, panelCY, addRow, clearRows, prevBtn, nextBtn, - pageLbl, closeOverlay, redrawStripes: _redrawStripes }; - } - _openOnlineLevelsScene(params = {}) { - if (this._onlineLevelsOverlay) return; - - const sw = screenWidth; - const sh = screenHeight; - const isFeatured = (params.type === 6); - const shell = this._openListScene( - isFeatured ? "" : "Online Levels", - 180, - () => { this._onlineLevelsOverlay = null; this._openCreatorMenu(); } - ); - const { objects, listLeft, listTop, panelW, panelH, - panelCX, panelCY, addRow, clearRows, - prevBtn, nextBtn, pageLbl, closeOverlay, redrawStripes } = shell; - - this._onlineLevelsOverlay = shell.overlay; - this._closeOnlineLevelsOverlay = closeOverlay; - if (isFeatured) { - const header = this.add.image(sw / 2, sh / 2 - 265, - "GJ_GameSheet03", "featuredLabel_001.png") - .setScrollFactor(0).setDepth(204).setOrigin(0.5); - objects.push(header); - const pageBtnGroup = this.add.container(sw - 35, sh / 2 - 240); - const pageBtn = this.add.image(0, 0, "GJ_button02").setScale(0.7); - const pageNum = this.add.bitmapText(-2, 0, "bigFont", "1", 35).setOrigin(0.5); - pageBtnGroup.add(pageBtn); - pageBtnGroup.add(pageNum); - const _pageBtnFrame = this.textures.getFrame("GJ_button02"); - const _pageBtnW = (_pageBtnFrame ? _pageBtnFrame.realWidth : 100) * 0.7; - const _pageBtnH = (_pageBtnFrame ? _pageBtnFrame.realHeight : 100) * 0.7; - pageBtnGroup.setScrollFactor(0).setDepth(205).setInteractive( - new Phaser.Geom.Rectangle(-_pageBtnW / 2, -_pageBtnH / 2, _pageBtnW, _pageBtnH), - Phaser.Geom.Rectangle.Contains - ); - objects.push(pageBtnGroup); - this._makeBouncyButton(pageBtnGroup, 1, () => { - if (!_loading) { - const nextPage = (currentPage + 1) % 10; - _setPage(nextPage); - } - }, () => true); - const updatePageNum = (page) => { - pageNum.setText(String(page + 1)); - }; - this._featuredPageUpdate = updatePageNum; - } - const spinSprite = this.add.image(sw / 2, sh / 2, "loadingCircle") - .setScrollFactor(0).setDepth(205).setOrigin(0.5).setBlendMode(Phaser.BlendModes.ADD).setAlpha(0.5); - objects.push(spinSprite); - const spinTimer = this.time.addEvent({ - delay: 16, - loop: true, - callback: () => { - if (!spinSprite.scene) { spinTimer.remove(); return; } - spinSprite.rotation += 0.1; - } - }); - objects.push({ destroy: () => spinTimer.remove() }); - const infoBtn = this.add.image(60, sh - 60, - "GJ_GameSheet03", "GJ_infoIcon_001.png") - .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive().setAngle(90); - objects.push(infoBtn); - this._makeBouncyButton(infoBtn, 1, () => { this._buildFeaturedInfoPopup(); }); - - const refreshBtn = this.add.image(sw - 55, sh - 55, - "GJ_GameSheet03", "GJ_updateBtn_001.png") - .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive().setAngle(90).setFlipY(true); - objects.push(refreshBtn); - let currentPage = 0; - const cache = {}; - let activeCellObjs = []; - let _loading = false; - let scrollOffsetY = 0; - let _lastLevelStrs = null; - let _lastLevelData = []; - const _panelBoundaryTop = listTop + 12; - const _panelBoundaryBottom = listTop + panelH - 22; - const _panelMaskShape = this.add.graphics().setScrollFactor(0); - _panelMaskShape.fillStyle(0xffffff); - _panelMaskShape.fillRect(listLeft, _panelBoundaryTop, panelW, _panelBoundaryBottom - _panelBoundaryTop); - const _panelMask = _panelMaskShape.createGeometryMask(); - objects.push(_panelMaskShape); - - const _buildLevelCell = (levelData, rowIdx) => { - const rowH = 180; - const rowY = _panelBoundaryTop + rowIdx * rowH - scrollOffsetY; - const cellObjs = []; - const rx = listLeft; - const boundaryTop = _panelBoundaryTop; - const boundaryBottom = _panelBoundaryBottom; - if (rowIdx > 0 && rowY >= boundaryTop && rowY <= boundaryBottom) { - const div = this.add.rectangle(rx + panelW / 2, rowY, panelW - 10, 1.5, 0x000000, 0.6) - .setScrollFactor(0).setDepth(203).setOrigin(0.5, 0.5); - cellObjs.push(div); - } - - return cellObjs; - }; - const _parseKV = (str) => { - const m = {}, p = str.split(":"); - for (let i = 0; i + 1 < p.length; i += 2) m[p[i]] = p[i + 1]; - return m; - }; - const _setPage = async (page) => { - if (_loading) return; - _loading = true; - currentPage = page; - for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); - activeCellObjs = []; - clearRows(); - if (isFeatured && this._featuredPageUpdate) { - this._featuredPageUpdate(page); - } - - spinSprite.setVisible(true); - refreshBtn.setVisible(false); - pageLbl.setVisible(false); - this.tweens.killTweensOf(prevBtn, "scale"); - prevBtn.setScale(1); - prevBtn._pressed = false; - prevBtn.setVisible(false); - this.tweens.killTweensOf(nextBtn, "scale"); - nextBtn.setScale(1); - nextBtn._pressed = false; - nextBtn.setVisible(false); - - try { - let response = cache[page]; - if (!response) { - const PROXY = (window._gdProxyUrl || "").replace(/\/$/, ""); - if (!PROXY) throw new Error("no proxy configured"); - const body = Object.entries({ secret: "Wmfd2893gb7", page, ...params }) - .map(([k, v]) => `${k}=${encodeURIComponent(v)}`).join("&"); - let retryCount = 0; - const maxRetries = 3; - let res; - while (retryCount < maxRetries) { - res = await fetch(`${PROXY}/getGJLevels21.php`, { - method: "POST", - headers: { "Content-Type": "application/x-www-form-urlencoded" }, - body - }); - - if (res.status === 429) { - retryCount++; - if (retryCount >= maxRetries) { - throw new Error(`rate limited after ${maxRetries} retries`); - } - await new Promise(resolve => setTimeout(resolve, 1000 * Math.pow(2, retryCount))); - continue; - } - break; - } - if (!res.ok) throw new Error(`HTTP ${res.status}`); - response = await res.text(); - if (!response || response === "-1") throw new Error("no results"); - cache[page] = response; - } - spinSprite.setVisible(false); - refreshBtn.setVisible(true); - pageLbl.setVisible(true); - prevBtn.setVisible(page > 0); - nextBtn.setVisible(true); - const sections = response.split("#"); - const levelStrs = (sections[0] || "").split("|").filter(Boolean); - const playerStrs = (sections[1] || "").split("|").filter(Boolean); - const songStrs = (sections[2] || "").split("~:~").filter(Boolean); - const pageInfo = (sections[3] || "0:0:10").split(":"); - - const playerMap = {}; - for (const ps of playerStrs) { - const p = ps.split(":"); - if (p.length >= 2) playerMap[p[0]] = p[1]; - } - const songMap = {}; - for (const ss of songStrs) { - const sp = ss.split("~|~"), sm = {}; - for (let i = 0; i + 1 < sp.length; i += 2) sm[sp[i]] = sp[i + 1]; - if (sm["1"]) songMap[sm["1"]] = sm["2"] || ""; - } - const total = parseInt(pageInfo[0]) || 0; - const offset = parseInt(pageInfo[1]) || 0; - const count = parseInt(pageInfo[2]) || 10; - const start = offset + 1; - const end = count * (page + 1); - pageLbl.setText(`${start} to ${end} of ${total}`); - const maxPages = Math.ceil(total / count); - const hasNextPage = (page + 1) < maxPages; - nextBtn.setVisible(hasNextPage); - scrollOffsetY = 0; - // wip - _lastLevelStrs = levelStrs; - _lastLevelData = levelStrs.map((ls) => { - const m = _parseKV(ls); - const rawLikes = parseInt(m["14"]) || 0; - const diffDenom = parseInt(m["8"]) || 0; - const isDemon = parseInt(m["17"]) === 1; - const isAuto = parseInt(m["25"]) === 1; - let diffIdx = 0; - if (isAuto) { - diffIdx = 11; - } else if (isDemon) { - const d9 = parseInt(m["9"]); - const d43 = parseInt(m["43"]); - if (!isNaN(d9) && d9 >= 1 && d9 <= 5) { - diffIdx = [6, 7, 8, 9, 10][d9 - 1] ?? 8; - } else if (!isNaN(d43)) { - const demonMap43 = { 3: 6, 4: 7, 0: 8, 5: 9, 6: 10 }; - diffIdx = demonMap43.hasOwnProperty(d43) ? demonMap43[d43] : 8; - } else { - diffIdx = 8; - } - } else { - const denomIdx = Math.min(6, Math.max(0, Math.round(diffDenom / 10))); - diffIdx = [0, 0, 1, 2, 3, 4, 5][denomIdx]; - } - return { - id: m["1"] || null, - name: m["2"] || "Unknown", - author: playerMap[m["6"]] || ("Player " + (m["6"] || "?")), - difficulty: diffIdx, - downloads: parseInt(m["10"]) || 0, - length: parseInt(m["15"]) || 0, - likes: rawLikes, - stars: parseInt(m["18"]) || 0, - coins: parseInt(m["37"]) || 0, - coinsVerified: m["38"] === "1", - songName: m["35"] - ? (songMap[m["35"]] || ("Song #" + m["35"])) - : ("Song #" + (m["12"] || "0")) - }; - }); - _lastLevelData.forEach((levelData, idx) => { - const cellObjs = _buildLevelCell(levelData, idx); - activeCellObjs.push(...cellObjs); - addRow(); - }); - - } catch (err) { - spinSprite.setVisible(false); - refreshBtn.setVisible(true); - } - _loading = false; - }; - prevBtn.removeAllListeners("pointerup"); - nextBtn.removeAllListeners("pointerup"); - prevBtn.on("pointerup", () => { if (!_loading && currentPage > 0) _setPage(currentPage - 1); }); - nextBtn.on("pointerup", () => { if (!_loading) _setPage(currentPage + 1); }); - this._makeBouncyButton(refreshBtn, 1, () => { delete cache[currentPage]; _setPage(currentPage); }); - const _onWheel = (pointer, gameObjects, deltaX, deltaY) => { - if (pointer.x < listLeft || pointer.x > listLeft + panelW) return; - if (pointer.y < listTop || pointer.y > listTop + panelH) return; - const maxScroll = Math.max(0, (_lastLevelStrs ? _lastLevelStrs.length : 0) * 180 - (panelH - 33)); - const newScrollOffset = Math.max(0, Math.min(scrollOffsetY + deltaY * 0.5, maxScroll)); - if (newScrollOffset !== scrollOffsetY) { - scrollOffsetY = newScrollOffset; - for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); - activeCellObjs = []; - if (_lastLevelData) _lastLevelData.forEach((levelData, idx) => { - const cellObjs = _buildLevelCell(levelData, idx); - activeCellObjs.push(...cellObjs); - }); - - redrawStripes(scrollOffsetY); - } - }; this.input.on("wheel", _onWheel); - objects.push({ destroy: () => this.input.off("wheel", _onWheel) }); - let isDragging = false; - let dragStartY = 0; - let dragStartScrollOffset = 0; - let dragThreshold = 5; - let bounceBackTween = null; - const onDragStart = (pointer) => { - if (pointer.x < listLeft || pointer.x > listLeft + panelW) return; - if (pointer.y < listTop || pointer.y > listTop + panelH) return; - if (bounceBackTween) { - bounceBackTween.destroy(); - bounceBackTween = null; - } - isDragging = true; - dragStartY = pointer.y; - dragStartScrollOffset = scrollOffsetY; - }; - const onDragMove = (pointer) => { - if (!isDragging || !pointer.isDown) return; - if (pointer.x < listLeft || pointer.x > listLeft + panelW) return; - if (pointer.y < listTop || pointer.y > listTop + panelH) return; - const deltaY = dragStartY - pointer.y; - if (Math.abs(deltaY) < dragThreshold) return; - const maxScroll = Math.max(0, (_lastLevelStrs ? _lastLevelStrs.length : 0) * 180 - (panelH - 33)); - let newScrollOffset = dragStartScrollOffset + deltaY * 0.5; - const elasticLimit = 100; - if (newScrollOffset < -elasticLimit) { - newScrollOffset = -elasticLimit; - } else if (newScrollOffset > maxScroll + elasticLimit) { - newScrollOffset = maxScroll + elasticLimit; - } - if (newScrollOffset !== scrollOffsetY) { - scrollOffsetY = newScrollOffset; - for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); - activeCellObjs = []; - if (_lastLevelData) _lastLevelData.forEach((levelData, idx) => { - const cellObjs = _buildLevelCell(levelData, idx); - activeCellObjs.push(...cellObjs); - }); - redrawStripes(scrollOffsetY); - } - }; - - const onDragEnd = () => { - isDragging = false; - const maxScroll = Math.max(0, (_lastLevelStrs ? _lastLevelStrs.length : 0) * 180 - (panelH - 33)); - let targetScrollOffset = scrollOffsetY; - if (scrollOffsetY < 0) { - targetScrollOffset = 0; - } else if (scrollOffsetY > maxScroll) { - targetScrollOffset = maxScroll; - } - if (targetScrollOffset !== scrollOffsetY) { - const startOffset = scrollOffsetY; - bounceBackTween = this.tweens.add({ - targets: { scrollOffset: startOffset }, - scrollOffset: targetScrollOffset, - duration: 300, - ease: "Quad.Out", - onStart: () => { - isDragging = false; - }, - onUpdate: () => { - scrollOffsetY = bounceBackTween.targets[0].scrollOffset; - for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); - activeCellObjs = []; - if (_lastLevelData) _lastLevelData.forEach((levelData, idx) => { - const cellObjs = _buildLevelCell(levelData, idx); - activeCellObjs.push(...cellObjs); - }); - - redrawStripes(scrollOffsetY); - }, - onComplete: () => { - bounceBackTween = null; - } - }); - } - }; - - this.input.on('pointerdown', onDragStart); - this.input.on('pointermove', onDragMove); - this.input.on('pointerup', onDragEnd); - - objects.push({ destroy: () => this.input.off('pointerdown', onDragStart) }); - objects.push({ destroy: () => this.input.off('pointermove', onDragMove) }); - objects.push({ destroy: () => this.input.off('pointerup', onDragEnd) }); - objects.push({ destroy: () => { - for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); - activeCellObjs = []; - }}); - - _setPage(0); - } - - _closeOnlineLevelsScene() { - if (this._onlineLevelsOverlay) { - if (this._closeOnlineLevelsOverlay) { - this._closeOnlineLevelsOverlay(); - } - this._onlineLevelsOverlay = null; - } - } - - _hideEndLayer(_0x272eb1) { - if (!this._endLayerInternal) { - if (_0x272eb1) { - _0x272eb1(); - } - return; - } - const _0x1215e0 = { - p: 0 - }; - this.tweens.add({ - targets: _0x1215e0, - p: 1, - duration: 500, - ease: _0xc1c75 => _0xc1c75 < 0.5 ? Math.pow(_0xc1c75 * 2, 2) / 2 : 1 - Math.pow((1 - _0xc1c75) * 2, 2) / 2, - onUpdate: () => { - this._endLayerInternal.y = _0x1215e0.p * -640; - }, - onComplete: () => { - this._endLayerInternal.destroy(); - this._endLayerInternal = null; - if (this._endLayerOverlay) { - this._endLayerOverlay.destroy(); - this._endLayerOverlay = null; - } - if (_0x272eb1) { - _0x272eb1(); - } - } - }); - this.tweens.add({ - targets: this._endLayerOverlay, - alpha: 0, - duration: 500 - }); - } -} +class PracticeMode { + constructor() { + this.checkpoints = []; + this.practiceMode = false; + this.checkpointSprites = []; + } + togglePracticeMode() { + this.practiceMode = !this.practiceMode; + if (!this.practiceMode) { + this.clearCheckpoints(); + } + return this.practiceMode; + } + saveCheckpoint(playerState, playerWorldX, cameraX, scene) { + if (!this.practiceMode) return false; + const checkpoint = { + x: playerWorldX, + y: playerState.y, + yVelocity: playerState.yVelocity, + gravityFlipped: playerState.gravityFlipped, + isMini: playerState.isMini, + isCube: playerState.isCube, + isShip: playerState.isShip, + isBall: playerState.isBall, + isUfo: playerState.isUfo, + isWave: playerState.isWave, + isSpider: playerState.isSpider, + isBird: playerState.isBird, + isDart: playerState.isDart, + isRobot: playerState.isRobot, + isSwing: playerState.isSwing, + isJetpack: playerState.isJetpack, + isFlying: playerState.isFlying, + isJumping: playerState.isJumping, + onGround: playerState.onGround, + canJump: playerState.canJump, + wasBoosted: playerState.wasBoosted, + rotation: playerState.rotation, + gravity: playerState.gravity, + jumpPower: playerState.jumpPower, + mirrored: playerState.mirrored, + isDashing: playerState.isDashing, + dashYVelocity: playerState.dashYVelocity, + cameraX: cameraX, + flyCeilingY: scene._level._flyCeilingY, + flyGroundActive: scene._level._flyGroundActive, + flyVisualOnly: scene._level._flyVisualOnly, + groundTargetValue: scene._level._groundTargetValue, + flyCameraTarget: scene._level.flyCameraTarget, + groundAnimating: scene._level._groundAnimating, + groundAnimFrom: scene._level._groundAnimFrom, + groundAnimTo: scene._level._groundAnimTo, + groundAnimTime: scene._level._groundAnimTime, + groundAnimDuration: scene._level._groundAnimDuration, + cameraY: scene._cameraY, + groundStartScreenY: scene._level._groundStartScreenY, + ceilingStartScreenY: scene._level._ceilingStartScreenY, + groundY: scene._level._groundY, + ceilingY: scene._level._ceilingY, + speed: playerSpeed, + physicsFrame: scene._physicsFrame, + timestamp: Date.now() + }; + this.checkpoints.push(checkpoint); + const checkpointSprite = scene.add.image(playerWorldX, b(playerState.y), "GJ_GameSheet02", "checkpoint_01_001.png") + .setOrigin(0.5, 0.5) + .setScrollFactor(1) + .setDepth(15) + .setScale(1.0); + scene._level.topContainer.add(checkpointSprite); + this.checkpointSprites.push(checkpointSprite); + return true; + } + deleteLastCheckpoint() { + if (this.checkpoints.length > 0) { + this.checkpoints.pop(); + if (this.checkpointSprites.length > 0) { + const lastSprite = this.checkpointSprites.pop(); + if (lastSprite && lastSprite.destroy) { + lastSprite.destroy(); + } + } + return true; + } + return false; + } + clearCheckpoints() { + this.checkpoints = []; + for (const sprite of this.checkpointSprites) { + if (sprite && sprite.destroy) { + sprite.destroy(); + } + } + this.checkpointSprites = []; + } + loadLastCheckpoint() { + if (this.checkpoints.length > 0) { + return this.checkpoints[this.checkpoints.length - 1]; + } + return null; + } +} + +class MacroBot { + constructor(scene) { + this.scene = scene; + this.resetAll(); + } + + resetAll() { + this.recording = false; + this.playing = false; + + this.cursor = 0; + this.isDown = false; + + this.inputs = []; + + this.meta = { + author: "Web Dashers", + level: "", // ill fix ts later + version: 1 + }; + } + + startRecording(meta = {}) { + this.resetAll(); + this.recording = true; + this.meta = { ...meta }; + } + + stopRecording() { + this.recording = false; + return this.exportObject(); + } + + clearRecording() { + this.inputs = []; + this.cursor = 0; + this.isDown = false; + } + + rollbackRecording(currentFrame) { + this.inputs = this.inputs.filter(ev => (ev.frame ?? 0) <= currentFrame); + this.cursor = 0; + this.isDown = false; + } + + clearPlayback() { + this.cursor = 0; + this.isDown = false; + } + + rollbackPlayback(currentFrame) { + if (!this.inputs.length) return; + + this.cursor = 0; + this.isDown = false; + + this.scene._releaseButton(true); + + while ( + this.cursor < this.inputs.length && + (this.inputs[this.cursor].frame ?? 0) <= currentFrame + ) { + const ev = this.inputs[this.cursor++]; + + if (ev.down) { + this.scene._pushButton(true); + this.isDown = true; + } else { + this.scene._releaseButton(true); + this.isDown = false; + } + } + } + + startPlayback(macroData) { + const macro = typeof macroData === "string" ? JSON.parse(macroData) : macroData; + + this.resetAll(); + this.playing = true; + + this.meta = { + ...this.meta, + ...(macro || {}) + }; + + this.inputs = Array.isArray(macro?.inputs) ? macro.inputs.slice() : []; + this.inputs.sort((a, b) => (a.frame ?? 0) - (b.frame ?? 0)); + + this.cursor = 0; + this.isDown = false; + } + + stopPlayback() { + this.playing = false; + this.cursor = 0; + this.isDown = false; + } + + recordEdge(down, currentFrame) { + if (!this.recording) return; + + const last = this.inputs[this.inputs.length - 1]; + if (last && last.down === !!down && last.frame === currentFrame) { + return; + } + + this.inputs.push({ + frame: currentFrame, + down: !!down + }); + + this.isDown = !!down; + } + + step(currentFrame) { + if (!this.playing) return; + + while ( + this.cursor < this.inputs.length && + (this.inputs[this.cursor].frame ?? 0) <= currentFrame + ) { + const ev = this.inputs[this.cursor++]; + + if (ev.down) { + if (!this.isDown) { + this.scene._pushButton(true); + this.isDown = true; + } + } else { + if (this.isDown) { + this.scene._releaseButton(true); + this.isDown = false; + } + } + } + } + + exportObject() { + return { + meta: this.meta, + inputs: this.inputs.slice() + }; + } + + exportString(pretty = false) { + return JSON.stringify(this.exportObject(), null, pretty ? 2 : 0); + } + + download(filename = "macro.wbgdr") { + const blob = new Blob([this.exportString(true)], { type: "application/json" }); + const url = URL.createObjectURL(blob); + const a = document.createElement("a"); + a.href = url; + a.download = filename; + document.body.appendChild(a); + a.click(); + a.remove(); + URL.revokeObjectURL(url); + } + + importFile(file) { + return new Promise((resolve, reject) => { + const reader = new FileReader(); + reader.onload = (event) => { + try { + const text = String(event.target.result || ""); + const macro = JSON.parse(text); + resolve(macro); + } catch (err) { + reject(err); + } + }; + reader.onerror = () => reject(reader.error || new Error("Failed to read macro file")); + reader.readAsText(file); + }); + } +} + +class GameScene extends Phaser.Scene { + constructor() { + super({ + key: "GameScene" + }); + } + create() { + this._bgSpeedX = 0.1; + this._bgSpeedY = 0.1; + this._menuCameraX = -centerX; + this._prevCameraX = -centerX; + this._bg = this.add.tileSprite(0, 0, screenWidth, screenHeight, "game_bg_01").setOrigin(0, 0).setScrollFactor(0).setDepth(-10); + const _0x15d27a = this.textures.get("game_bg_01").source[0].height; + this._bgInitY = _0x15d27a - screenHeight - o; + this._cameraX = -centerX; + this._cameraY = 0; + this._cameraXRef = { + get value() { + return this._v; + }, + _v: -centerX + }; + this._state = new PlayerState(); + this._level = new window.LevelObject(this, this._cameraXRef); + this._orbGfx = null; + this._orbGfxTimer = 0; + this._player = new PlayerObject(this, this._state, this._level); + this._state2 = new PlayerState(); + this._player2 = new PlayerObject(this, this._state2, this._level); + this._isDual = false; + this._player2.setCubeVisible(false); + this._player2.setShipVisible(false); + this._player2.setBallVisible(false); + this._player2.setWaveVisible(false); + this._colorManager = new ColorManager(); + this._practicedMode = new PracticeMode(); + if (this._audio == null) { + this._audio = new AudioManager(this); + } + if (window._onlineLevelString && window._onlineLevelId && + window.currentlevel[2] === window._onlineLevelId) { + try { + this.cache.text.entries.set(window._onlineLevelId, window._onlineLevelString); + } catch(e) {} + } + let _0x591888 = this.cache.text.get(window.currentlevel[2]); + if (!_0x591888 && window._onlineLevelString && window.currentlevel[2] === window._onlineLevelId) { + _0x591888 = window._onlineLevelString; + } + if (_0x591888) { + this._level.loadLevel(_0x591888); + } + const _bgId = window._backgroundId || "01"; + const _bgKey = "game_bg_" + (parseInt(_bgId, 10) - 1); + if (this.textures.exists(_bgKey)) { + this._bg.setTexture(_bgKey); + const _newBgH = this.textures.get(_bgKey).source[0].height; + this._bgInitY = _newBgH - screenHeight - o; + } + this._level.applyGroundTexture(); + if (this._level._initialColors) { + for (let chId in this._level._initialColors) { + let col = this._level._initialColors[chId]; + this._colorManager.setInitialColor(parseInt(chId, 10), col); + } + } + this._level.createEndPortal(this); + this._glitterCenterX = 0; + this._glitterCenterY = T; + this._glitterEmitter = this.add.particles(0, 0, "GJ_WebSheet", { + frame: "square.png", + speed: 0, + scale: { + start: 0.375, + end: 0 + }, + alpha: { + start: 1, + end: 0 + }, + lifespan: { + min: 200, + max: 1800 + }, + frequency: 60, + blendMode: S, + tint: window.mainColor, + emitting: false, + emitCallback: _0x3c2a3e => { + _0x3c2a3e.x = this._glitterCenterX + (Math.random() * 2 - 1) * (screenWidth / 1.8); + _0x3c2a3e.y = this._glitterCenterY + (Math.random() * 2 - 1) * 320; + } + }); + this._level.additiveContainer.add(this._glitterEmitter); + this._bg.setTint(this._colorManager.getHex(fs)); + this._level.setGroundColor(this._colorManager.getHex(gs)); + this._level.additiveContainer.setVisible(false); + this._level.container.setVisible(false); + this._level.topContainer.setVisible(false); + this._attempts = parseInt(localStorage.getItem("gd_totalAttempts") || "1", 10); + this._bestPercent = 0; + this._lastPercent = 0; + this._practiceBestPercent = parseFloat(localStorage.getItem("practiceBestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); + this._endPortalGameY = 240; + this._resetGameplayState(); + this._totalJumps = parseInt(localStorage.getItem("gd_totalJumps") || "0", 10); + this._totalDeaths = parseInt(localStorage.getItem("gd_totalDeaths") || "0", 10); + window._completedLevels = parseInt(localStorage.getItem("gd_completedLevels") || "0", 10); + this._playTime = 0; + this._menuActive = true; + this._slideIn = false; + this._slideGroundX = null; + this._firstPlay = true; + this._player.setCubeVisible(false); + this._player.setShipVisible(false); + this._player.setBallVisible(false); + this._logo = this.add.image(0, 100, "GJ_WebSheet", "GJ_logo_001.png").setScrollFactor(0).setDepth(30); + this._robLogo = this.add.image(110, 595, "GJ_WebSheet", "RobTopLogoBig_001.png").setScrollFactor(0).setDepth(30).setScale(0.525).setInteractive(); + this._makeBouncyButton(this._robLogo, 0.525, () => { + window.open("https://geometrydash.com", "_blank"); + }, () => this._menuActive); + const _socialIconDefs = [ + {frame: "", url: "", angle: 0, row: 0, col: 0 }, + {frame: "", url: "", angle: 0, row: 0, col: 1 }, + {frame: "", url: "", angle: 0, row: 0, col: 2 }, + {frame: "", url: "", angle: 0, row: 0, col: 3 }, + + { frame: "gj_twIcon_001.png", url: "https://x.com/rohanis0000gd", angle: -90, flipX: true, row: 1, col: 0 }, + { frame: "gj_ytIcon_001.png", url: "https://www.youtube.com/@rohanis0000gd", angle: 0, row: 1, col: 1 }, + { frame: "gj_tiktokIcon_001.png", url: "https://www.tiktok.com/@rohanis00000", angle: -90, flipX: true, row: 1, col: 2 }, + { frame: "gj_githubIcon_001.png", url: "https://github.com/web-dashers/web-dashers.github.io", angle: 0, row: 1, col: 3 }, + + {frame: "", url: "", angle: 0, row: 2, col: 0 }, + {frame: "", url: "", angle: 0, row: 2, col: 1 }, + {frame: "", url: "", angle: 0, row: 2, col: 2 }, + { frame: "gj_discordIcon_001.png", url: "https://discord.gg/TfEzAVWPSJ", angle: 90, row: 2, col: 3 }, + + + //{ frame: "gj_instaIcon_001.png", url: "https://www.instagram.com/", angle: -90, flipX: true, row: 1, col: 3 }, + //{ frame: "gj_twitchIcon_001.png", url: "https://www.twitch.tv/", angle: -90, flipX: true, row: 0, col: 0 }, + //{ frame: "gj_fbIcon_001.png", url: "https://www.facebook.com/", angle: 0, row: 0, col: 0 }, + //{ frame: "gj_rdIcon_001.png", url: "https://www.reddit.com/r/geometrydash/", angle: -90, flipX: true, row: 0, col: 0 }, + + ]; + const _socialScale = 0.75; + this._socialIcons = _socialIconDefs.map((def, index) => { + const icon = this.add.image(0, 0, "GJ_GameSheet03", def.frame) + .setScrollFactor(0) + .setDepth(30) + .setScale(_socialScale) + .setAngle(def.angle) + .setFlipX(!!def.flipX); + + if (!def.frame || def.frame.trim() === "") { + icon.setVisible(false); + icon.setActive(false); + return icon; + } + icon.setInteractive(); + this._makeBouncyButton(icon, _socialScale, () => { + window.open(def.url, "_blank"); + }, () => this._menuActive); + + return icon; + }); + + this._copyrightText = this.add.text(0, 625, "© 2026 RobTop Games · geometrydash.com", { + fontSize: "14px", + color: "#ffffff", + fontFamily: "Arial" + }).setOrigin(1, 1).setScrollFactor(0).setDepth(30).setAlpha(0.3); + this._tryMeImg = this.add.image(0, 182.5, "GJ_WebSheet", "tryMe_001.png").setScrollFactor(0).setDepth(30); + this._downloadBtns = []; + const _0x4fc67f = [{ + key: "downloadSteam_001", + url: "https://github.com/web-dashers/web-dashers.github.io" + }, + { + key: "downloadApple_001", + url: "https://discord.gg/TfEzAVWPSJ" + }]; + for (let _0xfeaf5c = 0; _0xfeaf5c < _0x4fc67f.length; _0xfeaf5c++) { + const _0x1ce2a6 = _0x4fc67f[_0xfeaf5c]; + const _0x6bf69f = 1 / 1.5; + const _0x1d293f = this.add.image(0, 0, "GJ_WebSheet", _0x1ce2a6.key + ".png").setScrollFactor(0).setDepth(30).setScale(_0x6bf69f).setInteractive(); + this._makeBouncyButton(_0x1d293f, _0x6bf69f, () => window.open(_0x1ce2a6.url, "_blank"), () => this._menuActive); + this._downloadBtns.push(_0x1d293f); + } + const _0x28fa5b = this.scale.isFullscreen; +this._menuFsBtn = this.add.image(33, 33, "GJ_WebSheet", _0x28fa5b ? "toggleFullscreenOff_001.png" : "toggleFullscreenOn_001.png").setScrollFactor(0).setDepth(30).setScale(0.64).setAlpha(0.8).setTint(Phaser.Display.Color.GetColor(255, 255, 255)).setInteractive(); + this._expandHitArea(this._menuFsBtn, 1.5); + this._makeBouncyButton(this._menuFsBtn, 0.64, () => { + const _0x26b7c = !this.scale.isFullscreen; + this._menuFsBtn.setTexture("GJ_WebSheet", _0x26b7c ? "toggleFullscreenOff_001.png" : "toggleFullscreenOn_001.png"); + this._expandHitArea(this._menuFsBtn, 1.5); + this._toggleFullscreen(); + }, () => this._menuActive); + this._menuInfoBtn = this.add.image(screenWidth + 20, 33, "GJ_GameSheet03", "communityCreditsBtn_001.png").setScrollFactor(0).setDepth(30).setScale(0.64).setTint(Phaser.Display.Color.GetColor(255, 255, 255)).setInteractive(); + this._expandHitArea(this._menuInfoBtn, 1.5); + this._makeBouncyButton(this._menuInfoBtn, 0.64, () => { + this._buildInfoPopup(); + }, () => this._menuActive && !this._infoPopup); +this._menuUpdateLogBtn = this.add.image(screenWidth - 30 - 50, 33, "GJ_WebSheet", "GJ_infoIcon_001.png").setScrollFactor(0).setDepth(30).setScale(0.64).setTint(Phaser.Display.Color.GetColor(255, 255, 255)).setInteractive(); + this._expandHitArea(this._menuUpdateLogBtn, 1.5); + this._makeBouncyButton(this._menuUpdateLogBtn, 0.64, () => { + this._buildUpdateLogPopup(); + }, () => this._menuActive && !this._updateLogPopup); + this._menuSettingsBtn = this.add.image(centerX + 92, screenHeight - 90, "GJ_GameSheet03", "GJ_optionsBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setRotation(-Math.PI / 2).setFlipX(true); + this._expandHitArea(this._menuSettingsBtn, 1); + this._makeBouncyButton(this._menuSettingsBtn, 1, () => { + this._showSettingsScreen(); + }, () => this._menuActive && !this._settingsPopup); + this._menuStatsBtn = this.add.image(centerX + 202, screenHeight - 90, "GJ_GameSheet03", "GJ_statsBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setRotation(-Math.PI / 2).setFlipX(true); + this._expandHitArea(this._menuStatsBtn, 1); + this._makeBouncyButton(this._menuStatsBtn, 1, () => { + this._showStatsScreen(); + }, () => this._menuActive); + this._menuAchievementsBtn = this.add.image(centerX - 12, screenHeight - 90, "GJ_GameSheet03", "GJ_achBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setTint(0x666666); + this._expandHitArea(this._menuAchievementsBtn, 1); + this._makeBouncyButton(this._menuAchievementsBtn, 1, () => { + }, () => this._menuActive); + this._menuNewgroundsBtn = this.add.image(centerX + 312, screenHeight - 90, "GJ_GameSheet03", "GJ_ngBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setRotation(-Math.PI / 2).setFlipX(true); + this._expandHitArea(this._menuNewgroundsBtn, 1); + this._makeBouncyButton(this._menuNewgroundsBtn, 1, () => { + this._buildNewgroundsPopup(); + }, () => this._menuActive && !this._newgroundsPopup); + this._menuGlitter = this.add.particles(0, 0, "GJ_WebSheet", { + frame: "square.png", + speed: 0, + scale: { + start: 0.5, + end: 0 + }, + alpha: { + start: 0.6, + end: 0.2 + }, + lifespan: { + min: 1000, + max: 2000 + }, + frequency: 35, + blendMode: S, + tint: 20670, + x: { + min: -130, + max: 130 + }, + y: { + min: -100, + max: 100 + } + }).setScrollFactor(0).setDepth(29); + this._playBtn = this.add.image(0, 0, "GJ_GameSheet04", "GJ_playBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive(); + this._playBtnPressed = false; + this._makeBouncyButton(this._playBtn, 1, () => { + this._openLevelSelect(); + }, () => this._menuActive && !this._playBtnPressed && !this._levelSelectOverlay); + // creator stuff + this._creatorBtn = this.add.image(0, 0, "GJ_GameSheet04", "GJ_creatorBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setScale(1); + this._creatorOverlay = null; + this._creatorOverlayObjects = null; + + this._openCreatorMenu = () => { + if (this._creatorOverlay) return; + this._creatorMenuOpen = true; + + const sw = screenWidth; + const sh = screenHeight; + + const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); + fadeIn.fillStyle(0x000000, 1); + fadeIn.fillRect(0, 0, sw, sh); + this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); + + const overlay = this.add.graphics().setScrollFactor(0).setDepth(100); + const gradientSteps = 80; + for (let gi = 0; gi < gradientSteps; gi++) { + const t = gi / (gradientSteps - 1); + const r1 = Math.round(0x00 + (0x01 - 0x00) * t); + const g1 = Math.round(0x65 + (0x2c - 0x65) * t); + const b1 = Math.round(0xff + (0x71 - 0xff) * t); + const bandColor = (r1 << 16) | (g1 << 8) | b1; + const bandY = Math.floor(gi * sh / gradientSteps); + const bandH = Math.ceil(sh / gradientSteps) + 1; + overlay.fillStyle(bandColor, 1); + overlay.fillRect(0, bandY, sw, bandH); + } + this._creatorOverlay = overlay; + + const blocker = this.add.zone(sw / 2, sh / 2, sw, sh) + .setScrollFactor(0).setDepth(101).setInteractive(); + + const cornerTL = this.add.image(0, 0, "GJ_GameSheet03", "GJ_sideArt_001.png") + .setScrollFactor(0).setDepth(100).setOrigin(1, 0).setFlipX(false).setAngle(-90) + const cornerBL = this.add.image(0, sh, "GJ_GameSheet03", "GJ_sideArt_001.png") + .setScrollFactor(0).setDepth(152).setOrigin(1, 1).setFlipY(true).setAngle(90) + + const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_03_001.png") + .setScrollFactor(0).setDepth(104).setFlipX(true).setFlipY(true) + .setRotation(Math.PI).setInteractive(); + this._makeBouncyButton(backBtn, 1, () => this._closeCreatorMenu()); + + this._creatorOverlayObjects = [overlay, blocker, cornerTL, cornerBL, backBtn]; + + const menuButtons = [ + "GJ_createBtn_001.png", + "GJ_savedBtn_001.png", + "GJ_highscoreBtn_001.png", + "GJ_challengeBtn_001.png", + "GJ_versusBtn_001.png", + "GJ_mapBtn_001.png", + "GJ_dailyBtn_001.png", + "GJ_weeklyBtn_001.png", + "GJ_eventBtn_001.png", + "GJ_gauntletsBtn_001.png", + "GJ_featuredBtn_001.png", + "GJ_listsBtn_001.png", + "GJ_pathsBtn_001.png", + "GJ_mapPacksBtn_001.png", + "GJ_searchBtn_001.png", + ]; + + const cols = 5; + const btnScale = 0.77; + const btnSize = 209 * btnScale; + const gapX = 18; + const gapY = 18; + const gridW = cols * btnSize + (cols - 1) * gapX; + const gridStartX = sw / 2 - gridW / 2 + btnSize / 2; + const rows = Math.ceil(menuButtons.length / cols); + const gridH = rows * btnSize + (rows - 1) * gapY; + const gridStartY = sh / 2 - gridH / 2 + btnSize / 2; + menuButtons.forEach((frame, idx) => { + const col = idx % cols; + const row = Math.floor(idx / cols); + const bx = gridStartX + col * (btnSize + gapX); + const by = gridStartY + row * (btnSize + gapY); + const btn = this.add.image(bx, by, "GJ_GameSheet04", frame) + .setScrollFactor(0).setDepth(104).setScale(btnScale); + const isSearchButton = frame === "GJ_searchBtn_001.png"; + const isFeaturedButton = frame === "GJ_featuredBtn_001.png"; + const isEditorButton = frame === "GJ_createBtn_001.png"; + if (isSearchButton) { + btn.setInteractive(); + this._makeBouncyButton(btn, btnScale, () => { + this._closeCreatorMenu(true); + this._openSearchMenu(); + }, () => true); + } else if (isFeaturedButton) { + btn.setInteractive(); + this._makeBouncyButton(btn, btnScale, () => { + this._closeCreatorMenu(true); + this._openOnlineLevelsScene({ type: 6 }); + }, () => true); + } else if (isEditorButton) { + btn.setInteractive(); + this._makeBouncyButton(btn, btnScale, () => { + this._closeCreatorMenu(true); + this._openEditorMenu(); + }, () => true); + } else { + btn.setTint(0x666666); + } + this._creatorOverlayObjects.push(btn); + }); + }; + this._searchOverlay = null; + this._searchOverlayObjects = []; + this._openEditorMenu = () => { + if (this._editorOverlay) return; + const sw = screenWidth; + const sh = screenHeight; + const centerX = sw / 2; + + const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); + fadeIn.fillStyle(0x000000, 1); + fadeIn.fillRect(0, 0, sw, sh); + this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); + + const overlay = this.add.graphics().setScrollFactor(0).setDepth(100); + const gradientSteps = 80; + for (let gi = 0; gi < gradientSteps; gi++) { + const t = gi / (gradientSteps - 1); + const r1 = Math.round(0x00 + (0x01 - 0x00) * t); + const g1 = Math.round(0x65 + (0x2c - 0x65) * t); + const b1 = Math.round(0xff + (0x71 - 0xff) * t); + const bandColor = (r1 << 16) | (g1 << 8) | b1; + overlay.fillStyle(bandColor, 1); + overlay.fillRect(0, Math.floor(gi * sh / gradientSteps), sw, Math.ceil(sh / gradientSteps) + 1); + } + this._editorOverlay = overlay; + + const blocker = this.add.zone(centerX, sh / 2, sw, sh).setScrollFactor(0).setDepth(101).setInteractive(); + const container = this.add.container(0, 0).setScrollFactor(0).setDepth(102); + + const tableW = 712; + const tableH = 460; + const tableX = (sw - tableW) / 2; + const tableY = 85; + + const rawData = localStorage.getItem("created_levels"); + const createdLevels = rawData ? JSON.parse(rawData) : []; + + createdLevels.sort((a, b) => { + const idA = parseInt(a.createdId.replace("local_", "")) || 0; + const idB = parseInt(b.createdId.replace("local_", "")) || 0; + return idB - idA; + }); + + const nameCounts = {}; + const levelRevisions = {}; + + createdLevels.forEach(lvl => { + const name = lvl.levelName; + if (!nameCounts[name]) { + nameCounts[name] = 1; + levelRevisions[lvl.createdId] = ""; + } else { + levelRevisions[lvl.createdId] = `Rev. ${nameCounts[name]}`; + nameCounts[name]++; + } + }); + + const lengthValues=[ + "Tiny", "Short", "Medium", "Long", "XL" + ] + + const listContainer = this.add.container(0, 0); + const maskShape = this.add.graphics().fillStyle(0xffffff).fillRect(tableX, tableY, tableW, tableH).setVisible(false); + const mask = maskShape.createGeometryMask(); + listContainer.setMask(mask); + container.add(this.add.graphics().setScrollFactor(0).setDepth(90).fillStyle(0xc2723e, 1).fillRect(tableX, tableY, tableW, tableH)); + container.add(listContainer); + + createdLevels.forEach((level, index) => { + const spacing = 100; + const slotY = (index * spacing) + (spacing / 2); + + const isOdd = index % 2 !== 0; + const stripeColor = isOdd ? 0xc2723e : 0xa1582c; + + const bgStripe = this.add.rectangle(centerX, slotY, tableW - 10, spacing, stripeColor, 1); + const separator = this.add.rectangle(centerX, slotY + (spacing / 2), tableW - 10, 1, 0x502c16, 1); + const nameTxt = this.add.bitmapText(tableX + 20, slotY - 22, "bigFont", level.levelName, 32).setOrigin(0, 0.5); + const revLabel = levelRevisions[level.createdId]; + const revText = this.add.bitmapText( + nameTxt.x + nameTxt.width + 10, + nameTxt.y + 5, + "goldFont", + revLabel, + 20 + ).setOrigin(0, 0.5); + const infoY = slotY + 18; + const lenIcon = this.add.image(tableX + 35, infoY, "GJ_GameSheet03", "GJ_timeIcon_001.png").setScale(0.65); + const lenTxt = this.add.bitmapText(lenIcon.x + 22, infoY, "bigFont", lengthValues[level.levelLength], 18).setOrigin(0, 0.5); + const songIcon = this.add.image(tableX + 150, infoY, "GJ_GameSheet03", "GJ_musicIcon_001.png").setScale(0.65); + const songTxt = this.add.bitmapText(songIcon.x + 22, infoY, "bigFont", level.song, 18).setOrigin(0, 0.5); + const statusIcon = this.add.image(tableX + 380, infoY, "GJ_GameSheet03", "GJ_infoIcon_001.png").setScale(0.65).setFlipY(true).setAngle(90); + const statusTxt = this.add.bitmapText(statusIcon.x + 22, infoY, "bigFont", level.status, 18).setOrigin(0, 0.5); + + const viewBtn = this.add.nineslice(tableX + tableW - 80, slotY, "GJ_button01", null, 120, 60, 24, 24, 24, 24 ).setScale(0.75).setInteractive(); + const viewTxt = this.add.bitmapText(viewBtn.x - 2, viewBtn.y - 1, "bigFont", "View", 32).setOrigin(0.5).setScale(0.8); + + this._makeBouncyButton(viewBtn, 0.75, () => { + this._closeEditorMenu(false); + this._openLevelView(level); + }); + + listContainer.add([bgStripe, separator, nameTxt, revText, lenIcon, lenTxt, songIcon, songTxt, statusIcon, statusTxt, viewBtn, viewTxt]); + }); + if (createdLevels.length === 0) { + container.add(this.add.bitmapText(centerX, tableY + (tableH/2), "bigFont", "No Levels", 30).setOrigin(0.5).setAlpha(0.5)); + } + const sideFrame = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); + const sideScaleY = tableH / sideFrame.height; + container.add(this.add.image(tableX - 40, tableY, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(0, 0).setScale(1, sideScaleY)); + container.add(this.add.image(tableX + tableW + 40, tableY, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(1, 0).setFlipX(true).setScale(1, sideScaleY)); + container.add(this.add.image(centerX, tableY - 10, "GJ_WebSheet", "GJ_table_top_001.png")); + container.add(this.add.image(centerX, tableY + tableH + 20, "GJ_WebSheet", "GJ_table_bottom_001.png")); + container.add(this.add.bitmapText(centerX, tableY - 15, "bigFont", "My Levels", 42).setOrigin(0.5).setScale(1.1)); + + let startY = tableY; + const listHeight = createdLevels.length * 100; + const minY = tableY - Math.max(0, listHeight - tableH) - 10; + const maxY = tableY + 22; + + listContainer.y = maxY; + this._scrollTargetY = maxY; + this.input.on('wheel', (pointer, gameObjects, deltaX, deltaY, deltaZ) => { + if (!this._editorOverlay) return; + this._scrollTargetY -= deltaY; + this._scrollTargetY = Phaser.Math.Clamp(this._scrollTargetY, minY, maxY); + + this.tweens.add({ + targets: listContainer, + y: this._scrollTargetY, + duration: 250, + ease: 'Power2', + overwrite: true + }); + }); + blocker.on('pointerdown', (pointer) => { + startY = pointer.y - listContainer.y; + }); + + blocker.on('pointermove', (pointer) => { + if (pointer.isDown) { + listContainer.y = pointer.y - startY; + listContainer.y = Phaser.Math.Clamp(listContainer.y, minY, maxY); + } + }); + + const newBtnX = sw - 60; + const newBtnY = sh - 55; + const newBtn = this.add.image(newBtnX, newBtnY, "GJ_GameSheet03", "GJ_newBtn_001.png") + .setScale(0.9) + .setInteractive(); + + this._makeBouncyButton(newBtn, 0.9, () => { + const rawData = localStorage.getItem("created_levels"); + let createdLevels = rawData ? JSON.parse(rawData) : []; + + let counter = 0; + while (createdLevels.some(lvl => lvl.levelName === "Unnamed " + counter)) { + counter++; + } + const newName = "Unnamed " + counter; + + const newLevel = { + levelName: newName, + song: "Stereo Madness", + songId: -1, + levelId: null, + levelString: "H4sIAAAAAAAACq1QwRHDMAhbyO0hwIlzfWWGDsAAXaHD10Z-9Ff3Ln4gG4GMeD2tFYRLaEBrWGitARCUwKTHDbEFRCT2wF3yBOrXvYVEC7wRKSi6JoirBY8FwdHB9iVJjZ5ckP1rlf19taIv7pLGh-wP43XROPq9z9mOtX1uS7LldcKKzPx41ZKwEbz0yPueUSfPF9qApx3kMlrGJE7PSBbCIlYpy5QVuheMciE0AgiaoFRUihk5I2ec0Knp1PTK9slxYDM2OIFmjL8bv-1mBmB6YrvO4UErHR4fJXMaP9sDAAA=", + levelLength: 0, + normalBest: 0, + practiceBest: 0, + description: "", + version: 1, + status: "Unverified", + createdId: this._getNextLocalId() + }; + + createdLevels.push(newLevel); + localStorage.setItem("created_levels", JSON.stringify(createdLevels)); + + this._closeEditorMenu(); + this._openLevelView(newLevel); + + this._audio.playEffect("build_01"); + }); + container.add(newBtn); + + const importBtn = this.add.image(newBtnX, newBtnY - 90, "import").setScale(0.3).setInteractive(); + this._makeBouncyButton(importBtn, 0.3, () => { + this._importGMD(); + }); + container.add(importBtn); + + const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_03_001.png") + .setScrollFactor(0).setDepth(104).setFlipX(true).setFlipY(true).setRotation(Math.PI).setInteractive(); + + this._makeBouncyButton(backBtn, 1, () => { + this._closeEditorMenu(); + this._openCreatorMenu(); + }); + + this._editorObjects = [overlay, blocker, container, backBtn, maskShape]; + }; + this._importGMD = () => { + const fileInput = document.createElement('input'); + fileInput.type = 'file'; + fileInput.accept = '.gmd'; + + fileInput.onchange = (e) => { + const file = e.target.files[0]; + if (!file) return; + + const reader = new FileReader(); + reader.onload = (event) => { + const content = event.target.result; + try { + const parser = new DOMParser(); + const xmlDoc = parser.parseFromString(content, "text/xml"); + const keys = xmlDoc.querySelectorAll("key, k"); + + let extracted = { + name: "Imported Level", + data: "", + version: 1, + length: 0, + id: "NA", + desc: "", + officialSongId: 0, + customSongId: 0 + }; + + keys.forEach(keyNode => { + const k = keyNode.textContent; + const v = keyNode.nextElementSibling; + if (!v) return; + const val = v.textContent; + + if (k === "k2") extracted.name = val; + if (k === "k4") extracted.data = val; + if (k === "k1") extracted.id = val; + if (k === "k23") extracted.length = parseInt(val) || 0; + if (k === "k16") extracted.version = parseInt(val) || 1; + if (k === "k8") extracted.officialSongId = parseInt(val) || 0; + if (k === "k45") extracted.customSongId = parseInt(val) || 0; + if (k === "k3") { + try { extracted.desc = atob(val); } catch(e) { extracted.desc = val; } + } + }); + + if (!extracted.data) throw new Error("No level string found."); + + let finalSongName = "Stereo Madness"; + let finalSongId = -1; + + if (extracted.customSongId > 0) { + finalSongId = extracted.customSongId; + finalSongName = `NG#${extracted.customSongId}`; + } else { + finalSongId = -extracted.officialSongId -1; + try { + finalSongName = window.allLevels[extracted.officialSongId][1]; + } catch(e) { + finalSongName = "Unknown"; + } + } + + const rawLevels = localStorage.getItem("created_levels"); + let createdLevels = rawLevels ? JSON.parse(rawLevels) : []; + + const newLevel = { + levelName: extracted.name, + song: finalSongName, + songId: finalSongId, + levelId: (extracted.id === "0" || !extracted.id) ? "NA" : extracted.id, + levelString: extracted.data, + levelLength: extracted.length, + normalBest: 0, + practiceBest: 0, + description: extracted.desc || "", + version: extracted.version, + status: "Unverified", + createdId: this._getNextLocalId() + }; + + createdLevels.push(newLevel); + localStorage.setItem("created_levels", JSON.stringify(createdLevels)); + + this._closeEditorMenu(false); + this._openLevelView(newLevel); + + } catch (err) { + console.error("GMD Import Error:", err); + alert("Failed to parse .gmd: " + err.message); + } + }; + reader.readAsText(file); + }; + + fileInput.click(); + }; + this._exportGMD = (level) => { + const encodedDesc = btoa(level.description || ""); + const authorName = "Web Dashers"; + + const officialSong = level.songId < 0 ? Math.abs(level.songId) : 0; + const customSong = level.songId > 0 ? level.songId : 0; + + let xml = ''; + xml += ''; + xml += ''; + xml += 'kCEK4'; + xml += `k1${level.levelId && level.levelId !== "NA" ? level.levelId.replace(/\D/g, "") : 0}`; + xml += `k18${level.levelLength || 0}`; + xml += `k23${level.levelLength || 0}`; + xml += `k2${level.levelName}`; + xml += `k4${level.levelString}`; + xml += `k3${encodedDesc}`; + xml += `k5${authorName}`; + xml += 'k1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0'; + xml += `k8${officialSong - 1}`; + xml += `k45${customSong}`; + xml += `k16${level.version || 1}`; + xml += 'k13k212k5047'; + xml += 'kI10kI20kI30.1'; + xml += 'kI600102030405060708090100110120130'; + xml += ''; + const blob = new Blob([xml], { type: 'text/xml' }); + const url = window.URL.createObjectURL(blob); + const link = document.createElement('a'); + const fileName = `${level.levelName.replace(/[^a-z0-9]/gi, '_')}.gmd`; + link.href = url; + link.download = fileName; + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + window.URL.revokeObjectURL(url); + }; + this._getNextLocalId = () => { + const rawData = localStorage.getItem("created_levels"); + const levels = rawData ? JSON.parse(rawData) : []; + let maxId = 0; + levels.forEach(l => { + if (l.createdId && typeof l.createdId === "string") { + const idNum = parseInt(l.createdId.split('_')[1]); + if (!isNaN(idNum) && idNum > maxId) { + maxId = idNum; + } + } + }); + return "local_" + (maxId + 1); + }; + this._openLevelView = (level) => { + const sw = screenWidth; + const sh = screenHeight; + const centerX = sw / 2; + const saveToLS = (key, val) => { + const rawData = localStorage.getItem("created_levels"); + let levels = rawData ? JSON.parse(rawData) : []; + const idx = levels.findIndex(l => l.createdId === level.createdId); + if (idx !== -1) { + levels[idx][key] = val; + localStorage.setItem("created_levels", JSON.stringify(levels)); + } + }; + const deleteLevel = () => { + if (!confirm(`Are you sure you want to delete ${level.levelName}?`)) return; + const rawData = localStorage.getItem("created_levels"); + let levels = rawData ? JSON.parse(rawData) : []; + levels = levels.filter(l => l.createdId !== level.createdId); + localStorage.setItem("created_levels", JSON.stringify(levels)); + cleanup(); + this._openEditorMenu(); + }; + this._activeInput = null; + let cursorVisible = true; + + const blocker = this.add.zone(centerX, sh / 2, sw, sh) + .setOrigin(0.5).setDepth(101).setInteractive(); + blocker.on('pointerdown', () => { this._activeInput = null; }); + const overlay = this.add.graphics().setScrollFactor(0).setDepth(102); + const gradientSteps = 80; + for (let gi = 0; gi < gradientSteps; gi++) { + const t = gi / (gradientSteps - 1); + const r1 = Math.round(0x00 + (0x01 - 0x00) * t); + const g1 = Math.round(0x65 + (0x2c - 0x65) * t); + const b1 = Math.round(0xff + (0x71 - 0xff) * t); + const bandColor = (r1 << 16) | (g1 << 8) | b1; + overlay.fillStyle(bandColor, 1); + overlay.fillRect(0, Math.floor(gi * sh / gradientSteps), sw, Math.ceil(sh / gradientSteps) + 1); + } + + const container = this.add.container(0, 0).setDepth(150); + const boxWidth = sw * 0.6; + const cornerRad = 18; + + const nameY = 50; + const nameBox = this.add.graphics().setDepth(151).setInteractive(new Phaser.Geom.Rectangle(centerX - (boxWidth / 2), nameY - 28, boxWidth, 70), Phaser.Geom.Rectangle.Contains); + nameBox.fillStyle(0x000000, 0.3).fillRoundedRect(centerX - (boxWidth / 2), nameY - 28, boxWidth, 70, cornerRad); + const titleText = this.add.bitmapText(centerX, nameY + 5, "bigFont", level.levelName, 45).setOrigin(0.5).setDepth(152); + const titleCursor = this.add.bitmapText(0, nameY + 5, "bigFont", "|", 45).setOrigin(0, 0.5).setDepth(153).setVisible(false); + + const descY = 180; + const descH = 120; + const descBox = this.add.graphics().setDepth(151).setInteractive(new Phaser.Geom.Rectangle(centerX - (boxWidth / 2), descY - (descH / 2), boxWidth, descH), Phaser.Geom.Rectangle.Contains); + descBox.fillStyle(0x000000, 0.3).fillRoundedRect(centerX - (boxWidth / 2), descY - (descH / 2), boxWidth, descH, cornerRad); + const descText = this.add.text(centerX, descY, level.description || "Description [Optional]", { + fontFamily: "Helvetica, Arial, sans-serif", + fontSize: "22px", + color: "#ffffff", + align: "center", + lineSpacing: 4, + wordWrap: { width: boxWidth - 40, useAdvancedWrap: true } + }).setOrigin(0.5).setDepth(152); + const descCursor = this.add.text(0, 0, "|", { fontFamily: "Helvetica", fontSize: "18px", color: "#ffffff" }) + .setOrigin(0.5).setDepth(153).setVisible(false); + + const updateDisplay = () => { + titleText.setText(level.levelName); + if (this._activeInput === 'title') { + titleCursor.setPosition(titleText.x + (titleText.width / 2) + 2, nameY + 5).setVisible(cursorVisible); + descCursor.setVisible(false); + } + else if (this._activeInput === 'desc') { + descText.setText(level.description || ""); + titleCursor.setVisible(false); + + const lines = descText.getWrappedText(level.description || ""); + const lineCount = lines.length; + const lastLine = lines[lineCount - 1] || ""; + const metrics = descText.canvas.getContext('2d').measureText(lastLine); + const lastLineWidth = metrics.width; + + const size = 22; + const spacing = 4; + const fullLineHeight = size + spacing; + const totalHeight = (lineCount * fullLineHeight) - spacing; + + const topOfText = descY - (totalHeight / 2); + const cursorY = topOfText + ((lineCount - 1) * fullLineHeight) + (size / 2); + + descCursor.setPosition(centerX + (lastLineWidth / 2) + 2, cursorY).setVisible(cursorVisible); + } else { + descText.setText(level.description || "Description [Optional]"); + titleCursor.setVisible(false); + descCursor.setVisible(false); + } + }; + + const cursorInterval = setInterval(() => { + cursorVisible = !cursorVisible; + updateDisplay(); + }, 500); + + const keyHandler = (event) => { + if (!this._activeInput) return; + if (event.key === "Backspace") { + if (this._activeInput === 'title') level.levelName = level.levelName.slice(0, -1); + else level.description = (level.description || "").slice(0, -1); + } else if (event.key === "Enter") { + this._activeInput = null; + } else if (event.key.length === 1) { + if (this._activeInput === 'title' && level.levelName.length < 20) { + level.levelName += event.key; + } else if (this._activeInput === 'desc' && (level.description || "").length < 150) { + level.description = (level.description || "") + event.key; + } + } + saveToLS(this._activeInput === 'title' ? "levelName" : "description", + this._activeInput === 'title' ? level.levelName : level.description); + cursorVisible = true; + updateDisplay(); + }; + + window.addEventListener('keydown', keyHandler); + nameBox.on('pointerdown', () => { this._activeInput = 'title'; updateDisplay(); }); + descBox.on('pointerdown', () => { this._activeInput = 'desc'; updateDisplay(); }); + + const cleanup = () => { + clearInterval(cursorInterval); + window.removeEventListener('keydown', keyHandler); + container.destroy(); + overlay.destroy(); + blocker.destroy(); + }; + + const btnY = sh * 0.58; + const editBtn = this.add.image(centerX - 220, btnY, "GJ_GameSheet03", "GJ_editBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(1.1); + this._makeBouncyButton(editBtn, 1.1, () => { cleanup(); this._startCreatedLevel(level, true); }); + const playBtn = this.add.image(centerX, btnY, "GJ_GameSheet03", "GJ_playBtn2_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(1.1); + this._makeBouncyButton(playBtn, 1.1, () => { cleanup(); this._startCreatedLevel(level, false); }); + const shareBtn = this.add.image(centerX + 220, btnY, "GJ_GameSheet03", "GJ_shareBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(1.1); + this._makeBouncyButton(shareBtn, 1.1, () => { this._exportGMD(level); }); + const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_03_001.png").setFlipX(true).setFlipY(true).setRotation(Math.PI).setInteractive(); + this._makeBouncyButton(backBtn, 1, () => { cleanup(); this._openEditorMenu(); }); + const deleteBtn = this.add.image(sw - 50, 48, "GJ_GameSheet03", "GJ_deleteBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(0.8); + this._makeBouncyButton(deleteBtn, 0.8, () => { deleteLevel(); }); + + const footerY = sh - 100; + const subFooterY = sh - 30; + const lengthValues=[ + "Tiny", "Short", "Medium", "Long", "XL" + ] + + const lengthIcon = this.add.image(centerX - 350, footerY, "GJ_GameSheet03", "GJ_timeIcon_001.png").setScale(1).setDepth(152); + const lengthLabel = this.add.bitmapText(centerX - 310, footerY, "bigFont", lengthValues[level.levelLength], 33).setOrigin(0, 0.5).setDepth(152); + const songIcon = this.add.image(centerX - 160, footerY, "GJ_GameSheet03", "GJ_musicIcon_001.png").setScale(1).setDepth(152); + const songLabel = this.add.bitmapText(centerX - 115, footerY, "bigFont", level.song, 29).setOrigin(0, 0.5).setDepth(152); + const statusIcon = this.add.image(centerX + 200, footerY, "GJ_GameSheet03", "GJ_infoIcon_001.png").setScale(1).setDepth(152).setFlipY(true).setAngle(90); + const statusLabel = this.add.bitmapText(centerX + 245, footerY, "bigFont", level.status, 33).setOrigin(0, 0.5).setDepth(152); + const versionText = this.add.bitmapText(centerX - 180, subFooterY, "goldFont", `Version: ${level.version || 1}`, 30).setOrigin(0.5).setDepth(152); + const idText = this.add.bitmapText(centerX + 180, subFooterY, "goldFont", `ID: ${level.levelId || "na"}`, 30).setOrigin(0.5).setDepth(152); + + container.add([nameBox, titleText, titleCursor, descBox, descText, descCursor, playBtn, editBtn, shareBtn, backBtn, deleteBtn, lengthIcon, lengthLabel, songIcon, songLabel, statusIcon, statusLabel, versionText, idText]); + }; + this._startCreatedLevel = async (level, isEditor) => { + const PROXY_BASE = (window._gdProxyUrl || "").replace(/\/$/, ""); + window._onlineLevelString = level.levelString; + window._onlineLevelName = level.levelName; + window._onlineLevelId = level.createdId; + window._onlineSongBuffer = null; + window._onlineSongKey = null; + window._onlineSongOffset = 0; + if (isEditor){ + window.isEditor = true; + } + this.game.registry.set("autoStartGame", true); + window.currentlevel = [ + "Placeholder", + level.levelName, + level.createdId, + ["Local", "SongAuthor"] + ]; + if (level.songId < 0){ + window.currentlevel[0] = window.allLevels[Math.abs(level.songId) - 1][0]; + window.currentlevel[3] = ["Local", window.allLevels[Math.abs(level.songId) - 1][3]] + } else { + const songId = level.songId; + const songKey = `ng_song_${songId}`; + window.currentlevel[0] = songKey; + + if (PROXY_BASE && songId > 0) { + try { + const ngRes = await fetch(`${PROXY_BASE}/getGJSongInfo.php`, { + method: "POST", + headers: { "Content-Type": "application/x-www-form-urlencoded" }, + body: `songID=${songId}&secret=Wmfd2893gb7` + }); + + const ngText = ngRes.ok ? await ngRes.text() : "-1"; + if (ngText && ngText !== "-1") { + const ngParts = ngText.split("~|~"); + const ngMap = {}; + for (let i = 0; i + 1 < ngParts.length; i += 2) ngMap[ngParts[i]] = ngParts[i + 1]; + + const songUrl = decodeURIComponent((ngMap["10"] || "").trim()); + const songArtist = (ngMap["4"] || "Unknown").replace(/:$/, "").trim(); + const songTitle = (ngMap["2"] || `Song #${songId}`).replace(/:$/, "").trim(); + + if (songUrl) { + const audioCtx = this.game.sound.context; + if (audioCtx.state === "suspended") await audioCtx.resume(); + const proxiedUrl = `${PROXY_BASE}/audio-proxy?url=${encodeURIComponent(songUrl)}`; + const audioRes = await fetch(proxiedUrl); + const arrayBuf = await audioRes.arrayBuffer(); + const decoded = await audioCtx.decodeAudioData(arrayBuf); + window._onlineSongBuffer = decoded; + window._onlineSongKey = songKey; + window._onlineSongTitle = songTitle; + window._onlineSongArtist = songArtist; + + window.currentlevel[3] = ["Local", window._onlineSongArtist] + } + } + } catch (err) { + console.warn("Failed to load custom song", err); + } + } + } + this.scene.restart(); + }; + this._closeEditorMenu = () => { + if (this._editorObjects) { + this._editorObjects.forEach(obj => obj.destroy()); + } + this._editorOverlay = null; + this._editorObjects = null; + }; + this._openSearchMenu = () => { + if (this._searchOverlay) return; + const sw = screenWidth; + const sh = screenHeight; + + const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); + fadeIn.fillStyle(0x000000, 1); + fadeIn.fillRect(0, 0, sw, sh); + this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); + const overlay = this.add.graphics().setScrollFactor(0).setDepth(100); + const gradientSteps = 80; + for (let gi = 0; gi < gradientSteps; gi++) { + const t = gi / (gradientSteps - 1); + const r1 = Math.round(0x00 + (0x01 - 0x00) * t); + const g1 = Math.round(0x65 + (0x2c - 0x65) * t); + const b1 = Math.round(0xff + (0x71 - 0xff) * t); + const bandColor = (r1 << 16) | (g1 << 8) | b1; + const bandY = Math.floor(gi * sh / gradientSteps); + const bandH = Math.ceil(sh / gradientSteps) + 1; + overlay.fillStyle(bandColor, 1); + overlay.fillRect(0, bandY, sw, bandH); + } + this._searchOverlay = overlay; + const blocker = this.add.zone(sw / 2, sh / 2, sw, sh).setScrollFactor(0).setDepth(101).setInteractive(); + const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_01_001.png") + .setScrollFactor(0).setDepth(104).setFlipX(true).setFlipY(true) + .setRotation(Math.PI).setInteractive(); + this._makeBouncyButton(backBtn, 1, () => { this._closeSearchMenu(false, () => this._openCreatorMenu()); }); + + const cornerBR = this.add.image(sw, sh, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(152).setOrigin(1, 0).setFlipY(false).setAngle(90); + const cornerBL = this.add.image(0, sh, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(152).setOrigin(1, 1).setFlipY(true).setAngle(90); + const panelMarginX = sw * 0.18; + const panelLeft = panelMarginX; + const panelRight = sw - panelMarginX; + const panelW = panelRight - panelLeft; + const panelRadius = 10; + const panelColor = 0x002e75; + const topPanelColor = 0x00388d; + const innerPanelColor = 0x002762; + const filtersPanelColor = 0x00245b; + const extraPanelColor = 0x001f4f; + const panelAlpha = 0.7; + const labelSize = 32; + const labelColor = 0xffffff; + const gfx = this.add.graphics().setScrollFactor(0).setDepth(104); + const topPanelY = sh * 0.10 - 40; + const topPanelH = sh * 0.12; + gfx.fillStyle(topPanelColor, panelAlpha); + gfx.fillRoundedRect(panelLeft, topPanelY, panelW, topPanelH, panelRadius); + const innerPanelY = topPanelY + 10; + const innerPanelX = panelLeft + 10; + const innerPanelW = panelW * 0.57; + const innerPanelH = topPanelH - 20; + gfx.fillStyle(innerPanelColor, panelAlpha); + gfx.fillRoundedRect(innerPanelX, innerPanelY, innerPanelW, innerPanelH, panelRadius); + + const innerBtnX = innerPanelX + innerPanelW + 20; + const innerBtnY = innerPanelY + (innerPanelH / 2); + + const innerBtn2 = this.add.image(innerBtnX + 137, innerBtnY, "GJ_GameSheet03", "GJ_longBtn05_001.png") + .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setInteractive(); + this._makeBouncyButton(innerBtn2, 1, () => {}); + const innerBtn1 = this.add.image(innerBtnX + 47, innerBtnY, "GJ_GameSheet03", "GJ_longBtn06_001.png") + .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setInteractive(); + this._makeBouncyButton(innerBtn1, 1, () => { _doSearch(); }); + + const innerBtn3 = this.add.image(innerBtnX + 231, innerBtnY, "GJ_GameSheet03", "GJ_longBtn07_001.png") + .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setInteractive(); + this._makeBouncyButton(innerBtn3, 1, () => { inputText = ""; _updateInputDisplay(); }); + + const allowedChars = " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; + const inputMaxLen = 64; + const inputCX = innerPanelX + innerPanelW / 2; + const inputCY = innerPanelY + innerPanelH / 2; + + let inputText = ""; + let inputFocused = false; + let cursorVisible = false; + let cursorTimer = null; + const placeholderLabel = this.add.bitmapText(inputCX - 5, inputCY, "bigFont", "Enter a level, user or id", 28) + .setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5) + .setTint(0x6c99d8).setAlpha(0.85); + const typedLabel = this.add.bitmapText(innerPanelX + 10, inputCY, "bigFont", "", 46) + .setScrollFactor(0).setDepth(106).setOrigin(0, 0.5) + .setTint(0xffffff).setVisible(false); + const inputCursor = this.add.text(0, inputCY, "|", { + fontSize: "33px", fontFamily: "Arial", color: "#92a7c0" + }).setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5).setVisible(false); + + const _updateInputDisplay = () => { + if (inputText === "") { + typedLabel.setVisible(false); + placeholderLabel.setVisible(true); + } else { + placeholderLabel.setVisible(false); + typedLabel.setText(inputText).setVisible(true); + } + if (inputFocused) { + const textW = inputText === "" ? 0 : typedLabel.width; + const textLeft = innerPanelX + 10; + inputCursor.x = textLeft + textW + 2; + inputCursor.setVisible(cursorVisible); + } else { + inputCursor.setVisible(false); + } + }; + + const _startCursorBlink = () => { + cursorVisible = true; + _updateInputDisplay(); + if (cursorTimer) cursorTimer.remove(); + cursorTimer = null; + }; + + const _stopCursorBlink = () => { + if (cursorTimer) { cursorTimer.remove(); cursorTimer = null; } + cursorVisible = false; + inputCursor.setVisible(false); + }; + + const _focusInput = () => { + inputFocused = true; + _startCursorBlink(); + }; + + const _blurInput = () => { + inputFocused = false; + _stopCursorBlink(); + _updateInputDisplay(); + }; + const inputHitZone = this.add.zone( + innerPanelX + innerPanelW / 2, innerPanelY + innerPanelH / 2, + innerPanelW, innerPanelH + ).setScrollFactor(0).setDepth(107).setInteractive(); + inputHitZone.on("pointerdown", () => _focusInput()); + + blocker.on("pointerdown", () => { if (inputFocused) _blurInput(); }); + const _onKeyDown = (event) => { + if (!inputFocused) return; + event.stopPropagation(); + if (event.key === "Backspace") { + if (inputText.length > 0) { + inputText = inputText.slice(0, -1); + _updateInputDisplay(); + } + } else if (event.key === "Enter") { + _doSearch(); + } else if (event.ctrlKey || event.metaKey) { + if (event.key === "c" || event.key === "C") { + event.preventDefault(); + navigator.clipboard.writeText(inputText); + } else if (event.key === "v" || event.key === "V") { + event.preventDefault(); + navigator.clipboard.readText().then(pastedText => { + const filtered = pastedText.split('').filter(c => allowedChars.includes(c)).join(''); + if (filtered.length > 0) { + const availableSpace = inputMaxLen - inputText.length; + inputText += filtered.slice(0, availableSpace); + _updateInputDisplay(); + } + }).catch(() => {}); + } else if (event.key === "a" || event.key === "A") { + event.preventDefault(); + } + } else if (event.key.length === 1 && allowedChars.includes(event.key) && !event.ctrlKey) { + if (inputText.length < inputMaxLen) { + inputText += event.key; + _updateInputDisplay(); + } + } + }; + window.addEventListener("keydown", _onKeyDown); + + const htmlInput = { + remove: () => { + window.removeEventListener("keydown", _onKeyDown); + _blurInput(); + }, + get value() { return inputText; }, + }; + const _repositionInput = () => {}; + const qsLabelY = sh * 0.195; + const qsPanelY = qsLabelY + 25; + const qsPanelH = sh * 0.36; + const qsLabel = this.add.bitmapText(sw / 2, qsLabelY, "bigFont", "Quick Search", labelSize) + .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(labelColor); + + gfx.fillStyle(panelColor, panelAlpha); + gfx.fillRoundedRect(panelLeft, qsPanelY, panelW, qsPanelH, panelRadius); + const comingSoonLabel = this.add.bitmapText(sw / 2, qsPanelY + qsPanelH / 2, "bigFont", "Coming Soon!", 42) + .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(0xadd8e6).setAlpha(0.75); + this._searchOverlayObjects.push(comingSoonLabel); + const filtersLabelY = qsPanelY + qsPanelH + 24; + const filtersPanelY = filtersLabelY + 20; + const filtersPanelH = sh * 0.16; + const filtersLabel = this.add.bitmapText(sw / 2, filtersLabelY, "bigFont", "Filters", labelSize) + .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(labelColor); + + gfx.fillStyle(filtersPanelColor, panelAlpha); + gfx.fillRoundedRect(panelLeft, filtersPanelY, panelW, filtersPanelH, panelRadius); + + const filtersComingSoon = this.add.bitmapText(sw / 2, filtersPanelY + filtersPanelH / 2, "bigFont", "Coming Soon!", 42) + .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(0xadd8e6).setAlpha(0.75); + + const extraPanelY = filtersPanelY + filtersPanelH + 18; + const extraPanelH = sh * 0.11; + gfx.fillStyle(extraPanelColor, panelAlpha); + gfx.fillRoundedRect(panelLeft, extraPanelY, panelW, extraPanelH, panelRadius); + + const extraComingSoon = this.add.bitmapText(sw / 2, extraPanelY + extraPanelH / 2, "bigFont", "Coming Soon!", 42) + .setScrollFactor(0).setDepth(105).setOrigin(0.5, 0.5).setTint(0xadd8e6).setAlpha(0.75); + + this._searchOverlayObjects.push(gfx, qsLabel, filtersLabel, cornerBR, cornerBL, + placeholderLabel, typedLabel, inputCursor, inputHitZone, innerBtn1, innerBtn2, innerBtn3, + filtersComingSoon, extraComingSoon); + + let _loading = false; + const _doSearch = async () => { + if (_loading) return; + const levelId = htmlInput.value.trim().replace(/\D/g, ""); + if (!levelId) return; + _loading = true; + try { + await _doSearchInner(levelId); + } catch (err) { + } finally { + _loading = false; + } + }; + const _doSearchInner = async (levelId) => { + const PROXY_BASE = (window._gdProxyUrl || "").replace(/\/$/, ""); + if (!PROXY_BASE) return; + const formBody = `levelID=${levelId}&secret=Wmfd2893gb7`; + const res = await fetch(`${PROXY_BASE}/downloadGJLevel22.php`, { + method: "POST", + headers: { "Content-Type": "application/x-www-form-urlencoded" }, + body: formBody + }); + if (!res.ok) throw new Error(`Proxy returned ${res.status}`); + const rawResponse = await res.text(); + if (!rawResponse || rawResponse === "-1" || !rawResponse.includes(":")) { + return; + } + + const responseSegments = rawResponse.split("#"); + const lvlParts = responseSegments[0].split(":"); + const lvlMap = {}; + for (let i = 0; i + 1 < lvlParts.length; i += 2) { + lvlMap[lvlParts[i]] = lvlParts[i + 1]; + } + + const levelData = { + // Core Level Info + id: lvlMap["1"] || levelId, + title: (lvlMap["2"] || "Online Level").trim(), + description: lvlMap["3"] ? atob(lvlMap["3"].replace(/-/g, '+').replace(/_/g, '/')) : "", // Base64 decoded + string: lvlMap["4"] || null, // The raw level data string + version: parseInt(lvlMap["5"]) || 1, + + // User / Author Info + playerID: lvlMap["6"] || null, + accountID: lvlMap["57"] || null, // The author's accountID returned by the server + + // Song Info + officialSong: lvlMap["12"] || "0", + customSongID: (lvlMap["35"] || "").trim(), + isCustomSong: !!(lvlMap["35"] || "").trim() && (lvlMap["35"] || "").trim() !== "0", + isLibrarySong: !!(lvlMap["35"] || "").trim() && (lvlMap["35"] || "").trim() !== "0" && parseInt((lvlMap["35"] || "").trim()) >= 1000000, + offset: parseFloat(lvlMap["45"] || "0") || 0, + + // Gameplay Details + difficulty: parseInt(lvlMap["9"]) || 0, // Auto, Easy, Normal, Hard, Harder, Insane + stars: parseInt(lvlMap["18"]) || 0, + diamonds: parseInt(lvlMap["46"]) || 0, + orbs: parseInt(lvlMap["48"]) || 0, + length: parseInt(lvlMap["15"]) || 0, // 0=Tiny, 1=Small, 2=Medium, 3=Long, 4=XL, 5=Platformer + gameVersion: parseInt(lvlMap["13"]) || 22, // The game version the level was created in (e.g. 22 = 2.2) + binaryVersion: parseInt(lvlMap["52"]) || 0, // The build version used to upload + + // Meta / Social Counters + downloads: parseInt(lvlMap["10"]) || 0, + likes: parseInt(lvlMap["14"]) || 0, + objects: parseInt(lvlMap["45"]) || 0, // Object count (Note: 45 can double as audio offset or object count depending on context) + ts: lvlMap["28"] || null, // Upload/Update timestamp hint + + // Technical / Security Verification keys sent back by server + chk: lvlMap["chk"] || null, + rs: lvlMap["rs"] || null + }; + console.groupCollapsed("level data"); + const { string, ...tableFriendlyData } = levelData; + console.table(tableFriendlyData); + console.groupEnd(); + + const songKey = levelData.isCustomSong + ? (levelData.isLibrarySong ? `lib_song_${levelData.customSongID}` : `ng_song_${levelData.customSongID}`) + : window.allLevels[levelData.officialSong][0]; + + window.currentlevel[0] = songKey; + window._onlineSongOffset = levelData.offset; + + if (levelData.isCustomSong) { + window._onlineSongBuffer = null; + window._onlineSongKey = null; + const ngRes = await fetch(`${PROXY_BASE}/getGJSongInfo.php`, { + method: "POST", + headers: { "Content-Type": "application/x-www-form-urlencoded" }, + body: `songID=${levelData.customSongID}&secret=Wmfd2893gb7` + }); + const ngText = ngRes.ok ? await ngRes.text() : "-1"; + + if (ngText && ngText !== "-1") { + const ngParts = ngText.split("~|~"); + const ngMap = {}; + for (let i = 0; i + 1 < ngParts.length; i += 2) ngMap[ngParts[i]] = ngParts[i + 1]; + + const songData = { + id: ngMap["1"] || levelData.customSongID, + title: (ngMap["2"] || "Unknown").trim(), + artistID: ngMap["3"] || "0", + artistName: (ngMap["4"] || "Unknown").trim(), + sizeMB: ngMap["5"] || "0", + videoID: ngMap["6"] || null, + youtubeURL: ngMap["7"] ? decodeURIComponent(ngMap["7"]) : null, + isScouted: ngMap["8"] === "1", + priority: ngMap["9"] || "0", + rawUrl: (ngMap["10"] || "").trim(), + nongType: parseInt(ngMap["11"] || "0"), + //extraIDs: (ngMap["12"] || "").split("."), //array + isNew: ngMap["13"] === "1", + newIconType: ngMap["14"] || "0", + extraArtists: ngMap["15"] || "" + }; + + const isNCS = levelData.isLibrarySong || songData.nongType === 1; + let songUrl = songData.rawUrl ? decodeURIComponent(songData.rawUrl) : null; + + if (!songUrl && isNCS) { + const songId = levelData.customSongID; + const path = `/music/${songId}.mp3`; + + function generateCdnAuth(path) { + const SALT = "8501f9c2-75ba-4230-8188-51037c4da102"; + const expires = Math.floor(Date.now() / 1000) + 3600; + const inputString = `${SALT}${path}${expires}`; + + const md5Cycle = (x, k) => { + let a = x[0], b = x[1], c = x[2], d = x[3]; + const f = (p, q, r, s, x, sft, t) => { + let val = p + (q & r | ~q & s) + x + t; + return ((val << sft) | (val >>> (32 - sft))) + q; + }; + const g = (p, q, r, s, x, sft, t) => { + let val = p + (q & s | r & ~s) + x + t; + return ((val << sft) | (val >>> (32 - sft))) + q; + }; + const h = (p, q, r, s, x, sft, t) => { + let val = p + (q ^ r ^ s) + x + t; + return ((val << sft) | (val >>> (32 - sft))) + q; + }; + const i = (p, q, r, s, x, sft, t) => { + let val = p + (r ^ (q | ~s)) + x + t; + return ((val << sft) | (val >>> (32 - sft))) + q; + }; + + a = f(a, b, c, d, k[0], 7, -680876936); d = f(d, a, b, c, k[1], 12, -389564586); + c = f(c, d, a, b, k[2], 17, 606105819); b = f(b, c, d, a, k[3], 22, -1044525330); + a = f(a, b, c, d, k[4], 7, -176418897); d = f(d, a, b, c, k[5], 12, 1200080426); + c = f(c, d, a, b, k[6], 17, -1473231341); b = f(b, c, d, a, k[7], 22, -45705983); + a = f(a, b, c, d, k[8], 7, 1770035416); d = f(d, a, b, c, k[9], 12, -1958414417); + c = f(c, d, a, b, k[10], 17, -42063); b = f(b, c, d, a, k[11], 22, -1990404162); + a = f(a, b, c, d, k[12], 7, 1804603682); d = f(d, a, b, c, k[13], 12, -40341101); + c = f(c, d, a, b, k[14], 17, -1502002290); b = f(b, c, d, a, k[15], 22, 1236535329); + + a = g(a, b, c, d, k[1], 5, -165796510); d = g(d, a, b, c, k[6], 9, -1069501632); + c = g(c, d, a, b, k[11], 14, 643717713); b = g(b, c, d, a, k[0], 20, -373897302); + a = g(a, b, c, d, k[5], 5, -701558691); d = g(d, a, b, c, k[10], 9, 38016083); + c = g(c, d, a, b, k[15], 14, -660478335); b = g(b, c, d, a, k[4], 20, -405537848); + a = g(a, b, c, d, k[9], 5, 568446438); d = g(d, a, b, c, k[14], 9, -1019803690); + c = g(c, d, a, b, k[3], 14, -187363961); b = g(b, c, d, a, k[8], 20, 1163531501); + a = g(a, b, c, d, k[13], 5, -1444681467); d = g(d, a, b, c, k[2], 9, -51403784); + c = g(c, d, a, b, k[7], 14, 1735328473); b = g(b, c, d, a, k[12], 20, -1926607734); + + a = h(a, b, c, d, k[5], 4, -378558); d = h(d, a, b, c, k[8], 11, -2022574463); + c = h(c, d, a, b, k[11], 16, 1839030562); b = h(b, c, d, a, k[14], 23, -35309556); + a = h(a, b, c, d, k[1], 4, -1530992060); d = h(d, a, b, c, k[4], 11, 1272893353); + c = h(c, d, a, b, k[7], 16, -155497632); b = h(b, c, d, a, k[10], 23, -1094730640); + a = h(a, b, c, d, k[13], 4, 681279174); d = h(d, a, b, c, k[0], 11, -358537222); + c = h(c, d, a, b, k[3], 16, -722521979); b = h(b, c, d, a, k[6], 23, 76029189); + a = h(a, b, c, d, k[9], 4, -640364487); d = h(d, a, b, c, k[12], 11, -421815835); + c = h(c, d, a, b, k[15], 16, 530742520); b = h(b, c, d, a, k[2], 23, -995338651); + + a = i(a, b, c, d, k[0], 6, -198630844); d = i(d, a, b, c, k[7], 10, 1126891415); + c = i(c, d, a, b, k[14], 15, -1416354905); b = i(b, c, d, a, k[5], 21, -57434055); + a = i(a, b, c, d, k[12], 6, 1700485571); d = i(d, a, b, c, k[3], 10, -1894986606); + c = i(c, d, a, b, k[10], 15, -1051523); b = i(b, c, d, a, k[1], 21, -2054922799); + a = i(a, b, c, d, k[8], 6, 1873313359); d = i(d, a, b, c, k[15], 10, -30611744); + c = i(c, d, a, b, k[6], 15, -1560198380); b = i(b, c, d, a, k[13], 21, 1309151649); + a = i(a, b, c, d, k[4], 6, -145523070); d = i(d, a, b, c, k[11], 10, -1120210379); + c = i(c, d, a, b, k[2], 15, 718787259); b = i(b, c, d, a, k[9], 21, -343485551); + + x[0] = (x[0] + a) | 0; x[1] = (x[1] + b) | 0; + x[2] = (x[2] + c) | 0; x[3] = (x[3] + d) | 0; + }; + + const md5Raw = (str) => { + let n = str.length, state = [1732584193, -271733879, -1732584194, 271733878], i; + let words = []; + for (i = 0; i <= n; i++) words[i >> 2] |= (str.charCodeAt(i) || 128) << ((i % 4) << 3); + words[(((n + 8) >> 6) << 4) + 14] = n * 8; + for (i = 0; i < words.length; i += 16) md5Cycle(state, words.slice(i, i + 16)); + return state.map(val => [val & 0xFF, (val >> 8) & 0xFF, (val >> 16) & 0xFF, (val >> 24) & 0xFF]).flat(); + }; + + const hashBytes = md5Raw(inputString); + const binaryStr = String.fromCharCode(...hashBytes); + const token = btoa(binaryStr) + .replace(/\+/g, '-') + .replace(/\//g, '_') + .replace(/=+$/, ''); + + return { token, expires }; + } + + const auth = generateCdnAuth(path); + + songUrl = `https://geometrydashfiles.b-cdn.net${path}?token=${auth.token}&expires=${auth.expires}`; + } + + console.groupCollapsed("song data"); + console.table({ ...songData}); + console.log(songUrl); + console.groupEnd(); + + if (songUrl) { + const audioCtx = this.game.sound.context; + if (audioCtx.state === "suspended") await audioCtx.resume(); + + window._onlineSongKey = songKey; + window._onlineSongTitle = songData.title; + window._onlineSongArtist = songData.artistName; + + try { + const proxiedUrl = `${PROXY_BASE}/audio-proxy?url=${encodeURIComponent(songUrl)}`; + const audioRes = await fetch(proxiedUrl); + + if (!audioRes.ok) throw new Error(`audio proxy returned ${audioRes.status}`); + + const arrayBuf = await audioRes.arrayBuffer(); + const decoded = await audioCtx.decodeAudioData(arrayBuf); + + window._onlineSongBuffer = decoded; + } catch (error) { + console.error("Failed to load audio via proxy:", error.message); + + window._onlineSongBuffer = null; + } + } else { + } + } else { + _showStatus("Song info failed to load", "#ff0000"); + } + } else { + window._onlineSongBuffer = null; + window._onlineSongKey = null; + window._onlineSongArtist = null; + } + window._onlineLevelString = levelData.string; + window._onlineLevelName = levelData.title; + window._onlineLevelId = "online_" + levelData.id; + this.game.registry.set("autoStartGame", true); + window.currentlevel = [ + songKey, + window._onlineLevelName, + window._onlineLevelId, + [window._onlineSongArtist || "Unknown"] + ]; + this.time.delayedCall(600, () => { + htmlInput.remove(); + window.removeEventListener("resize", _repositionInput); + this._closeSearchMenu(true); + this._closeLevelSelect && this._closeLevelSelect(true); + const flash = this.add.graphics().setScrollFactor(0).setDepth(300).setAlpha(0); + flash.fillStyle(0x000000, 1); + flash.fillRect(0, 0, sw, sh); + this.tweens.add({ + targets: flash, alpha: 1, duration: 250, ease: "Linear", + onComplete: () => this.scene.restart() + }); + }); + }; + this._searchOverlayObjects.push(overlay, blocker, backBtn); + if (window.levelID && !window.alreadydownloaded) { // if there's an ID parameter, load it directly + window.alreadydownloaded = true; + htmlInput.remove(); + const loadingBg = this.add.graphics().setScrollFactor(0).setDepth(1000); + loadingBg.fillStyle(0x000000, 1); + loadingBg.fillRect(0, 0, sw, sh); + const loadingText = this.add.bitmapText(sw / 2, sh / 2, "bigFont", "Loading level...", 30) + .setScrollFactor(0).setDepth(1001).setOrigin(0.5); + this._searchOverlayObjects.push(loadingBg, loadingText); + _doSearchInner(window.levelID); + } + window.addEventListener("keydown", (e) => { + if (e.key === "Enter") _doSearch(); + e.stopPropagation(); + }); + window.addEventListener("keyup", (e) => e.stopPropagation()); + window.addEventListener("keypress", (e) => e.stopPropagation()); + this._searchHtmlInput = htmlInput; + this._searchInputResizeFn = _repositionInput; + }; + this._closeSearchMenu = (silent = false, onComplete = null) => { + if (!this._searchOverlay) return; + if (this._searchHtmlInput) { + this._searchHtmlInput.remove(); + this._searchHtmlInput = null; + } + if (this._searchInputResizeFn) { + window.removeEventListener("resize", this._searchInputResizeFn); + this._searchInputResizeFn = null; + } + const destroy = () => { + for (const obj of this._searchOverlayObjects) { + if (obj && obj.destroy) obj.destroy(); + } + this._searchOverlayObjects = []; + this._searchOverlay = null; + }; + if (silent) { destroy(); if (onComplete) onComplete(); return; } + const sw = screenWidth, sh = screenHeight; + const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(200).setAlpha(0); + fadeOut.fillStyle(0x000000, 1); + fadeOut.fillRect(0, 0, sw, sh); + this.tweens.add({ + targets: fadeOut, alpha: 1, duration: 150, ease: "Linear", + onComplete: () => { + destroy(); + if (onComplete) onComplete(); + this.tweens.add({ targets: fadeOut, alpha: 0, duration: 150, ease: "Linear", onComplete: () => fadeOut.destroy() }); + } + }); + }; + this._makeBouncyButton(this._creatorBtn, 1, () => { + this._openCreatorMenu(); + }, () => this._menuActive && !this._levelSelectOverlay); + //icon stufff + this._iconBtn = this.add.image(0, 0, "GJ_GameSheet03", "GJ_garageBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setScale(1); + this._iconBtnSelected = false; + this._makeBouncyButton(this._iconBtn, 1, () => { + this._openIconSelector(); + }, () => this._menuActive && !this._levelSelectOverlay); + + this._iconOverlay = null; + + const _iconFrameSets = { + icon: [ +"player_01_001.png", "player_02_001.png", "player_03_001.png", "player_04_001.png", "player_05_001.png", "player_06_001.png", "player_07_001.png", "player_08_001.png", "player_09_001.png", "player_10_001.png", +"player_11_001.png", "player_12_001.png", "player_13_001.png", "player_14_001.png", "player_15_001.png", "player_16_001.png", "player_17_001.png", "player_18_001.png", "player_19_001.png", "player_20_001.png", +"player_21_001.png", "player_22_001.png", "player_23_001.png", "player_24_001.png", "player_25_001.png", "player_26_001.png", "player_27_001.png", "player_28_001.png", "player_29_001.png", "player_30_001.png", +"player_31_001.png", "player_32_001.png", "player_33_001.png", "player_34_001.png", "player_35_001.png", "player_36_001.png", "player_37_001.png", "player_38_001.png", "player_39_001.png", "player_40_001.png", +"player_41_001.png", "player_42_001.png", "player_43_001.png", "player_44_001.png", "player_45_001.png", "player_46_001.png", "player_47_001.png", "player_48_001.png", "player_49_001.png", "player_50_001.png", +"player_51_001.png", "player_52_001.png", "player_53_001.png", "player_54_001.png", "player_55_001.png", "player_56_001.png", "player_57_001.png", "player_58_001.png", "player_59_001.png", "player_60_001.png", +"player_61_001.png", "player_62_001.png", "player_63_001.png", "player_64_001.png", "player_65_001.png", "player_66_001.png", "player_67_001.png", "player_68_001.png", "player_69_001.png", "player_70_001.png", +"player_71_001.png", "player_72_001.png", "player_73_001.png", "player_74_001.png", "player_75_001.png", "player_76_001.png", "player_77_001.png", "player_78_001.png", "player_79_001.png", "player_80_001.png", +"player_81_001.png", "player_82_001.png", "player_83_001.png", "player_84_001.png", "player_85_001.png", "player_86_001.png", "player_87_001.png", "player_88_001.png", "player_89_001.png", "player_90_001.png", +"player_91_001.png", "player_92_001.png", "player_93_001.png", "player_94_001.png", "player_95_001.png", "player_96_001.png", "player_97_001.png", "player_98_001.png", "player_99_001.png", "player_100_001.png", +"player_101_001.png", "player_102_001.png", "player_103_001.png", "player_104_001.png", "player_105_001.png", "player_106_001.png", "player_107_001.png", "player_108_001.png", "player_109_001.png", "player_110_001.png", +"player_111_001.png", "player_112_001.png", "player_113_001.png", "player_114_001.png", "player_115_001.png", "player_116_001.png", "player_117_001.png", "player_118_001.png", "player_119_001.png", "player_120_001.png", +"player_121_001.png", "player_122_001.png", "player_123_001.png", "player_124_001.png", "player_125_001.png", "player_126_001.png", "player_127_001.png", "player_128_001.png", "player_129_001.png", "player_130_001.png", +"player_131_001.png", "player_132_001.png", "player_133_001.png", "player_134_001.png", "player_135_001.png", "player_136_001.png", "player_137_001.png", "player_138_001.png", "player_139_001.png", "player_140_001.png", +"player_141_001.png", "player_142_001.png", "player_143_001.png", "player_144_001.png", "player_145_001.png", "player_146_001.png", "player_147_001.png", "player_148_001.png", "player_149_001.png", "player_150_001.png", +"player_151_001.png", "player_152_001.png", "player_153_001.png", "player_154_001.png", "player_155_001.png", "player_156_001.png", "player_157_001.png", "player_158_001.png", "player_159_001.png", "player_160_001.png", +"player_161_001.png", "player_162_001.png", "player_163_001.png", "player_164_001.png", "player_165_001.png", "player_166_001.png", "player_167_001.png", "player_168_001.png", "player_169_001.png", "player_170_001.png", +"player_171_001.png", "player_172_001.png", "player_173_001.png", "player_174_001.png", "player_175_001.png", "player_176_001.png", "player_177_001.png", "player_178_001.png", "player_179_001.png", "player_180_001.png", +"player_181_001.png", "player_182_001.png", "player_183_001.png", "player_184_001.png", "player_185_001.png", "player_186_001.png", "player_187_001.png", "player_188_001.png", "player_189_001.png", "player_190_001.png", +"player_191_001.png", "player_192_001.png", +"player_193_001.png", "player_194_001.png", "player_195_001.png", "player_196_001.png", "player_197_001.png", "player_198_001.png", "player_199_001.png", "player_200_001.png", "player_201_001.png", "player_202_001.png", +"player_203_001.png", "player_204_001.png", "player_205_001.png", "player_206_001.png", "player_207_001.png", "player_208_001.png", "player_209_001.png", "player_210_001.png", "player_211_001.png", "player_212_001.png", +"player_213_001.png", "player_214_001.png", "player_215_001.png", "player_216_001.png", "player_217_001.png", "player_218_001.png", "player_219_001.png", "player_220_001.png", "player_221_001.png", "player_222_001.png", +"player_223_001.png", "player_224_001.png", "player_225_001.png", "player_226_001.png", "player_227_001.png", "player_228_001.png", "player_229_001.png", "player_230_001.png", "player_231_001.png", "player_232_001.png", +"player_233_001.png", "player_234_001.png", "player_235_001.png", "player_236_001.png", "player_237_001.png", "player_238_001.png", "player_239_001.png", "player_240_001.png", "player_241_001.png", "player_242_001.png", +"player_243_001.png", "player_244_001.png", "player_245_001.png", "player_246_001.png", "player_247_001.png", "player_248_001.png" + ], + ship: [ + "ship_01_001.png", "ship_02_001.png", "ship_03_001.png", "ship_04_001.png", "ship_05_001.png", "ship_06_001.png", "ship_07_001.png", "ship_08_001.png", "ship_09_001.png", "ship_10_001.png", +"ship_11_001.png", "ship_12_001.png", "ship_13_001.png", "ship_14_001.png", "ship_15_001.png", "ship_16_001.png", "ship_17_001.png", "ship_18_001.png", "ship_19_001.png", "ship_20_001.png", +"ship_21_001.png", "ship_22_001.png", "ship_23_001.png", "ship_24_001.png", "ship_25_001.png", "ship_26_001.png", "ship_27_001.png", "ship_28_001.png", "ship_29_001.png", "ship_30_001.png", +"ship_31_001.png", "ship_32_001.png", "ship_33_001.png", "ship_34_001.png", "ship_35_001.png", "ship_36_001.png", "ship_37_001.png", "ship_38_001.png", "ship_39_001.png", "ship_40_001.png", +"ship_41_001.png", "ship_42_001.png", "ship_43_001.png", "ship_44_001.png", "ship_45_001.png", "ship_46_001.png", "ship_47_001.png", "ship_48_001.png", "ship_49_001.png", "ship_50_001.png", +"ship_51_001.png", "ship_52_001.png", "ship_53_001.png", "ship_54_001.png", "ship_55_001.png", "ship_56_001.png", "ship_57_001.png", "ship_58_001.png", "ship_59_001.png", "ship_60_001.png", +"ship_61_001.png", "ship_62_001.png", "ship_63_001.png", "ship_64_001.png", "ship_65_001.png", "ship_66_001.png", "ship_67_001.png", "ship_68_001.png", "ship_69_001.png", "ship_70_001.png", +"ship_71_001.png", "ship_72_001.png", "ship_73_001.png", "ship_74_001.png", "ship_75_001.png", "ship_76_001.png", "ship_77_001.png", "ship_78_001.png", "ship_79_001.png" + ], + ball: [ + "player_ball_01_001.png", "player_ball_02_001.png", "player_ball_03_001.png", "player_ball_04_001.png", "player_ball_05_001.png", "player_ball_06_001.png", "player_ball_07_001.png", "player_ball_08_001.png", "player_ball_09_001.png", "player_ball_10_001.png", + "player_ball_11_001.png", "player_ball_12_001.png", "player_ball_13_001.png", "player_ball_14_001.png", "player_ball_15_001.png", "player_ball_16_001.png", "player_ball_17_001.png", "player_ball_18_001.png", "player_ball_19_001.png", "player_ball_20_001.png", + "player_ball_21_001.png", "player_ball_22_001.png", "player_ball_23_001.png", "player_ball_24_001.png", "player_ball_25_001.png", "player_ball_26_001.png", "player_ball_27_001.png", "player_ball_28_001.png", "player_ball_29_001.png", "player_ball_30_001.png", + + "player_ball_31_001.png", "player_ball_32_001.png", "player_ball_33_001.png", "player_ball_34_001.png", "player_ball_35_001.png", "player_ball_36_001.png", "player_ball_37_001.png", "player_ball_38_001.png", "player_ball_39_001.png", "player_ball_40_001.png", + "player_ball_41_001.png", "player_ball_42_001.png", "player_ball_43_001.png", "player_ball_44_001.png", "player_ball_45_001.png", "player_ball_46_001.png", "player_ball_47_001.png", "player_ball_48_001.png", "player_ball_49_001.png", "player_ball_50_001.png", + "player_ball_51_001.png", "player_ball_52_001.png", + ], + wave: [ + "dart_01_001.png", "dart_02_001.png", "dart_03_001.png", "dart_04_001.png", "dart_05_001.png", + "dart_06_001.png", "dart_07_001.png", "dart_08_001.png", "dart_09_001.png", "dart_10_001.png", + "dart_11_001.png", "dart_12_001.png", "dart_13_001.png", "dart_14_001.png", "dart_15_001.png", + "dart_16_001.png", "dart_17_001.png", "dart_18_001.png", "dart_19_001.png", "dart_20_001.png", + "dart_21_001.png", "dart_22_001.png", "dart_23_001.png", "dart_24_001.png", "dart_25_001.png", + "dart_26_001.png", "dart_27_001.png", "dart_28_001.png", "dart_29_001.png", "dart_30_001.png", + "dart_31_001.png", "dart_32_001.png", "dart_33_001.png", "dart_34_001.png", "dart_35_001.png", + ], + ufo: [ + "bird_01_001.png", "bird_02_001.png", "bird_03_001.png", "bird_04_001.png", "bird_05_001.png", + "bird_06_001.png", "bird_07_001.png", "bird_08_001.png", "bird_09_001.png", "bird_10_001.png", + "bird_11_001.png", "bird_12_001.png", "bird_13_001.png", "bird_14_001.png", "bird_15_001.png", + "bird_16_001.png", "bird_17_001.png", "bird_18_001.png", "bird_19_001.png", "bird_20_001.png", + "bird_21_001.png", "bird_22_001.png", "bird_23_001.png", "bird_24_001.png", "bird_25_001.png", + "bird_26_001.png", "bird_27_001.png", "bird_28_001.png", "bird_29_001.png", "bird_30_001.png", + "bird_31_001.png", "bird_32_001.png", "bird_33_001.png", "bird_34_001.png", "bird_35_001.png", + "bird_36_001.png", "bird_37_001.png", "bird_38_001.png", "bird_39_001.png", "bird_40_001.png", + "bird_41_001.png", "bird_42_001.png", "bird_43_001.png", "bird_44_001.png", "bird_45_001.png", + "bird_46_001.png", "bird_47_001.png", "bird_48_001.png", "bird_49_001.png", "bird_50_001.png", + "bird_51_001.png", + ], + }; + + + const _iconWindowProps = { + icon: "currentPlayer", + ship: "currentShip", + ball: "currentBall", + wave: "currentWave", + ufo: "currentBird", + }; + + const _iconAtlas = { + icon: "GJ_GameSheetIcons", + ship: "GJ_GameSheetIcons", + ball: "GJ_GameSheetIcons", + wave: "GJ_GameSheetIcons", + ufo: "GJ_GameSheetIcons", + }; + + const _tabBtnFrames = { + icon: { on: "gj_iconBtn_on_001.png", off: "gj_iconBtn_off_001.png" }, + ship: { on: "gj_shipBtn_on_001.png", off: "gj_shipBtn_off_001.png" }, + ball: { on: "gj_ballBtn_on_001.png", off: "gj_ballBtn_off_001.png" }, + wave: { on: "gj_dartBtn_on_001.png", off: "gj_dartBtn_off_001.png" }, + ufo: { on: "gj_birdBtn_on_001.png", off: "gj_birdBtn_off_001.png" }, + }; + + this._openIconSelector = (startTab = "icon") => { + if (this._iconOverlay) return; + + const sw = screenWidth; + const sh = screenHeight; + + const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); + fadeIn.fillStyle(0x000000, 1); + fadeIn.fillRect(0, 0, sw, sh); + this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); + + const overlay = this.add.graphics().setScrollFactor(0).setDepth(100); + const gradientSteps = 80; + for (let gi = 0; gi < gradientSteps; gi++) { + const t = gi / (gradientSteps - 1); + const r1 = Math.round(0x92 + (0x3a - 0x92) * t); + const g1 = Math.round(0x92 + (0x3a - 0x92) * t); + const b1 = Math.round(0x92 + (0x3a - 0x92) * t); + const bandColor = (r1 << 16) | (g1 << 8) | b1; + const bandY = Math.floor(gi * sh / gradientSteps); + const bandH = Math.ceil(sh / gradientSteps) + 1; + overlay.fillStyle(bandColor, 1); + overlay.fillRect(0, bandY, sw, bandH); + } + this._iconOverlay = overlay; + + const blocker = this.add.zone(sw / 2, sh / 2, sw, sh) + .setScrollFactor(0).setDepth(101).setInteractive(); + + const titleTxt = this.add.bitmapText(sw / 2, 60, "goldFont", "Icon Selector", 32) + .setOrigin(0.5, 0.5).setScrollFactor(0).setDepth(105); + + this._iconOverlayObjects = [overlay, blocker, titleTxt]; + + const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_03_001.png") + .setScrollFactor(0).setDepth(104).setFlipY(true) + .setFlipX(true) + .setRotation(Math.PI).setInteractive(); + this._iconOverlayObjects.push(backBtn); + this._makeBouncyButton(backBtn, 1, () => this._closeIconSelector()); + + const topBarHeight = 100; + const lineY = topBarHeight + 100; + const linePadding = 230; + const topBar = this.add.graphics().setScrollFactor(0).setDepth(102); + const lineSegments = 40; + const lineStart = linePadding; + const lineEnd = sw - linePadding; + const lineWidth = lineEnd - lineStart; + const fadeZone = lineWidth * 0.25; + for (let li = 0; li < lineSegments; li++) { + const t0 = li / lineSegments; + const t1 = (li + 1) / lineSegments; + const x0 = lineStart + t0 * lineWidth; + const x1 = lineStart + t1 * lineWidth; + const mid = (t0 + t1) / 2 * lineWidth; + let alpha; + if (mid < fadeZone) { + alpha = mid / fadeZone; + } else if (mid > lineWidth - fadeZone) { + alpha = (lineWidth - mid) / fadeZone; + } else { + alpha = 1; + } + topBar.lineStyle(3, 0xFFFFFF, alpha); + topBar.beginPath(); + topBar.moveTo(x0, lineY); + topBar.lineTo(x1, lineY); + topBar.strokePath(); + } + this._iconOverlayObjects.push(topBar); + + const cols = 12; + const iconSize = 60; + const padding = 2; + const containerPadding = 10; + const rows = 3; + const containerWidth = cols * iconSize + (cols - 1) * padding + 12; + const containerHeight = rows * iconSize + (rows - 1) * padding + 12; + const containerX = sw / 2 - containerWidth / 2; + const containerY = sh - containerHeight - containerPadding - 150; + const startX = containerX + 6 + iconSize / 2; + const startY = containerY + 6 + iconSize / 2; + + const gridBg = this.add.graphics().setScrollFactor(0).setDepth(102); + gridBg.fillStyle(0x454444, 1); + gridBg.fillRoundedRect(containerX, containerY, containerWidth, containerHeight, 10); + this._iconOverlayObjects.push(gridBg); + + const cornerTL = this.add.image(0, 0, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(100).setOrigin(1, 0).setFlipX(false).setAngle(-90) + const cornerTR = this.add.image(sw, 0, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(103).setOrigin(0, 0).setFlipY(false).setFlipX(true).setAngle(90); + this._iconOverlayObjects.push(cornerTL, cornerTR); + + const navDotSpacing = 35; + const navDotY = containerY + containerHeight + 30; + const navDot1 = this.add.image(sw / 2 - navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_on_001.png").setScrollFactor(0).setDepth(104).setScale(0.75); + const navDot2 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75); + const navDot3 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); + const navDot4 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); + const navDot5 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); + const navDot6 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); + const navDot7 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); + const navDot8 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); + const navDot9 = this.add.image(sw / 2 + navDotSpacing / 2, navDotY, "GJ_GameSheet03", "gj_navDotBtn_off_001.png").setScrollFactor(0).setDepth(104).setScale(0.75).setVisible(false); + this._iconOverlayObjects.push(navDot1, navDot2, navDot3, navDot4, navDot5, navDot6, navDot7, navDot8, navDot9); + const _updateNavDots = (page, tab) => { + const isShip = (tab || startTab) === "ship"; + const isIcon = (tab || startTab) === "icon"; + const maxPages = _getMaxPages(tab); + [navDot1, navDot2, navDot3, navDot4, navDot5, navDot6, navDot7, navDot8, navDot9].forEach(dot => dot.setVisible(false)); + if (isShip || isIcon) { + const dots = [navDot1, navDot2, navDot3, navDot4, navDot5, navDot6, navDot7, navDot8, navDot9]; + const totalDotsToShow = Math.min(maxPages, 9); + const totalWidth = (totalDotsToShow - 1) * navDotSpacing; + const startX = sw / 2 - totalWidth / 2; + for (let i = 0; i < totalDotsToShow; i++) { + dots[i].setPosition(startX + i * navDotSpacing, navDotY).setVisible(true); + dots[i].setTexture("GJ_GameSheet03", page === i ? "gj_navDotBtn_on_001.png" : "gj_navDotBtn_off_001.png"); + } + } else { + navDot1.setPosition(sw / 2 - navDotSpacing / 2, navDotY).setVisible(true); + navDot2.setPosition(sw / 2 + navDotSpacing / 2, navDotY).setVisible(true); + navDot1.setTexture("GJ_GameSheet03", page === 0 ? "gj_navDotBtn_on_001.png" : "gj_navDotBtn_off_001.png"); + navDot2.setTexture("GJ_GameSheet03", page === 1 ? "gj_navDotBtn_on_001.png" : "gj_navDotBtn_off_001.png"); + } + }; + + const rainbowColors = [ + 0xFF0000, 0xFF4500, 0xFF7F00, 0xFFAA00, 0xFFD700, + 0xFFFF00, 0xAAFF00, 0x00FF00, 0x00FF7F, 0x00FFFF, + 0x007FFF, 0x0000FF, 0x7F00FF, 0xFF00FF, 0xFF007F, + 0xFFFFFF, 0xC0C0C0, 0x808080, 0x404040, 0x000000, + ]; + + const colorBtnSize = 35; + const colorPadding = 6; + const colorRowWidth = rainbowColors.length * (colorBtnSize + colorPadding) - colorPadding; + const colorRow1Y = containerY + containerHeight + 88; + const colorRow2Y = colorRow1Y + colorBtnSize + 10; + const colorRowStartX = sw / 2 - colorRowWidth / 2 + colorBtnSize / 2; + + const colorLabel1 = this.add.text(sw / 2 - colorRowWidth / 2, colorRow1Y - 14, "", { + fontSize: "11px", color: "#ffffff", fontFamily: "Arial"}).setScrollFactor(0).setDepth(104).setOrigin(0, 0.5).setAlpha(1); + this._iconOverlayObjects.push(colorLabel1); + + const colorLabel2 = this.add.text(sw / 2 - colorRowWidth / 2, colorRow2Y - 14, "", { + fontSize: "11px", color: "#ffffff", fontFamily: "Arial"}).setScrollFactor(0).setDepth(104).setOrigin(0, 0.5).setAlpha(1); + this._iconOverlayObjects.push(colorLabel2); + + const colorBoxWidth = sw; + const colorBoxHeight = colorBtnSize * 2 + 10 + 20; + const colorBoxX = 0; + const colorBoxY = colorRow1Y - colorBtnSize / 2 - 10; + const colorBox = this.add.graphics().setScrollFactor(0).setDepth(101); + colorBox.fillStyle(0x000000, 0.5); + colorBox.fillRect(colorBoxX, colorBoxY, colorBoxWidth, colorBoxHeight); + this._iconOverlayObjects.push(colorBox); + + const color1SelLabel = this.add.image(0, 0, "GJ_GameSheet03", "GJ_select_001.png").setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5).setVisible(false).setScale(0.6); + const color2SelLabel = this.add.image(0, 0, "GJ_GameSheet03", "GJ_select_001.png").setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5).setVisible(false).setScale(0.6); + this._iconOverlayObjects.push(color1SelLabel, color2SelLabel); + + const _moveColorSelect = (label, color, rowY) => { + const idx = rainbowColors.indexOf(color); + if (idx === -1) { + label.setVisible(false); + return; + } + + label.setPosition(colorRowStartX + idx * (colorBtnSize + colorPadding), rowY).setVisible(true); + }; + + _moveColorSelect(color1SelLabel, window.mainColor, colorRow1Y); + _moveColorSelect(color2SelLabel, window.secondaryColor, colorRow2Y); + + for (let ci = 0; ci < rainbowColors.length; ci++) { + const cx = colorRowStartX + ci * (colorBtnSize + colorPadding); + + const btn1AtlasInfo = getAtlasFrame(this, "GJ_colorBtn_001.png"); + let btn1; + btn1 = this.add.rectangle(cx, colorRow1Y, colorBtnSize, colorBtnSize, rainbowColors[ci]).setScrollFactor(0).setDepth(104).setInteractive(); + this._iconOverlayObjects.push(btn1); + + const btn2AtlasInfo = getAtlasFrame(this, "GJ_colorBtn_001.png"); + let btn2; + btn2 = this.add.rectangle(cx, colorRow2Y, colorBtnSize, colorBtnSize, rainbowColors[ci]).setScrollFactor(0).setDepth(104).setInteractive(); + this._iconOverlayObjects.push(btn2); + + ((color, b1, b2) => { + this._makeBouncyButton(b1, 1.0, () => { + window.mainColor = color; + localStorage.setItem("iconMainColor", hexadecimalToHex(color)); + _moveColorSelect(color1SelLabel, color, colorRow1Y); + if (this._player) { + const safeSetTint = (sprite, color) => { + if (sprite && sprite.setTint) { + try { + sprite.setTint(color); + if (this.renderer.type === Phaser.CANVAS && sprite.tintTopLeft !== undefined) { + if (sprite.tintTopLeft === 0xffffff && color !== 0xffffff) { + } + } + } catch (e) { + } + } + }; + + safeSetTint(this._player._playerSpriteLayer?.sprite, color); + safeSetTint(this._player._shipSpriteLayer?.sprite, color); + safeSetTint(this._player._ballSpriteLayer?.sprite, color); + safeSetTint(this._player._waveSpriteLayer?.sprite, color); + if (this._player._particleEmitter) { + try { + this._player._particleEmitter.tint = color; + } catch (e) { + } + } + } + selectedIcon.setTint(color); + }); + this._makeBouncyButton(b2, 1.0, () => { + window.secondaryColor = color; + localStorage.setItem("iconSecondaryColor", hexadecimalToHex(color)); + _moveColorSelect(color2SelLabel, color, colorRow2Y); + if (this._player) { + const safeSetTint = (sprite, color) => { + if (sprite && sprite.setTint) { + try { + sprite.setTint(color); + } catch (e) { + } + } + }; + + safeSetTint(this._player._playerGlowLayer?.sprite, color); + safeSetTint(this._player._playerOverlayLayer?.sprite, color); + safeSetTint(this._player._shipGlowLayer?.sprite, color); + safeSetTint(this._player._shipOverlayLayer?.sprite, color); + safeSetTint(this._player._ballGlowLayer?.sprite, color); + safeSetTint(this._player._ballOverlayLayer?.sprite, color); + safeSetTint(this._player._waveGlowLayer?.sprite, color); + safeSetTint(this._player._waveOverlayLayer?.sprite, color); + if (this._player._streak) { + try { + this._player._streak._color = color; + } catch (e) { + } + } + } + selectedIconExtra.setTint(window.secondaryColor); + _refreshPreview(currentTab, _getPreviewFrame(currentTab)); + }); + })(rainbowColors[ci], btn1, btn2); + } + + const previewY = lineY - 35; + const selectedIconExtra = this.add.image(sw / 2, previewY, _iconAtlas[startTab], null).setScrollFactor(0).setDepth(102).setVisible(false); + const selectedIcon = this.add.image(sw / 2, previewY, _iconAtlas[startTab], null).setScrollFactor(0).setDepth(103); + + const _getPreviewFrame = (tab) => { + const prop = _iconWindowProps[tab]; + const frames = _iconFrameSets[tab]; + const match = frames.find(f => f.replace("_001.png", "") === window[prop]); + return match || frames[0]; + }; + + const _refreshPreview = (tab, frame) => { + selectedIcon.setTexture(_iconAtlas[tab], frame); + const s = Math.min(80 / (selectedIcon.width || 80), 80 / (selectedIcon.height || 80)) * 0.85; + selectedIcon.setScale(s); + selectedIcon.setTint(window.mainColor); + const extraFrame = frame.replace("_001.png", "_2_001.png"); + const extraInfo = getAtlasFrame(this, extraFrame); + if (extraInfo) { + selectedIconExtra.setTexture(extraInfo.atlas, extraInfo.frame).setVisible(true).setScale(s).setTint(window.secondaryColor); + } else { + selectedIconExtra.setVisible(false); + } + }; + + _refreshPreview(startTab, _getPreviewFrame(startTab)); + this._iconOverlayObjects.push(selectedIconExtra, selectedIcon); + + const tabBtnY = containerY - 40; + const tabKeys = ["icon", "ship", "ball", "ufo", "wave"]; + const tabSpacing = 65; + const tabOffsets = { + icon: -tabSpacing * 2, + ship: -tabSpacing, + ball: 0, + ufo: tabSpacing, + wave: tabSpacing * 2, + }; + const tabRotations = { icon: -Math.PI/2, ship: 0, ball: -Math.PI/2, ufo: Math.PI/2, wave: Math.PI/2 }; + const tabFlipXStates = { icon: true, ship: false, ball: true, ufo: false, wave: false }; + const tabFlipYStates = { icon: false, ship: false, ball: false, ufo: true, wave: true }; + const tabBtnSprites = {}; + + const _switchTab = (tab) => { + for (const k of tabKeys) { + if (tabBtnSprites[k]) { + tabBtnSprites[k].setTexture("GJ_GameSheet03", + k === tab ? _tabBtnFrames[k].on : _tabBtnFrames[k].off); + } + } + _refreshPreview(tab, _getPreviewFrame(tab)); + _buildGrid(tab); + }; + + tabKeys.forEach((tab, i) => { + const isActive = tab === startTab; + const btn = this.add.image(sw / 2 + tabOffsets[tab], tabBtnY, "GJ_GameSheet03", + isActive ? _tabBtnFrames[tab].on : _tabBtnFrames[tab].off) + .setScrollFactor(0).setDepth(104).setScale(0.75) + .setRotation(tabRotations[tab]).setFlipX(tabFlipXStates[tab]).setFlipY(tabFlipYStates[tab]) + .setInteractive(); + tabBtnSprites[tab] = btn; + this._iconOverlayObjects.push(btn); + this._makeBouncyButton(btn, 0.75, () => _switchTab(tab)); + }); + + this._iconGridObjects = []; + + const selLabel = this.add.image(0, 0, "GJ_GameSheet03", "GJ_select_001.png").setScrollFactor(0).setDepth(106).setOrigin(0.5, 0.5).setVisible(false); + this._iconOverlayObjects.push(selLabel); + + const iconsPerPage = cols * rows; + let currentPage = 0; + + const arrowY = containerY + containerHeight / 2; + const arrowMargin = 54; + + const prevArrow = this.add.image(containerX - arrowMargin, arrowY, "GJ_GameSheet03", "GJ_arrow_01_001.png") + .setScrollFactor(0).setDepth(106).setScale(0.8).setFlipX(false).setInteractive(); + const nextArrow = this.add.image(containerX + containerWidth + arrowMargin, arrowY, "GJ_GameSheet03", "GJ_arrow_01_001.png") + .setScrollFactor(0).setDepth(106).setScale(0.8).setInteractive().setFlipX(true); + + //bouncy buttons for arrows + const _getMaxPages = (tab) => { + return Math.ceil(_iconFrameSets[tab].length / iconsPerPage); + }; + const _prevPage = () => { + const maxPages = _getMaxPages(_currentTab); + currentPage = (currentPage - 1 + maxPages) % maxPages; + _updateNavDots(currentPage, _currentTab); + _buildGrid(_currentTab, currentPage); + }; + const _nextPage = () => { + const maxPages = _getMaxPages(_currentTab); + currentPage = (currentPage + 1) % maxPages; + _updateNavDots(currentPage, _currentTab); + _buildGrid(_currentTab, currentPage); + }; + this._makeBouncyButton(prevArrow, 0.8, _prevPage); + this._makeBouncyButton(nextArrow, 0.8, _nextPage); + this._iconOverlayObjects.push(prevArrow, nextArrow); + const _buildGrid = (tab, page = 0) => { + for (const o of this._iconGridObjects) { + if (o && o.destroy) o.destroy(); + } + this._iconGridObjects = []; + selLabel.setVisible(false); + const allFrames = _iconFrameSets[tab]; + const frames = allFrames.slice(page * iconsPerPage, (page + 1) * iconsPerPage); + const atlas = _iconAtlas[tab]; + const prop = _iconWindowProps[tab]; + frames.forEach((frame, idx) => { + const col = idx % cols; + const row = Math.floor(idx / cols); + const ix = startX + col * (iconSize + padding); + const iy = startY + row * (iconSize + padding); + const hitRect = this.add.rectangle(ix, iy, iconSize, iconSize, 0x000000, 0).setScrollFactor(0).setDepth(104).setInteractive(); + const iconImg = this.add.image(ix, iy, atlas, frame).setScrollFactor(0).setDepth(103).setTint(0xAFAFAF); + const origScale = Math.min( + iconSize / (iconImg.width || iconSize), + iconSize / (iconImg.height || iconSize) + ) * 0.7; + iconImg.setScale(origScale); + const extraFrame = frame.replace("_001.png", "_2_001.png"); + const extraInfo = getAtlasFrame(this, extraFrame); + const extraImg = extraInfo + ? this.add.image(ix, iy, extraInfo.atlas, extraInfo.frame).setScrollFactor(0).setDepth(102).setScale(origScale) + : null; + if (extraImg) this._iconGridObjects.push(extraImg); + this._iconGridObjects.push(iconImg, hitRect); + if (frame.replace("_001.png", "") === window[prop]) { + selLabel.setPosition(ix, iy).setScale(0.75).setVisible(true); + } + + ((capturedFrame, capturedImg, capturedExtra, capturedOrigScale) => { + const bouncedScale = capturedOrigScale * 1.26; + const iconTargets = capturedExtra ? [capturedImg, capturedExtra] : [capturedImg]; + hitRect.on("pointerdown", () => { + hitRect._pressed = true; + iconTargets.forEach(t => this.tweens.killTweensOf(t, "scale")); + iconTargets.forEach(t => this.tweens.add({ targets: t, scale: bouncedScale, duration: 300, ease: "Bounce.Out" })); + }); + hitRect.on("pointerout", () => { + if (hitRect._pressed) { + hitRect._pressed = false; + iconTargets.forEach(t => this.tweens.killTweensOf(t, "scale")); + iconTargets.forEach(t => this.tweens.add({ targets: t, scale: capturedOrigScale, duration: 400, ease: "Bounce.Out" })); + } + }); + hitRect.on("pointerup", () => { + hitRect._pressed = false; + iconTargets.forEach(t => { this.tweens.killTweensOf(t); t.setScale(capturedOrigScale); }); + if (!this._iconOverlay) return; + + selLabel.setPosition(capturedImg.x, capturedImg.y).setScale(0.75).setVisible(true); + + window[prop] = capturedFrame.replace("_001.png", ""); + localStorage.setItem("icon" + prop.charAt(0).toUpperCase() + prop.slice(1), window[prop]); + + if (tab === "icon" && this._player) { + const layerMap = [ + { lp: "_playerSpriteLayer", suffix: "_001.png", tint: window.mainColor }, + { lp: "_playerGlowLayer", suffix: "_glow_001.png", tint: window.secondaryColor }, + { lp: "_playerOverlayLayer", suffix: "_2_001.png", tint: window.secondaryColor }, + { lp: "_playerExtraLayer", suffix: "_extra_001.png", tint: window.mainColor }, + ]; + for (const { lp, suffix, tint } of layerMap) { + const layer = this._player[lp]; + if (!layer || !layer.sprite) continue; + const found = getAtlasFrame(this, `${window.currentPlayer}${suffix}`); + if (found) { + layer.sprite.setTexture(found.atlas, found.frame); + if (tint !== null) layer.sprite.setTint(tint); + } + } + } + if (tab === "ship" && this._player) { + const layerMap = [ + { lp: "_shipSpriteLayer", suffix: "_001.png", tint: window.mainColor }, + { lp: "_shipGlowLayer", suffix: "_glow_001.png", tint: window.secondaryColor }, + { lp: "_shipOverlayLayer", suffix: "_2_001.png", tint: window.secondaryColor }, + { lp: "_shipExtraLayer", suffix: "_2_001.png", tint: window.secondaryColor }, + ]; + for (const { lp, suffix, tint } of layerMap) { + const layer = this._player[lp]; + if (!layer || !layer.sprite) continue; + const found = getAtlasFrame(this, `${window.currentShip}${suffix}`); + if (found) { + layer.sprite.setTexture(found.atlas, found.frame); + if (tint !== null) layer.sprite.setTint(tint); + } + } + } + if (tab === "ball" && this._player) { + const layerMap = [ + { lp: "_ballSpriteLayer", suffix: "_001.png", tint: window.mainColor }, + { lp: "_ballGlowLayer", suffix: "_glow_001.png", tint: window.secondaryColor }, + { lp: "_ballOverlayLayer", suffix: "_2_001.png", tint: window.secondaryColor }, + ]; + for (const { lp, suffix, tint } of layerMap) { + const layer = this._player[lp]; + if (!layer || !layer.sprite) continue; + const found = getAtlasFrame(this, `${window.currentBall}${suffix}`); + if (found) { + layer.sprite.setTexture(found.atlas, found.frame); + layer.sprite.setTint(tint); + } + } + } + if (tab === "wave" && this._player) { + const layerMap = [ + { lp: "_waveSpriteLayer", suffix: "_001.png", tint: window.mainColor }, + { lp: "_waveGlowLayer", suffix: "_glow_001.png", tint: window.secondaryColor }, + { lp: "_waveOverlayLayer", suffix: "_2_001.png", tint: window.secondaryColor }, + ]; + for (const { lp, suffix, tint } of layerMap) { + const layer = this._player[lp]; + if (!layer || !layer.sprite) continue; + const found = getAtlasFrame(this, `${window.currentWave}${suffix}`); + if (found) { + layer.sprite.setTexture(found.atlas, found.frame); + if (tint !== null) layer.sprite.setTint(tint); + } + } + } + if (tab === "ufo" && this._player) { + const layerMap = [ + { lp: "_birdSpriteLayer", suffix: "_001.png", tint: window.mainColor }, + { lp: "_birdGlowLayer", suffix: "_2_001.png", tint: window.secondaryColor }, + { lp: "_birdOverlayLayer", suffix: "_3_001.png", tint: window.secondaryColor }, + { lp: "_birdExtraLayer", suffix: "_extra_001.png",tint: window.mainColor }, + ]; + for (const { lp, suffix, tint } of layerMap) { + const layer = this._player[lp]; + if (!layer || !layer.sprite) continue; + const found = getAtlasFrame(this, `${window.currentBird}${suffix}`); + if (found) { + layer.sprite.setTexture(found.atlas, found.frame); + if (tint !== null) layer.sprite.setTint(tint); + } + } + } + + _refreshPreview(tab, capturedFrame); + }); + })(frame, iconImg, extraImg, origScale); + }); + }; + + let _currentTab = startTab; + + const _switchTabOrig = _switchTab; + const _switchTabPaged = (tab) => { + _currentTab = tab; + currentPage = 0; + _updateNavDots(0, tab); + for (const k of tabKeys) { + if (tabBtnSprites[k]) { + tabBtnSprites[k].setTexture("GJ_GameSheet03", + k === tab ? _tabBtnFrames[k].on : _tabBtnFrames[k].off); + } + } + _refreshPreview(tab, _getPreviewFrame(tab)); + _buildGrid(tab, 0); + }; + tabKeys.forEach(tab => { + const btn = tabBtnSprites[tab]; + if (btn) { + btn.removeAllListeners("pointerup"); + btn.removeAllListeners("pointerdown"); + btn.removeAllListeners("pointerout"); + this._makeBouncyButton(btn, 0.75, () => _switchTabPaged(tab)); + } + }); + + _updateNavDots(0, startTab); + _buildGrid(startTab, 0); + }; + + this._closeIconSelector = (silent = false) => { + if (!this._iconOverlay) return; + const destroy = () => { + if (this._iconGridObjects) { + for (const obj of this._iconGridObjects) { + if (obj && obj.destroy) obj.destroy(); + } + this._iconGridObjects = null; + } + if (this._iconOverlayObjects) { + for (const obj of this._iconOverlayObjects) { + if (obj && obj.destroy) obj.destroy(); + } + this._iconOverlayObjects = null; + } + this._iconOverlay = null; + }; + if (silent) { destroy(); return; } + const sw = screenWidth; + const sh = screenHeight; + const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(200).setAlpha(0); + fadeOut.fillStyle(0x000000, 1); + fadeOut.fillRect(0, 0, sw, sh); + this.tweens.add({ + targets: fadeOut, alpha: 1, duration: 150, ease: "Linear", + onComplete: () => { + destroy(); + this.tweens.add({ targets: fadeOut, alpha: 0, duration: 150, ease: "Linear", onComplete: () => fadeOut.destroy() }); + } + }); + }; + this._closeCreatorMenu = (silent = false) => { + if (!this._creatorOverlay) return; + if (silent == false) this._creatorMenuOpen = false; + const destroy = () => { + if (this._creatorOverlayObjects) { + for (const obj of this._creatorOverlayObjects) { + if (obj && obj.destroy) obj.destroy(); + } + this._creatorOverlayObjects = null; + } + this._creatorOverlay = null; + }; + if (silent) { destroy(); return; } + const sw = screenWidth; + const sh = screenHeight; + const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(200).setAlpha(0); + fadeOut.fillStyle(0x000000, 1); + fadeOut.fillRect(0, 0, sw, sh); + this.tweens.add({ + targets: fadeOut, alpha: 1, duration: 150, ease: "Linear", + onComplete: () => { + destroy(); + this.tweens.add({ targets: fadeOut, alpha: 0, duration: 150, ease: "Linear", onComplete: () => fadeOut.destroy() }); + } + }); + }; + this._positionMenuItems(); + //icon stuff sequel + if (this._iconBtn) { + this._iconBtn.x = (screenWidth / 2) - this._playBtn.width / 2 - 50 - (this._iconBtn.width * this._iconBtn.scaleX) / 2; + this.tweens.killTweensOf(this._iconBtn, "y"); + this._iconBtn.y = 320; + if (this._chrSelDecor) this._chrSelDecor.destroy(); + this._chrSelDecor = this.add.image(this._iconBtn.x - 110, this._iconBtn.y - (this._iconBtn.height * this._iconBtn.scaleY) / 2 + 160, "GJ_GameSheet03", "GJ_chrSel_001.png").setScrollFactor(0).setDepth(31); +} + if (this._creatorBtn) { + this._creatorBtn.x = (screenWidth / 2) + this._playBtn.width / 2 + 50 + (this._creatorBtn.width * this._creatorBtn.scaleX) / 2; + this.tweens.killTweensOf(this._creatorBtn, "y"); + this._creatorBtn.y = 320; + if (this._lvlEditDecor) this._lvlEditDecor.destroy(); + this._lvlEditDecor = this.add.image(this._creatorBtn.x + 110, this._creatorBtn.y - (this._creatorBtn.height * this._creatorBtn.scaleY) / 2 + 160, "GJ_GameSheet03", "GJ_lvlEdit_001.png").setScrollFactor(0).setDepth(31); +} + this._spaceWasDown = false; + this._spaceKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.SPACE); + this._upKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.UP); + this._wKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.W); + this._lKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.L); + this._leftKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.LEFT); + this._rightKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.RIGHT); + this._aKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.A); + this._dKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.D); + + this._startPosIndex = -1; + + this.input.keyboard.on('keydown-Q', () => { + if (!window.startPosSwitcher) return; + this.changeStartPos(-1); + }); + + this.input.keyboard.on('keydown-E', () => { + if (!window.startPosSwitcher) return; + this.changeStartPos(1); + }); + + this._percentageLabel = this.add.bitmapText(screenWidth / 2, 20, "bigFont", "0%", 30).setOrigin(0.5, 0.5); + this._percentageLabel.setVisible(false); + this._percentageLabel.setDepth(100); + + this._noclipIndicator = this.add.bitmapText(10, 10, "bigFont", "Noclip", 20) + .setOrigin(0, 0) + .setAlpha(0.4) + .setDepth(100) + .setVisible(false); + + this._accuracyIndicator = this.add.bitmapText(10, 30, "bigFont", "100.00%", 20) + .setOrigin(0, 0) + .setAlpha(0.4) + .setDepth(100) + .setVisible(false); + + this._deathsIndicator = this.add.bitmapText(10, 50, "bigFont", "0 Deaths", 20) + .setOrigin(0, 0) + .setAlpha(0.4) + .setDepth(100) + .setVisible(false); + + this._cpsIndicator = this.add.bitmapText(10, 70, "bigFont", "0 CPS", 20) + .setOrigin(0, 0) + .setAlpha(0.4) + .setDepth(100) + .setVisible(false); + + this._bottedIndicator = this.add.bitmapText(10, 70, "bigFont", "Botted", 20) + .setOrigin(0, 0) + .setAlpha(0.4) + .setDepth(100) + .setTint(0xff0000) + .setVisible(false); + + this.noclipFlash = this.add.rectangle( + this.cameras.main.centerX, + this.cameras.main.centerY, + this.cameras.main.width, + this.cameras.main.height, + 0xff0000 + ); + this.noclipFlash.setScrollFactor(0); + this.noclipFlash.setDepth(99); + this.noclipFlash.setAlpha(0); + + this._updatePracticeHUDBar = () => {}; + + this._pauseBtn = this.add.image(screenWidth - 30, 30, "GJ_WebSheet", "GJ_pauseBtn_clean_001.png").setScrollFactor(0).setDepth(30).setAlpha(75 / 255).setVisible(false); + this._pauseBtn.setInteractive(); + this._expandHitArea(this._pauseBtn, 2); + this._pauseBtn.on("pointerdown", () => this._pauseGame()); + this._escKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.ESC); + this._escKey.on("down", () => { + if (this._levelSelectOverlay) { + this._closeLevelSelect(); + return; + } + if (this._iconOverlay) { + this._closeIconSelector(); + return; + } + if (this._updateLogPopup) { + this._closeUpdateLogPopup(); + return; + } + if (this._searchOverlay) { + this._closeSearchMenu(true); + this._openCreatorMenu(); + return; + } + if (this._onlineLevelsOverlay) { + this._closeOnlineLevelsScene(); + return; + } + if (this._creatorOverlay) { + this._closeCreatorMenu(); + return; + } + if (this._settingsPopup) { + this._settingsPopup.destroy(); + this._settingsPopup = null; + return; + } + if (this._macroPopup) { + this.events.off("update", this._refreshMacroButtons); + this._macroPopup.destroy(); + this._macroPopup = null; + return; + } + if (this._settingsLayerOverlay) { + if (!this._settingsScreenClosing) { + this._hideSettingsScreen(); + } + return; + } + if (this._infoPopup) { + this._infoPopup.destroy(); + this._infoPopup = null; + return; + } + if (this._newgroundsPopup) { + this._closeNewgroundsPopup(); + return; + } + if (this._statsLayerOverlay) { + this._hideStatsScreen(); + return; + } + if (this._paused) { + this._audio.playEffect("quitSound_01"); + this._audio.stopMusic(); + this._resumeGame(); + this.scene.restart(); + } else if (!this._menuActive && !this._slideIn && !this._levelWon) { + this._pauseGame(); + } + }); + this._restartKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.R); + this._restartKey.on("down", () => { + if (!this._menuActive && !this._slideIn && !this._levelWon && !this._menuActive) { + this._restartLevel(); + } + }); + this._practiceKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.P); + this._practiceKey.on("down", () => { + if (!this._menuActive && !this._slideIn) { + const isPracticeMode = this._practicedMode.togglePracticeMode(); + if (this._checkpointBtnContainer) { + this._checkpointBtnContainer.setVisible(isPracticeMode); + } + if (this._practiceModeBarContainer) { + this._practiceModeBarContainer.setVisible(isPracticeMode); + } + this._audio.startMusic(); + } + }); + this._saveCheckpointKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.Z); + this._saveCheckpointKey.on("down", () => { + if (!this._menuActive && !this._slideIn && this._practicedMode.practiceMode && !this._state.isDead) { + const saved = this._practicedMode.saveCheckpoint(this._state, this._playerWorldX, this._cameraX, this); + if (saved) { + } + } + }); + this._deleteCheckpointKey = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.X); + this._deleteCheckpointKey.on("down", () => { + if (!this._menuActive && !this._slideIn && this._practicedMode.practiceMode) { + const deleted = this._practicedMode.deleteLastCheckpoint(); + } + }); + this._paused = false; + this._pauseContainer = null; + this._sfxVolume = localStorage.getItem("userSfxVol") ?? 1; + this._initMacroBot(); + this.input.on("pointerdown", () => { + if (!this._menuActive && !this._paused && !this._levelSelectOverlay && !this._levelWon && !window.isEditor) { + this._pushButton(); + } + }); + this.input.on("pointerup", () => { + if (!this._menuActive && !this._paused && !this._levelSelectOverlay && !this._levelWon && !window.isEditor) { + this._releaseButton(); + } + }); + if (!window.gdpointerup) { + window.gdpointerup = true; + window.addEventListener("pointerup", () => this._releaseButton(true)); + } + if (!window.gdtouchend) { + window.gdtouchend = true; + window.addEventListener("touchend", () => this._releaseButton(true)); + } + this.scale.on("enterfullscreen", () => this._onFullscreenChange(true)); + this.scale.on("leavefullscreen", () => this._onFullscreenChange(false)); + + this._buildHUD(); + this._createStartPosGui(); + this._loadSettings(); + + document.addEventListener("visibilitychange", () => { + if (document.hidden) { + this._audio.pauseMusic(); + } else if (!this._menuActive && !this._paused && !this._state.isDead && !this._levelWon) { + this._audio.resumeMusic(); + } + }); + if (!window.gdorientationchange) { + window.gdorientationchange = true; + window.addEventListener("orientationchange", () => { + this.time.delayedCall(100, () => this.scale.refresh()); + }); + } + if (!window.gdresize) { + window.gdresize = true; + window.addEventListener("resize", () => { + this.scale.refresh(); + }); + } + if (this.game.registry.get("fadeInFromBlack")) { + this.game.registry.remove("fadeInFromBlack"); + this.cameras.main.fadeIn(400, 0, 0, 0); + } + this._levelLabel = this.add.bitmapText(screenWidth - 565, 30, "bigFont", window.currentlevel[1], 30).setOrigin(0.5, 0.5).setVisible(false); + this._levelLabel.setScale(Math.min(1, 220 / this._levelLabel.width)); + + this._leftBtn = this.add.image(screenWidth - 700, 30, "GJ_GameSheet03", "edit_leftBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setVisible(false); + this._rightBtn = this.add.image(screenWidth - 429, 30, "GJ_GameSheet03", "edit_leftBtn_001.png").setScrollFactor(0).setDepth(30).setInteractive().setVisible(false); + this._rightBtn.setRotation(Math.PI); + window.scene = this.scene; + window.rightbuttoncallback = () => { + if (this._levelSelectOverlay && this._levelSelectSwitchLevel) { + this._levelSelectSwitchLevel(1); + } + }; + window.leftbuttoncallback = () => { + if (this._levelSelectOverlay && this._levelSelectSwitchLevel) { + this._levelSelectSwitchLevel(-1); + } + }; + this._makeBouncyButton(this._leftBtn, 1, () => {window.leftbuttoncallback()}, () => this._menuActive); + this._makeBouncyButton(this._rightBtn, 1, () => {window.rightbuttoncallback()}, () => this._menuActive); + const menuMusicEnabled = localStorage.getItem("menuMusicEnabled"); + const shouldPlayMenuMusic = menuMusicEnabled === null ? true : menuMusicEnabled === "true"; + + if (!this._audio.isplaying() && shouldPlayMenuMusic) { + this._audio.startMenuMusic(); + } else if (this._audio.isplaying() && !shouldPlayMenuMusic) { + this._audio.stopMusic(); + } + if (!window.updateLogShown) { + this._buildUpdateLogPopup(); + window.updateLogShown = true; + } + if (window.levelID) { + this._openSearchMenu(); + } + if (this.game.registry.get("autoStartGame")) { + if (!window.settingsMap) { + const cachedLevelText = this.cache.text.get(window.currentlevel[2]) || + ((window._onlineLevelString && window.currentlevel[2] === window._onlineLevelId) ? window._onlineLevelString : null); + if (cachedLevelText) { + this._level.loadLevel(cachedLevelText); + } + } + if (window.settingsMap) { + this.game.registry.remove("autoStartGame"); + this._levelLabel.setVisible(false); + this._leftBtn.setVisible(false); + this._rightBtn.setVisible(false); + if (this._practiceModeBarContainer) { + this._practiceModeBarContainer.setVisible(this._practicedMode && this._practicedMode.practiceMode); + } + this._startGame(); + } else { + console.warn("autoStartGame: missing settingsMap for", window.currentlevel && window.currentlevel[2]); + } + } + } + _parseLevelColors(levelId) { + const LEVEL_COLORS = [ + 0x0100f5,0xf902f8,0xf90285,0xfa0102, + 0xfa8702,0xfcfc06,0x03fb03,0x02fbfb, + 0x007dff + ]; + let index = 0; + if (window.allLevels) { + index = window.allLevels.findIndex(l => l[2] === levelId); + if (index === -1) index = 0; + } + const bgHex = LEVEL_COLORS[index % LEVEL_COLORS.length]; + return { bgHex, groundHex: bgHex }; + } + _openLevelSelect() { + if (this._levelSelectOverlay) return; + const sw = screenWidth; + const sh = screenHeight; + const cx = sw / 2; + const cy = sh / 2; + let { bgHex, groundHex } = this._parseLevelColors(window.currentlevel[2]); + const drawOverlay = (gfx, colorHex, isEveryEnd = false) => { + gfx.clear(); + const rRaw = (colorHex >> 16) & 0xff; + const gRaw = (colorHex >> 8) & 0xff; + const bRaw = colorHex & 0xff; + const topMul = isEveryEnd ? 0.30 : 0.65; + const botMul = isEveryEnd ? 0.18 : 0.42; + const steps = 60; + for (let i = 0; i < steps; i++) { + const t = i / (steps - 1); + const mul = topMul + (botMul - topMul) * t; + const r2 = Math.min(255, Math.round(rRaw * mul)); + const g2 = Math.min(255, Math.round(gRaw * mul)); + const b2 = Math.min(255, Math.round(bRaw * mul)); + gfx.fillStyle((r2 << 16) | (g2 << 8) | b2, 1); + const y0 = Math.floor(i * sh / steps); + gfx.fillRect(0, y0, sw, Math.ceil(sh / steps) + 1); + } + }; + const isEveryEnd = (levelId) => levelId === "level_99"; + const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(200); + fadeIn.fillStyle(0x000000, 1); + fadeIn.fillRect(0, 0, sw, sh); + this.tweens.add({ targets: fadeIn, alpha: 0, duration: 300, ease: "Linear", onComplete: () => fadeIn.destroy() }); + const overlay = this.add.graphics().setScrollFactor(0).setDepth(150); + drawOverlay(overlay, bgHex, isEveryEnd(window.currentlevel[2])); + this._levelSelectOverlay = overlay; + const tableBottom = this.add.image(cx, 0, "GJ_GameSheet03", "GJ_topBar_001.png").setScrollFactor(0).setDepth(152).setOrigin(0.5, 0); + const groundY = sh + 175; + const groundId = (window._groundId || "00"); + const groundFrame = this.textures.getFrame("groundSquare_" + groundId + "_001.png"); + const tileW = groundFrame ? groundFrame.width : 1012; + const numTiles = Math.ceil(sw / tileW) + 2; + const groundTintHex = (colorHex) => { + const r = Math.round(((colorHex >> 16) & 0xff) * 0.45); + const g = Math.round(((colorHex >> 8) & 0xff) * 0.45); + const b = Math.round(( colorHex & 0xff) * 0.45); + return (r << 16) | (g << 8) | b; + }; + const staticGroundTiles = []; + for (let gi = 0; gi < numTiles; gi++) { + const gt = this.add.image(gi * tileW, groundY, "groundSquare_" + groundId + "_001.png") + .setScrollFactor(0).setDepth(151).setOrigin(0, 1).setTint(groundTintHex(groundHex)); + staticGroundTiles.push(gt); + } + const floorLineFrame = this.textures.getFrame("GJ_WebSheet", "floorLine_01_001.png"); + const floorLineW = floorLineFrame ? floorLineFrame.width : 888; + const floorLineScale = sw / floorLineW; + const groundTileH = groundFrame ? groundFrame.height : 80; + const staticFloorLine = this.add.image(cx, groundY - groundTileH, "GJ_WebSheet", "floorLine_01_001.png") + .setScrollFactor(0).setDepth(152).setOrigin(0.5, 0.5).setScale(floorLineScale, 1).setBlendMode(S); + const cornerBL = this.add.image(0, sh, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(152).setOrigin(1, 1).setFlipY(true).setAngle(90); + const cornerBR = this.add.image(sw, sh, "GJ_GameSheet03", "GJ_sideArt_001.png").setScrollFactor(0).setDepth(152).setOrigin(1, 0).setFlipY(false).setAngle(90); + const backBtn = this.add.image(50, 48, "GJ_GameSheet03", "GJ_arrow_01_001.png").setScrollFactor(0).setDepth(154).setFlipX(true).setScale(1, -1).setRotation(Math.PI).setInteractive(); + backBtn.on("pointerdown", () => { + backBtn._pressed = true; + this.tweens.killTweensOf(backBtn); + this.tweens.add({ targets: backBtn, scaleX: 1.26, scaleY: -1.26, duration: 300, ease: "Bounce.Out" }); + }); + backBtn.on("pointerout", () => { + if (backBtn._pressed) { + backBtn._pressed = false; + this.tweens.killTweensOf(backBtn); + this.tweens.add({ targets: backBtn, scaleX: 1, scaleY: -1, duration: 400, ease: "Bounce.Out" }); + } + }); + backBtn.on("pointerup", () => { + if (backBtn._pressed) { + backBtn._pressed = false; + this.tweens.killTweensOf(backBtn); + backBtn.setScale(1, -1); + this._closeLevelSelect(); + } + }); + const infoBtn = this.add.image(sw - 40, 40, "GJ_GameSheet03", "GJ_infoIcon_001.png").setScrollFactor(0).setDepth(154).setRotation(Math.PI / 2).setInteractive(); + const arrowL = this.add.image(55, cy - 25, "GJ_GameSheet03", "navArrowBtn_001.png").setScrollFactor(0).setDepth(154).setScale(1.1).setFlipX(true).setInteractive(); + const arrowR = this.add.image(sw - 55, cy - 25, "GJ_GameSheet03", "navArrowBtn_001.png").setScrollFactor(0).setDepth(154).setScale(1.1).setFlipX(false).setInteractive(); + const allLevels = window.allLevels || []; + const dotY = sh - 36; + const maxDots = Math.min(allLevels.length, 28); + const dotSpacing = 27; + const dotStartX = cx - (maxDots - 1) * dotSpacing / 2; + const dotObjs = []; + const refreshDots = () => { + for (const d of dotObjs) d.destroy(); + dotObjs.length = 0; + const idx = allLevels.findIndex(l => l[2] === window.currentlevel[2]); + for (let di = 0; di < maxDots; di++) { + const active = di === idx; + const d = this.add.graphics().setScrollFactor(0).setDepth(153); + d.fillStyle(0xffffff, active ? 1 : 0.3); + d.fillCircle(dotStartX + di * dotSpacing, dotY, 7); + dotObjs.push(d); + } + }; + refreshDots(); + const cardW = Math.min(700, sw - 180); + const cardH = 180; + const cardX = cx; + const cardY = cy - 100; + const cardSlideContainer = this.add.container(0, 0).setScrollFactor(0).setDepth(152); + const cardBounceContainer = this.add.container(cardX, cardY).setScrollFactor(0).setDepth(0); + cardSlideContainer.add(cardBounceContainer); + const cardContainer = cardSlideContainer; + const cardBg = this.add.graphics(); + const drawCardBg = (colorHex, dark = false) => { + cardBg.clear(); + const mul = dark ? 0.10 : 0.22; + const r = Math.round(((colorHex >> 16) & 0xff) * mul); + const g = Math.round(((colorHex >> 8) & 0xff) * mul); + const b = Math.round(( colorHex & 0xff) * mul); + cardBg.fillStyle((r << 16) | (g << 8) | b, 0.92); + cardBg.fillRoundedRect(-cardW / 2, -cardH / 2, cardW, cardH, 14); + }; + drawCardBg(bgHex, isEveryEnd(window.currentlevel[2])); + cardBounceContainer.add(cardBg); + + const cardHit = this.add.zone(cardX, cardY, cardW, cardH) + .setScrollFactor(0).setDepth(156).setInteractive(); + const dragState = { + pressed: false, + dragging: false, + startX: 0, + lastX: 0, + velSamples: [], + get vel() { + if (!this.velSamples.length) return 0; + return this.velSamples.reduce((a, b) => a + b, 0) / this.velSamples.length; + }, + pushVel(v) { + this.velSamples.push(v); + if (this.velSamples.length > 5) this.velSamples.shift(); + }, + reset() { + this.pressed = false; + this.dragging = false; + this.velSamples = []; + } + }; + + const onDragStart = (ptr) => { + dragState.pressed = true; + dragState.startX = ptr.x; + dragState.lastX = ptr.x; + dragState.dragging = false; + dragState.velSamples = []; + }; + cardHit.on("pointerdown", (ptr) => { + onDragStart(ptr); + this.tweens.killTweensOf(cardBounceContainer, "scale"); + this.tweens.add({ targets: cardBounceContainer, scale: 1.26, duration: 300, ease: "Bounce.Out" }); + }); + + const onDragMove = (ptr) => { + if (!dragState.pressed) return; + const dx = ptr.x - dragState.startX; + const frameDelta = ptr.x - dragState.lastX; + dragState.pushVel(frameDelta); + dragState.lastX = ptr.x; + if (!dragState.dragging && Math.abs(dx) > 12) { + dragState.dragging = true; + this.tweens.killTweensOf(cardBounceContainer, "scale"); + this.tweens.add({ targets: cardBounceContainer, scale: 1, duration: 200, ease: "Quad.Out" }); + } + if (dragState.dragging) { + cardContainer.x = dx; + } + }; + const onDragUp = (ptr) => { + if (!dragState.pressed) return; + const wasDragging = dragState.dragging; + const totalDx = ptr.x - dragState.startX; + const vel = dragState.vel; + dragState.reset(); + if (wasDragging) { + const dragThreshold = cardW * 0.18; + if (Math.abs(totalDx) > dragThreshold || Math.abs(vel) > 3) { + const dir = totalDx < 0 ? 1 : -1; + switchLevel(dir, cardContainer.x, vel); + } else { + if (_currentAnimUpdate) { + this.events.off("preupdate", _currentAnimUpdate); + _currentAnimUpdate = null; + } + let snapX = cardContainer.x; + let snapVel = vel * 40; + const snapUpdate = (time, delta) => { + const dt = Math.min(delta / 1000, 0.05); + const tension = 400; + const friction = 18; + const force = -tension * snapX - friction * snapVel; + snapVel += force * dt; + snapX += snapVel * dt; + if (Math.abs(snapX) < 0.5 && Math.abs(snapVel) < 5) { + snapX = 0; + this.events.off("preupdate", snapUpdate); + if (_currentAnimUpdate === snapUpdate) _currentAnimUpdate = null; + } + cardContainer.x = snapX; + }; + _currentAnimUpdate = snapUpdate; + this.events.on("preupdate", snapUpdate); + } + } else { + if (ptr.x >= cardX - cardW/2 && ptr.x <= cardX + cardW/2 && + ptr.y >= cardY - cardH/2 && ptr.y <= cardY + cardH/2) { + + this.input.enabled = false; + this.tweens.killTweensOf(cardBounceContainer, "scale"); + cardBounceContainer.setScale(1); + + const lvl = window.currentlevel; + const songID = lvl[0]; + const levelFileName = lvl[2]; + const songFileName = lvl[4] ? lvl[4] : lvl[1].replaceAll(" ", ""); + + const loadingText = this.add.bitmapText(cx, cy, "goldFont", "Downloading Level Assets...", 20).setOrigin(0.5).setDepth(200); + + this.load.text(levelFileName, "assets/levels/" + levelFileName.split("_")[1] + ".txt"); + this.load.audio(songID, "assets/music/" + songFileName + ".mp3"); + + this.load.once("complete", () => { + loadingText.destroy(); + this._audio.playEffect("playSound_01", { volume: 1 }); + this._closeLevelSelect(true); + this._audio.stopMusic(); + this.input.enabled = true; + this.game.registry.set("autoStartGame", true); + this.scene.restart(); + }); + + this.load.start(); + } else { + this.tweens.killTweensOf(cardBounceContainer, "scale"); + this.tweens.add({ targets: cardBounceContainer, scale: 1, duration: 200, ease: "Quad.Out" }); + } + } + }; + this.input.on("pointermove", onDragMove); + this.input.on("pointerup", onDragUp); + const _origClose = this._closeLevelSelect.bind(this); + const _patchedClose = (doTransition) => { + this.input.off("pointermove", onDragMove); + this.input.off("pointerup", onDragUp); + this._closeLevelSelect = _origClose; + _origClose(doTransition); + }; + this._closeLevelSelect = _patchedClose; + const cardContentObjs = []; + const buildCardContent = () => { + for (const o of cardContentObjs) { this.tweens.killTweensOf(o); o.destroy(); } + cardContentObjs.length = 0; + const lvl = window.currentlevel; + const levelId = lvl[2] || "level_1"; + const levelDifficultyMap = { + "level_1": "diffIcon_01_btn_001", + "level_2": "diffIcon_01_btn_001", + "level_3": "diffIcon_02_btn_001", + "level_4": "diffIcon_02_btn_001", + "level_5": "diffIcon_03_btn_001", + "level_6": "diffIcon_03_btn_001", + "level_7": "diffIcon_04_btn_001", + "level_8": "diffIcon_04_btn_001", + "level_9": "diffIcon_04_btn_001", + "level_10": "diffIcon_05_btn_001", + "level_11": "diffIcon_05_btn_001", + "level_12": "diffIcon_05_btn_001", + "level_13": "diffIcon_05_btn_001", + "level_14": "diffIcon_06_btn_001", + "level_15": "diffIcon_05_btn_001", + "level_16": "diffIcon_05_btn_001", + "level_17": "diffIcon_04_btn_001", + "level_18": "diffIcon_06_btn_001", + "level_19": "diffIcon_04_btn_001", + "level_20": "diffIcon_06_btn_001", + "level_21": "diffIcon_05_btn_001", + "level_22": "diffIcon_05_btn_001", + "level_99": "diffIcon_10_btn_001", + "level_100": "diffIcon_10_btn_001", + "level_137409445": "diffIcon_00_btn_001", + "level_5703070": "diffIcon_07_btn_001", + "level_137677336": "diffIcon_00_btn_001", + "level_116489424": "diffIcon_00_btn_001", + "level_4284013": "diffIcon_06_btn_001", + "level_56199846": "diffIcon_04_btn_001", + "level_23": "diffIcon_10_btn_001" + }; + const diffIconKey = levelDifficultyMap[levelId] || "diffIcon_05_btn_001"; + const diffFrame = diffIconKey + ".png"; + const iconX = cardX - cardW / 2 + 52; + const isHardDemon = diffIconKey === "diffIcon_06_btn_001"; + const iconRotation = isHardDemon ? Math.PI / 2 : 0; + const demonIcon = this.add.image(iconX - cardX, 0, "GJ_GameSheet03", diffFrame) + .setScrollFactor(0).setDepth(155).setScale(1).setOrigin(0.5, 0.5).setRotation(iconRotation).setFlipY(isHardDemon); + cardContentObjs.push(demonIcon); + cardBounceContainer.add(demonIcon); + const maxIconH = cardH - 16; + const maxIconW = 80; + const iconFrame = this.textures.getFrame("GJ_GameSheet03", diffFrame); + let finalIconScale = 1; + if (iconFrame) { + const scaleForH = maxIconH / iconFrame.height; + let scaleForW = maxIconW / iconFrame.width; + finalIconScale = Math.min(1, scaleForH, scaleForW); + demonIcon.setScale(finalIconScale); + } + let iconDisplayW = (iconFrame ? iconFrame.width : 80) * finalIconScale; + const iconDisplayH = (iconFrame ? iconFrame.height : 80) * finalIconScale; + const nameLabel = this.add.bitmapText(0, 0, "bigFont", lvl[1], 50) + .setScrollFactor(0).setDepth(155).setOrigin(0, 0.5); + const gap = 25; + const naturalGroupW = iconDisplayW + gap + nameLabel.width; + const naturalGroupH = Math.max(iconDisplayH, nameLabel.height); + const cardPad = 16; + const maxGroupW = cardW - cardPad * 2; + const maxGroupH = cardH - cardPad * 2; + const groupScale = Math.min(1, maxGroupW / naturalGroupW, maxGroupH / naturalGroupH); + const scaledIconW = iconDisplayW * groupScale; + const scaledLabelW = nameLabel.width * groupScale; + const scaledGap = gap * groupScale; + const totalW = scaledIconW + scaledGap + scaledLabelW; + const groupStartX = cardX - totalW / 2; + demonIcon.setScale(finalIconScale * groupScale); + demonIcon.setPosition(groupStartX + scaledIconW / 2 - cardX, 0); + nameLabel.setScale(groupScale); + nameLabel.setPosition(groupStartX + scaledIconW + scaledGap - cardX, 0); + cardContentObjs.push(nameLabel); + cardBounceContainer.add(nameLabel); + }; + const barAreaY = cardY + cardH / 2 + 100; + const barW2 = Math.min(600, sw - 200); + const barH2 = 36; + const barX0 = cx - barW2 / 2; + let barObjs = []; + const buildBar = () => { + for (const o of barObjs) { this.tweens.killTweensOf(o); o.destroy(); } + barObjs.length = 0; + const bestNormal = parseFloat(localStorage.getItem("bestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); + const modeLabel = this.add.bitmapText(cx, barAreaY - 40, "bigFont", "Normal Mode", 30) + .setScrollFactor(0).setDepth(155).setOrigin(0.5, 0.5); + barObjs.push(modeLabel); + cardContainer.add(modeLabel); + const barBg = this.add.graphics().setScrollFactor(0).setDepth(154); + barBg.fillStyle(0x000000, 0.6); + barBg.fillRoundedRect(barX0, barAreaY - barH2 / 2, barW2, barH2, barH2 / 2); + barObjs.push(barBg); + cardContainer.add(barBg); + const padding = 3; + const innerH2 = barH2 - padding * 2; + const innerW2 = barW2 - padding * 2; + const innerRadius = innerH2 / 2; + const fillW = Math.max(innerH2, innerW2 * bestNormal / 100); + if(bestNormal > 0) { + const barFg = this.add.graphics().setScrollFactor(0).setDepth(155); + barFg.fillStyle(0x00FF00, 1); + const rightR = (bestNormal >= 100) ? innerRadius : 0; + barFg.fillRoundedRect(barX0 + padding, barAreaY - barH2 / 2 + padding, fillW, innerH2, { + tl: innerRadius, + bl: innerRadius, + tr: rightR, + br: rightR + }); + + barObjs.push(barFg); + cardContainer.add(barFg); + } + const pctLabel = this.add.bitmapText(cx, barAreaY, "bigFont", Math.round(bestNormal) + "%", 22) + .setScrollFactor(0).setDepth(156).setOrigin(0.5, 0.5); + barObjs.push(pctLabel); + cardContainer.add(pctLabel); + const bestPractice = parseFloat(localStorage.getItem("practiceBestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); + const practBarAreaY = barAreaY + barH2 + 48; + const practModeLabel = this.add.bitmapText(cx, practBarAreaY - 40, "bigFont", "Practice Mode", 30) + .setScrollFactor(0).setDepth(155).setOrigin(0.5, 0.5); + barObjs.push(practModeLabel); + cardContainer.add(practModeLabel); + const practBarBg = this.add.graphics().setScrollFactor(0).setDepth(154); + practBarBg.fillStyle(0x000000, 0.6); + practBarBg.fillRoundedRect(barX0, practBarAreaY - barH2 / 2, barW2, barH2, barH2 / 2); + barObjs.push(practBarBg); + cardContainer.add(practBarBg); + if (bestPractice > 0) { + const practFillW = Math.max(innerH2, innerW2 * bestPractice / 100); + const practBarFg = this.add.graphics().setScrollFactor(0).setDepth(155); + practBarFg.fillStyle(0x00FFFF, 1); + const practRightR = (bestPractice >= 100) ? innerRadius : 0; + practBarFg.fillRoundedRect(barX0 + padding, practBarAreaY - barH2 / 2 + padding, practFillW, innerH2, { + tl: innerRadius, bl: innerRadius, tr: practRightR, br: practRightR + }); + barObjs.push(practBarFg); + cardContainer.add(practBarFg); + } + const practPctLabel = this.add.bitmapText(cx, practBarAreaY, "bigFont", Math.round(bestPractice) + "%", 22) + .setScrollFactor(0).setDepth(156).setOrigin(0.5, 0.5); + barObjs.push(practPctLabel); + cardContainer.add(practPctLabel); + }; + buildCardContent(); + buildBar(); + let _currentAnimUpdate = null; + const switchLevel = (dir, startX = null, dragVel = 0) => { + if (!window.allLevels || window.allLevels.length === 0) return; + + if (_currentAnimUpdate) { + this.events.off("preupdate", _currentAnimUpdate); + _currentAnimUpdate = null; + } + let idx = window.allLevels.findIndex(l => l[2] === window.currentlevel[2]); + idx = (idx + dir + window.allLevels.length) % window.allLevels.length; + window.currentlevel = [...window.allLevels[idx]]; + const newColors = this._parseLevelColors(window.currentlevel[2]); + const dark = isEveryEnd(window.currentlevel[2]); + const slideDist = cardW - 200; + const slideOutTarget = -dir * slideDist; + const slideInStart = dir * slideDist; + this.tweens.killTweensOf(cardContainer); + let state = "out"; + let currentX = startX !== null ? startX : cardContainer.x; + const dragSpeedBoost = Math.abs(dragVel) * 60; + const slideOutSpeed = slideDist * 14 + dragSpeedBoost; + const slideInVel = slideDist * 6 + dragSpeedBoost; + let vel = 0; + const scrollAnimUpdate = (time, delta) => { + const dt = Math.min(delta / 1000, 0.05); + if (state === "out") { + currentX += (-dir) * slideOutSpeed * dt; + if ((dir > 0 && currentX <= slideOutTarget) || (dir < 0 && currentX >= slideOutTarget)) { + for (const o of cardContentObjs) { + cardBounceContainer.remove(o, false); + o.destroy(); + } + for (const o of barObjs) { + cardSlideContainer.remove(o, false); + o.destroy(); + } + cardContentObjs.length = 0; + barObjs.length = 0; + drawCardBg(newColors.bgHex, dark); + buildCardContent(); + buildBar(); + drawOverlay(overlay, newColors.bgHex, dark); + for (const gt of staticGroundTiles) gt.setTint(groundTintHex(newColors.groundHex)); + refreshDots(); + state = "in"; + currentX = slideInStart; + vel = (-dir) * slideInVel; + } + } else if (state === "in") { + const tension = 300; + const friction = 15; + const force = -tension * currentX - friction * vel; + vel += force * dt; + currentX += vel * dt; + + if (Math.abs(currentX) < 1 && Math.abs(vel) < 15) { + currentX = 0; + this.events.off("preupdate", scrollAnimUpdate); + if (_currentAnimUpdate === scrollAnimUpdate) _currentAnimUpdate = null; + } + } + cardContainer.x = currentX; + }; + _currentAnimUpdate = scrollAnimUpdate; + this.events.on("preupdate", scrollAnimUpdate); + }; + this._makeBouncyButton(arrowL, 1.1, () => { switchLevel(-1); }); + this._makeBouncyButton(arrowR, 1.1, () => { switchLevel(1); }); + const inputBlocker = this.add.zone(cx, cy, sw, sh) + .setScrollFactor(0).setDepth(151).setInteractive(); + inputBlocker.on("pointerdown", onDragStart); + this._levelSelectStaticObjs = [overlay, inputBlocker, tableBottom, ...staticGroundTiles, staticFloorLine, cornerBL, cornerBR, backBtn, infoBtn, arrowL, arrowR, cardSlideContainer, cardHit]; + this._levelSelectSwitchLevel = switchLevel; + this._levelSelectDotObjs = dotObjs; + this._levelSelectCardContent = cardContentObjs; + this._levelSelectBarObjs = barObjs; + } + _closeLevelSelect(silent = false) { + if (!this._levelSelectOverlay) return; + const destroy = () => { + const all = [ + ...(this._levelSelectStaticObjs || []), + ...(this._levelSelectDotObjs || []), + ...(this._levelSelectCardContent || []), + ...(this._levelSelectBarObjs || []), + ]; + for (const o of all) { if (o && o.destroy) { this.tweens.killTweensOf(o); o.destroy(); } } + this._levelSelectOverlay = null; + this._levelSelectStaticObjs = null; + this._levelSelectDotObjs = null; + this._levelSelectCardContent = null; + this._levelSelectBarObjs = null; + this._levelSelectSwitchLevel = null; + }; + if (silent) { destroy(); return; } + const sw = screenWidth; + const sh = screenHeight; + const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(200).setAlpha(0); + fadeOut.fillStyle(0x000000, 1); + fadeOut.fillRect(0, 0, sw, sh); + this.tweens.add({ + targets: fadeOut, alpha: 1, duration: 150, ease: "Linear", + onComplete: () => { + destroy(); + this.tweens.add({ targets: fadeOut, alpha: 0, duration: 150, ease: "Linear", onComplete: () => fadeOut.destroy() }); + } + }); + } + _buildHUD() { + this._attemptsLabel = this.add.bitmapText(0, 0, "bigFont", "Attempt 1", 65).setOrigin(0.5, 0.5).setVisible(false); + this._level.topContainer.add(this._attemptsLabel); + this._positionAttemptsLabel(); + this._checkpointBtnContainer = this.add.container(screenWidth / 2, screenHeight - 60) + .setScrollFactor(0) + .setDepth(30) + .setVisible(false); + this._checkpointBtn = this.add.image(-50, 0, "GJ_GameSheet03", "GJ_checkpointBtn_001.png") + .setOrigin(0.5, 0.5) + .setInteractive() + .setScale(0.8); + this._makeBouncyButton(this._checkpointBtn, 0.8, () => { + if (this._practicedMode.practiceMode && !this._state.isDead && !this._menuActive && !this._slideIn) { + this._practicedMode.saveCheckpoint(this._state, this._playerWorldX, this._cameraX, this); + } + }); + this._expandHitArea(this._checkpointBtn, 2); + this._clearCheckpointBtn = this.add.image(50, 0, "GJ_GameSheet03", "GJ_removeCheckBtn_001.png") + .setOrigin(0.5, 0.5) + .setInteractive() + .setScale(0.8); + this._makeBouncyButton(this._clearCheckpointBtn, 0.8, () => { + if (this._practicedMode.practiceMode && !this._state.isDead && !this._menuActive && !this._slideIn) { + this._practicedMode.deleteLastCheckpoint(); + } + }); + this._expandHitArea(this._clearCheckpointBtn, 1.5); + this._checkpointBtnContainer.add([this._checkpointBtn, this._clearCheckpointBtn]); + this._fpsText = this.add.text(screenWidth - 20, 10, "", { + fontSize: "28px", + fill: "#ffffff", + fontFamily: "Arial" + }).setOrigin(1, 0).setScrollFactor(0).setDepth(999).setVisible(false); + this._fpsAccum = 0; + this._fpsFrames = 0; + } + _createStartPosGui() { + const centerX = screenWidth / 2; + const bottomY = screenHeight - 60; + + this._startPosGui = this.add.container(centerX, bottomY).setScrollFactor(0).setDepth(100); + this._startPosGui.setVisible(false); + + const leftArrow = this.add.image(-90, 0, "GJ_GameSheet03", "GJ_arrow_01_001.png") + .setScale(0.6) + .setInteractive(); + + const rightArrow = this.add.image(90, 0, "GJ_GameSheet03", "GJ_arrow_01_001.png") + .setScale(0.6) + .setFlipX(true) + .setInteractive(); + + const positions = this._level.getStartPositions(); + const total = positions.length; + + this._startPosText = this.add.bitmapText(0, 0, "bigFont", `0/${total}`, 40).setOrigin(0.5); + + this._startPosGui.add([leftArrow, rightArrow, this._startPosText]); + + this._makeBouncyButton(leftArrow, 0.6, () => this.changeStartPos(-1)); + this._makeBouncyButton(rightArrow, 0.6, () => this.changeStartPos(1)); + } + changeStartPos(direction) { + if (this._paused || this._levelWon || this._menuActive || this._slideIn) return; + + const positions = this._level.getStartPositions(); + const totalPositions = positions.length; + + if (totalPositions === 0) return; + + this._startPosIndex += direction; + + if (this._startPosIndex < -1) { + this._startPosIndex = totalPositions - 1; + } else if (this._startPosIndex >= totalPositions) { + this._startPosIndex = -1; + } + + if (this._startPosText) { + const currentId = this._startPosIndex === -1 ? 0 : (this._startPosIndex + 1); + this._startPosText.setText(`${currentId}/${totalPositions}`); + } + + this._practicedMode.clearCheckpoints(); + this._restartLevel(); + } + toggleGlitter(_0x34c21a) { + if (_0x34c21a) { + this._glitterEmitter.start(); + } else { + this._glitterEmitter.stop(); + } + } + _setParticleTimeScale(timeScale) { + const updateTimeScale = object => { + if (object && object.type === "ParticleEmitter") { + object.timeScale = timeScale; + } + if (object && object.list) { + object.list.forEach(updateTimeScale); + } + }; + updateTimeScale(this._level.container); + updateTimeScale(this._level.topContainer); + if (this._glitterEmitter) { + this._glitterEmitter.timeScale = timeScale; + } + } + _pauseGame() { + if (!this._paused && !this._menuActive && !this._slideIn && !this._state.isDead && !this._levelWon) { + this._paused = true; + this._pauseBtn.setVisible(false); + this._audio.pauseMusic(); + this._setParticleTimeScale(0); + this._buildPauseOverlay(); + } + } + _resumeGame() { + if (this._paused) { + this._setParticleTimeScale(1); + this._paused = false; + this._pauseBtn.setVisible(true).setAlpha(75 / 255); + this._audio.resumeMusic(); + this._audio._ensureCorrectMusicMode(); + if (this._pauseContainer) { + this._pauseContainer.destroy(); + this._pauseContainer = null; + } + } + } + _createPauseToggleButton(_0x5376fd, _0x3b6200, _0x2b25c8, _0xe203c3, _0x268e2b, _0x2d04c4) { + const _0x4864cc = this.add.container(_0x3b6200, _0x2b25c8); + const pieceHeight = this.add.image(0, 0, "GJ_GameSheet03", _0x268e2b ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png").setScale(0.7).setInteractive(); + const _0x15c0df = this.add.bitmapText(25 + 10, 0, "bigFont", _0xe203c3, 32).setOrigin(0, 0.5); + _0x4864cc.add([pieceHeight, _0x15c0df]); + _0x5376fd.add(_0x4864cc); + const _0x232e51 = _0x1dce15 => { + pieceHeight.setTexture("GJ_GameSheet03", _0x1dce15 ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png"); + this._expandHitArea(pieceHeight, 2); + _0x2d04c4(_0x1dce15); + }; + this._expandHitArea(pieceHeight, 2); + this._makeBouncyButton(pieceHeight, 0.7, () => { + _0x232e51(pieceHeight.frame.name === "GJ_checkOff_001.png"); + }, () => this._paused && !!this._pauseContainer); + _0x15c0df.setInteractive(); + _0x15c0df.on("pointerdown", () => { + if (this._paused && this._pauseContainer) { + _0x232e51(pieceHeight.frame.name === "GJ_checkOff_001.png"); + } + }); + return _0x4864cc; + } +_buildPauseOverlay() { + const textureY = screenWidth / 2; + const _0xf70e04 = 320; + const _0x4eb71b = screenWidth - 40; + this._pauseContainer = this.add.container(0, 0).setScrollFactor(0).setDepth(100); + + const _0x505665 = this.add.rectangle(textureY, _0xf70e04, screenWidth, screenHeight, 0, 75 / 255); + _0x505665.setInteractive(); + this._pauseContainer.add(_0x505665); + + const _0x103191 = this.textures.get("square04_001").source[0].width * 0.325; + const _0x954813 = this._drawScale9(textureY, _0xf70e04, _0x4eb71b, 600, "square04_001", _0x103191, 0, 150 / 255); + this._pauseContainer.add(_0x954813); + + const _0x3874ed = this.scale.isFullscreen; + const _0x426993 = this.add.image(textureY - _0x4eb71b / 2 + 40, 60, "GJ_WebSheet", _0x3874ed ? "toggleFullscreenOff_001.png" : "toggleFullscreenOn_001.png").setScale(0.64).setInteractive(); + this._expandHitArea(_0x426993, 2.5); + this._pauseContainer.add(_0x426993); + this._makeBouncyButton(_0x426993, 0.64, () => { + const _0x23c9e5 = !this.scale.isFullscreen; + _0x426993.setTexture("GJ_WebSheet", _0x23c9e5 ? "toggleFullscreenOff_001.png" : "toggleFullscreenOn_001.png"); + this._expandHitArea(_0x426993, 2.5); + this._toggleFullscreen(); + }); + + const settingsBtn = this.add.image(textureY + _0x4eb71b / 2 - 60, 80, 'GJ_GameSheet03', "GJ_optionsBtn_001.png").setAngle(90).setFlipY(true).setScale(0.64).setInteractive(); + this._expandHitArea(settingsBtn, 2.5); + this._pauseContainer.add(settingsBtn); + this._makeBouncyButton(settingsBtn, 0.64, () => this._buildSettingsPopup()); + + this._macroBtn = this.add.image(textureY + _0x4eb71b / 2 - 60, 150, "macroBot").setScale(0.4).setInteractive(); + this._pauseContainer.add(this._macroBtn); + this._makeBouncyButton(this._macroBtn, 0.4, () => this._buildMacroPopup()); + + this._pauseContainer.add(this.add.bitmapText(textureY, 65, "bigFont", window.currentlevel[1], 40).setOrigin(0.5, 0.5)); + + const _0x21dacf = 170; + const _0x46bab2 = this._bestPercent || 0; + const _0x38b8d1 = this.add.image(textureY, _0x21dacf, "GJ_WebSheet", "GJ_progressBar_001.png").setTint(0).setAlpha(125 / 255); + this._pauseContainer.add(_0x38b8d1); + const _0x1d49a9 = this.textures.getFrame("GJ_WebSheet", "GJ_progressBar_001.png"); + const _0xb5ab6f = _0x1d49a9 ? _0x1d49a9.width : 680; + const _0x1e6502 = _0x1d49a9 ? _0x1d49a9.height : 40; + const _0x3782ca = Math.max(1, Math.floor(_0xb5ab6f * (_0x46bab2 / 100))); + const _0x3d0987 = this.add.image(0, 0, "GJ_WebSheet", "GJ_progressBar_001.png").setTint(65280).setScale(0.992, 0.86).setOrigin(0, 0.5).setCrop(0, 0, _0x3782ca, _0x1e6502); + _0x3d0987.setPosition(textureY - _0xb5ab6f * 0.992 / 2, _0x21dacf); + this._pauseContainer.add(_0x3d0987); + this._pauseContainer.add(this.add.bitmapText(textureY, _0x21dacf, "bigFont", _0x46bab2 + "%", 30).setOrigin(0.5, 0.5).setScale(0.7)); + this._pauseContainer.add(this.add.bitmapText(textureY, 130, "bigFont", "Normal Mode", 30).setOrigin(0.5, 0.5).setScale(0.78)); + + const _pausePractPct = this._practiceBestPercent || 0; + const _pausePractBarY = 255; + const _pausePractBarImg = this.add.image(textureY, _pausePractBarY, "GJ_WebSheet", "GJ_progressBar_001.png").setTint(0).setAlpha(125 / 255); + this._pauseContainer.add(_pausePractBarImg); + const _pausePractFrame = this.textures.getFrame("GJ_WebSheet", "GJ_progressBar_001.png"); + const _pausePractBarW = _pausePractFrame ? _pausePractFrame.width : 680; + const _pausePractBarH = _pausePractFrame ? _pausePractFrame.height : 40; + const _pausePractFillW = Math.max(1, Math.floor(_pausePractBarW * (_pausePractPct / 100))); + const _pausePractFg = this.add.image(0, 0, "GJ_WebSheet", "GJ_progressBar_001.png").setTint(0x00FFFF).setScale(0.992, 0.86).setOrigin(0, 0.5).setCrop(0, 0, _pausePractFillW, _pausePractBarH); + _pausePractFg.setPosition(textureY - _pausePractBarW * 0.992 / 2, _pausePractBarY); + this._pauseContainer.add(_pausePractFg); + this._pauseContainer.add(this.add.bitmapText(textureY, _pausePractBarY, "bigFont", _pausePractPct + "%", 30).setOrigin(0.5, 0.5).setScale(0.7)); + this._pauseContainer.add(this.add.bitmapText(textureY, _pausePractBarY - 40, "bigFont", "Practice Mode", 30).setOrigin(0.5, 0.5).setScale(0.78)); + + const _0x4791ac = [ + { frame: this._practicedMode.practiceMode ? "GJ_normalBtn_001.png" : "GJ_practiceBtn_001.png", atlas: "GJ_GameSheet03", action: null }, + { frame: "GJ_playBtn2_001.png", atlas: "GJ_WebSheet", action: () => this._resumeGame() }, + { frame: "GJ_menuBtn_001.png", atlas: "GJ_WebSheet", action: () => { + this._audio.playEffect("quitSound_01"); + this._audio.stopMusic(); + this._resumeGame(); + this.scene.restart(); + }}, + { frame: "GJ_replayBtn_001.png", atlas: "GJ_WebSheet", action: () => { + this._resumeGame(); + this._restartLevel(); + }} + ]; + + const _0x25aa59 = _0x4791ac.map(btn => this.textures.getFrame(btn.atlas, btn.frame)?.width || 123); + let _0x599a9b = textureY - (_0x25aa59.reduce((a, b) => a + b, 0) + (_0x4791ac.length - 1) * 40) / 2; + + for (let i = 0; i < _0x4791ac.length; i++) { + const item = _0x4791ac[i]; + const width = _0x25aa59[i]; + const btn = this.add.image(_0x599a9b + width / 2, 390, item.atlas, item.frame).setInteractive(); + + if (item.action === null) { + this._pausePracticeBtn = btn; + btn.setAngle(90).setFlipY(true); + this._makeBouncyButton(btn, 1, () => { + const isPracticeMode = this._practicedMode.togglePracticeMode(); + btn.setTexture("GJ_GameSheet03", isPracticeMode ? "GJ_normalBtn_001.png" : "GJ_practiceBtn_001.png"); + btn.setAngle(90).setFlipY(true); + if (this._checkpointBtnContainer) this._checkpointBtnContainer.setVisible(isPracticeMode); + this._resumeGame(); + if (!isPracticeMode) { + this._practicedMode.clearCheckpoints(); + this._restartLevel(); + } + }); + } else { + this._makeBouncyButton(btn, 1, item.action); + } + this._pauseContainer.add(btn); + _0x599a9b += width + 40; + } + + const _0x1008ae = 530; + const _0x22b43a = 0.7; + const _0x41925a = this.textures.getFrame("GJ_WebSheet", "slidergroove.png"); + const _0x372782 = _0x41925a ? _0x41925a.width : 420; + + const createSlider = (posX, iconFrame, initialVal, setter) => { + this._pauseContainer.add(this.add.image(posX - 180 - 5, _0x1008ae, "GJ_WebSheet", iconFrame).setScale(1.2)); + const barMaxW = (_0x372782 - 8) * _0x22b43a; + const barStartX = posX - _0x372782 * _0x22b43a / 2 + 2.8; + const fillW = initialVal * barMaxW; + const fillBar = this.add.tileSprite(barStartX, _0x1008ae, fillW > 0 ? fillW : 1, 11.2, "sliderBar").setOrigin(0, 0.5); + this._pauseContainer.add(fillBar); + this._pauseContainer.add(this.add.image(posX, _0x1008ae, "GJ_WebSheet", "slidergroove.png").setScale(_0x22b43a)); + + const thumb = this.add.image(barStartX + fillW, _0x1008ae, "GJ_WebSheet", "sliderthumb.png").setScale(_0x22b43a).setInteractive({ draggable: true }); + this._pauseContainer.add(thumb); + thumb.on("drag", (p, dragX) => { + thumb.x = Math.max(barStartX, Math.min(barStartX + barMaxW, dragX)); + const pct = (thumb.x - barStartX) / barMaxW; + fillBar.width = Math.max(1, pct * barMaxW); + setter(pct < 0.03 ? 0 : pct); + }); + }; + + createSlider(textureY - 200, "gj_songIcon_001.png", this._audio.getUserMusicVolume(), v => this._audio.setUserMusicVolume(v)); + createSlider(textureY + 200, "GJ_sfxIcon_001.png", this._sfxVolume, v => { + this._sfxVolume = v; + localStorage.setItem("userSfxVol", v); + }); + } +_buildSettingsPopup() { + if (this._settingsPopup) return; + + const centerX = screenWidth / 2, + centerY = 320, + panelWidth = 800, + panelHeight = 550; + + this._settingsPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(250); + + const dim = this.add.rectangle(centerX, centerY, screenWidth, screenHeight, 0, 150 / 255).setInteractive(); + this._settingsPopup.add(dim); + + const innerContainer = this.add.container(centerX, centerY).setScale(0); + this._settingsPopup.add(innerContainer); + + const corner = 0.325 * this.textures.get("GJ_square01").source[0].width; + const panel = this._drawScale9(0, 0, panelWidth, panelHeight, 'GJ_square01', corner, 16777215, 1); + innerContainer.add(panel); + + const closeBtn = this.add.image(-(panelWidth / 2) + 10, -(panelHeight / 2) + 10, 'GJ_WebSheet', "GJ_closeBtn_001.png").setScale(0.8).setInteractive(); + innerContainer.add(closeBtn); + this._makeBouncyButton(closeBtn, 0.8, () => { + this._settingsPopup.destroy(); + this._settingsPopup = null; + }); + + const pages = ["Gameplay", "Visual"]; + let currentPage = 0; + const pageTitle = this.add.bitmapText(0, -(panelHeight / 2) + 45, "bigFont", pages[currentPage], 40).setOrigin(0.5); + innerContainer.add(pageTitle); + const leftArrow = this.add.image(-(panelWidth / 2) - 130, 0, "GJ_GameSheet03", "GJ_arrow_01_001.png") + .setFlipX(false).setInteractive(); + innerContainer.add(leftArrow); + const rightArrow = this.add.image((panelWidth / 2) + 130, 0, "GJ_GameSheet03", "GJ_arrow_01_001.png") + .setInteractive().setFlipX(true); + innerContainer.add(rightArrow); + const column1X = -200; + const column2X = 200; + const checkOffset = -120; + const textOffset = -70; + const spacingY = 70; + const startY = -150; + let pageContainer = this.add.container(0, 0); + innerContainer.add(pageContainer); + + const createToggle = (container, x, y, label, getVal, setVal, callback = null, fontSize = 25) => { + const getTex = () => getVal() ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png"; + const check = this.add.image(x + checkOffset, y, "GJ_GameSheet03", getTex()).setScale(0.8).setInteractive(); + const txt = this.add.bitmapText(x + textOffset, y, "bigFont", label, fontSize).setOrigin(0, 0.5); + container.add([check, txt]); + + this._makeBouncyButton(check, 0.8, () => { + setVal(!getVal()); + check.setTexture("GJ_GameSheet03", getTex()); + if (callback) callback(getVal()); + if (this._saveSettings) this._saveSettings(); + }); + }; + const createNumberInput = (container, x, y, label, getVal, setVal) => { + const txt = this.add.bitmapText(x + textOffset, y, "bigFont", label, 25).setOrigin(0, 0.5); + container.add(txt); + + const boxX = x + checkOffset; + const boxY = y; + const boxW = 64; + const boxH = 48; + + const bgBoxGraphics = this.add.graphics(); + bgBoxGraphics.fillStyle(0x222222, 0.5); + bgBoxGraphics.fillRoundedRect(boxX - boxW / 2, boxY - boxH / 2, boxW, boxH, 8); + container.add(bgBoxGraphics); + + const hitArea = this.add.rectangle(boxX, boxY, boxW, boxH, 0x000000, 0) + .setOrigin(0.5) + .setInteractive({ useHandCursor: true }); + container.add(hitArea); + + let initialVal = getVal() || 1; + const valueTxt = this.add.bitmapText(boxX, boxY, "bigFont", initialVal.toString(), 28) + .setOrigin(0.5); + container.add(valueTxt); + + let isFocused = false; + let internalString = initialVal.toString(); + + const updateDisplay = () => { + if (isFocused) { + valueTxt.setText(internalString + "|"); + } else { + valueTxt.setText(internalString || " "); + } + }; + + const commitValue = () => { + isFocused = false; + + let val = parseFloat(internalString); + if (isNaN(val)) val = 1; + + if (val < 0.1) val = 0.1; + if (val > 10) val = 10; + + internalString = val.toString(); + valueTxt.setText(internalString); + + setVal(val); + if (this._saveSettings) this._saveSettings(); + }; + + hitArea.on('pointerdown', (pointer, localX, localY, event) => { + if (event) event.stopPropagation(); + + if (window._activeCustomInput && window._activeCustomInput !== commitValue) { + window._activeCustomInput(); + } + + isFocused = true; + window._activeCustomInput = commitValue; + + internalString = ""; + updateDisplay(); + }); + + const outsideClickListener = () => { + if (isFocused) commitValue(); + }; + dim.on('pointerdown', outsideClickListener); + + const keydownListener = (event) => { + if (!isFocused) return; + + const key = event.key; + + if (key === "Enter") { + event.preventDefault(); + commitValue(); + return; + } + + if (key === "Backspace") { + event.preventDefault(); + internalString = internalString.slice(0, -1); + updateDisplay(); + return; + } + + if (/^[0-9.]$/.test(key)) { + event.preventDefault(); + + if (key === "." && internalString.includes(".")) return; + + const parts = internalString.split('.'); + + if (key === ".") { + if (parts[0].length === 0) return; + } else { + if (parts.length === 1 && parts[0].length >= 2) return; + if (parts.length === 2 && parts[1].length >= 2) return; + } + + internalString += key; + updateDisplay(); + } + }; + + window.addEventListener('keydown', keydownListener); + + const originalDestroy = container.destroy; + container.destroy = (...args) => { + window.removeEventListener('keydown', keydownListener); + if (dim) dim.off('pointerdown', outsideClickListener); + if (window._activeCustomInput === commitValue) { + window._activeCustomInput = null; + } + originalDestroy.apply(container, args); + }; + }; + + const buildGameplayPage = (container) => { + createToggle(container, column1X, startY, "Show Percentage", + () => window.showPercentage, + (v) => window.showPercentage = v, + (v) => { if (this._percentageLabel) this._percentageLabel.setVisible(v); } + ); + + createToggle(container, column1X, startY + spacingY, "Percentage Decimals", + () => window.percentageDecimals, + (v) => window.percentageDecimals = v + ); + + createToggle(container, column1X, startY + (spacingY * 2), "StartPos Switcher", + () => window.startPosSwitcher, + (v) => window.startPosSwitcher = v, + (v) => { + if (!v) this._startPosIndex = -1; + if (this._startPosGui) this._startPosGui.setVisible(v); + const total = this._level.getStartPositions().length; + if (this._startPosText) this._startPosText.setText(`0/${total}`); + } + ); + + createToggle(container, column1X, startY + (spacingY * 3), "Noclip", + () => window.noClip, + (v) => window.noClip = v, + (v) => { if (this._noclipIndicator) this._noclipIndicator.setVisible(v); } + ); + + createToggle(container, column1X, startY + (spacingY * 4), "Noclip Accuracy", + () => window.noClipAccuracy, + (v) => window.noClipAccuracy = v + ); + + createToggle(container, column1X, startY + (spacingY * 5), "Macro Bot", + () => window.macroBot, + (v) => window.macroBot = v + ); + + createNumberInput(container, column2X, startY, "Speedhack", + () => window.speedHack, + (v) => window.speedHack = v + ); + }; + + const buildVisualPage = (container) => { + createToggle(container, column1X, startY, "Show Hitboxes", + () => window.showHitboxes, + (v) => window.showHitboxes = v, + (v) => { + if (!v) { + this._player._hitboxGraphics.clear(); + } else { + this._player.drawHitboxes(this._player._hitboxGraphics, this._cameraX, this._cameraY); + } + } + ); + + createToggle(container, column1X, startY + (spacingY), "Hitbox Trail", + () => window.showHitboxTrail, + (v) => window.showHitboxTrail = v, + (v) => { if (window.showHitboxes) this._player.drawHitboxes(this._player._hitboxGraphics, this._cameraX, this._cameraY); } + ); + + createToggle(container, column1X, startY + (spacingY * 2), "Hitboxes on Death", + () => window.hitboxesOnDeath, + (v) => window.hitboxesOnDeath = v + ); + + createToggle(container, column1X, startY + (spacingY * 3), "Show FPS", + () => this._fpsText.visible, + (v) => this._fpsText.visible = v, + (v) => { if (this._fpsText) this._fpsText.setVisible(v); } + ); + + createToggle(container, column1X, startY + (spacingY * 4), "Solid Wave Trail", + () => window.solidWave, + (v) => window.solidWave = v + ); + + createToggle(container, column1X, startY + (spacingY * 5), "Show CPS", + () => window.showCPS, + (v) => window.showCPS = v + ); + + createToggle(container, column2X, startY, "Create Object ID labels", + () => window.createObjectIds, + (v) => window.createObjectIds = v, + null, 17 + ); + + createToggle(container, column2X, startY + (spacingY), "Show Object ID labels", + () => window.showObjectIds, + (v) => window.showObjectIds = v, + null, 17 + ); + }; + + const buildPage = (idx) => { + pageContainer.destroy(); + pageContainer = this.add.container(0, 0); + innerContainer.add(pageContainer); + pageTitle.setText(pages[idx]); + + if (idx === 0) buildGameplayPage(pageContainer); + else if (idx === 1) buildVisualPage(pageContainer); + }; + + buildPage(0); + + this._makeBouncyButton(leftArrow, 1, () => { + currentPage = (currentPage - 1 + pages.length) % pages.length; + buildPage(currentPage); + }); + + this._makeBouncyButton(rightArrow, 1, () => { + currentPage = (currentPage + 1) % pages.length; + buildPage(currentPage); + }); + this.tweens.add({ + targets: innerContainer, + scale: 1, + duration: 660, + ease: "Elastic.Out", + easeParams: [1, 0.6] + }); + } + _saveSettings() { + const settings = { + noclip: window.noClip, + showPercentage: window.showPercentage, + percentDecimals: window.percentageDecimals, + showHitboxes: window.showHitboxes, + startPosSwitcher: window.startPosSwitcher, + hitboxTrail: window.showHitboxTrail, + showFPS: this._fpsText.visible, + solidWaveTrail: window.solidWave, + noclipAccuracy: window.noClipAccuracy, + hitboxesOnDeath: window.hitboxesOnDeath, + showEditorGlow: window.showEditorGlow, + createObjectIds: window.createObjectIds, + showObjectIds: window.showObjectIds, + showCPS: window.showCPS, + speedHack: window.speedHack, + macroBot: window.macroBot, + showEditorGlow: window.showEditorGlow + }; + localStorage.setItem("gd_settings", JSON.stringify(settings)); + } + _loadSettings() { + const saved = localStorage.getItem("gd_settings"); + const defaults = { + noclip: false, + showPercentage: true, + percentDecimals: false, + showHitboxes: false, + startPosSwitcher: false, + hitboxTrail: false, + showFPS: false, + solidWaveTrail: false, + noclipAccuracy: false, + hitboxesOnDeath: false, + showEditorGlow: false, + createObjectIds: false, + showObjectIds: false, + showCPS: false, + speedHack: 1.0, + macroBot: false, + showEditorGlow: false + }; + + const data = saved ? JSON.parse(saved) : defaults; + + window.noClip = data.noclip; + window.showPercentage = data.showPercentage; + window.percentageDecimals = data.percentDecimals; + window.showHitboxes = data.showHitboxes; + window.startPosSwitcher = data.startPosSwitcher; + window.showHitboxTrail = data.hitboxTrail; + this._fpsText.visible = data.showFPS; + window.solidWave = data.solidWaveTrail; + window.noClipAccuracy = data.noclipAccuracy; + window.hitboxesOnDeath = data.hitboxesOnDeath; + window.showCPS = data.showCPS; + window.speedHack = data.speedHack; + window.macroBot = data.macroBot; + window.showEditorGlow = data.showEditorGlow; + window.createObjectIds = data.createObjectIds; + window.showObjectIds = data.showObjectIds; + } + _buildMacroPopup() { + if (this._macroPopup) return; + const centerX = screenWidth / 2; + const centerY = 320; + const panelWidth = 800; + const panelHeight = 400; + this._macroPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(250); + const dim = this.add.rectangle(centerX, centerY, screenWidth, screenHeight, 0x000000, 150 / 255).setInteractive(); + this._macroPopup.add(dim); + + const corner = 0.325 * this.textures.get("GJ_square02").source[0].width; + const panel = this._drawScale9(centerX, centerY, panelWidth, panelHeight, "GJ_square02", corner, 0xffffff, 1); + this._macroPopup.add(panel); + + this._macroPopup.add(this.add.bitmapText(centerX, centerY - (panelHeight / 2) + 45, "bigFont", "Web Bot v1.0", 40).setOrigin(0.5)); + + if (this._macroName === undefined) { + this._macroName = this._macroBot?.meta?.name || null; + } + if (this._macroLoaded === undefined) { + this._macroLoaded = !!this._macroName || (this._macroBot && this._macroBot.inputs && this._macroBot.inputs.length > 0); + } + + const loadedNameText = this.add.bitmapText(centerX, centerY - (panelHeight / 2) + 95, "goldFont", this._macroLoaded ? `Currently loaded "${this._macroName || 'macro'}"` : "No macro loaded", 24).setOrigin(0.5); + this._macroPopup.add(loadedNameText); + + const optionsBtn = this.add.image(centerX, centerY - (panelHeight / 2) + 95, "GJ_GameSheet03", "GJ_optionsBtn02_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(0.45); + this._macroPopup.add(optionsBtn); + + const closeBtn = this.add.image(centerX - (panelWidth / 2) + 20, centerY - (panelHeight / 2) + 20, "GJ_WebSheet", "GJ_closeBtn_001.png").setInteractive().setScale(0.8); + this._macroPopup.add(closeBtn); + + this._makeBouncyButton(closeBtn, 0.8, () => { + this.events.off("update", this._refreshMacroButtons); + this._macroPopup.destroy(); + this._macroPopup = null; + }); + + const importBtn = this.add.image(centerX - 300, centerY + 20,"importMacro").setInteractive(); + const exportBtn = this.add.image(centerX - 150, centerY + 20, "GJ_GameSheet03", "GJ_shareBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(0.53); + const createBtn = this.add.image(centerX, centerY + 20, "GJ_GameSheet03", "GJ_plusBtn_001.png").setInteractive().setFlipY(true).setAngle(90).setScale(1.2); + const playbackBtn = this.add.image(centerX + 150, centerY + 20, this._macroBot?.playing ? "stopPlayback" : "playbackMacro").setInteractive().setScale(0.25); + const recordBtn = this.add.image(centerX + 300, centerY + 20, this._macroBot?.recording ? "stopRecord" : "recordMacro").setInteractive().setScale(0.25); + + this._macroPopup.add([createBtn, importBtn, exportBtn, playbackBtn, recordBtn]); + + this._refreshMacroButtons = () => { + const playing = !!this._macroBot?.playing; + const recording = !!this._macroBot?.recording; + + let currentMetaName = this._macroBot?.meta?.name; + if (currentMetaName && currentMetaName !== this._macroName) { + this._macroName = currentMetaName; + this._macroLoaded = true; + } + + if (this._macroLoaded) { + loadedNameText.setText(`Currently loaded "${this._macroName || 'macro'}"`); + optionsBtn.setAlpha(1).setActive(true); + optionsBtn.x = centerX + (loadedNameText.width / 2) + 25; + } else { + loadedNameText.setText("No macro loaded"); + optionsBtn.setAlpha(0).setActive(false); + } + + playbackBtn.setTexture( + playing + ? "stopPlayback" + : "playbackMacro" + ); + + recordBtn.setTexture( + recording + ? "stopRecord" + : "recordMacro" + ); + + createBtn.setAlpha((playing || recording || this._macroLoaded) ? 0.5 : 1); + importBtn.setAlpha((playing || recording) ? 0.5 : 1); + exportBtn.setAlpha((playing || recording || !this._macroLoaded) ? 0.5 : 1); + playbackBtn.setAlpha((recording || !this._macroLoaded) ? 0.5 : 1); + recordBtn.setAlpha((playing || !this._macroLoaded) ? 0.5 : 1); + }; + + this._refreshMacroButtons(); + + this._makeBouncyButton(optionsBtn, 0.45, () => { + if (!this._macroLoaded) return; + const renamePrompt = prompt("New name", this._macroName); + if (renamePrompt && renamePrompt.trim() !== "") { + const cleanName = renamePrompt.trim(); + if (!this._macroBot) this._initMacroBot(); + + if (!this._macroBot.meta) { + this._macroBot.meta = {}; + } + this._macroBot.meta.name = cleanName; + this._macroName = cleanName; + this._refreshMacroButtons(); + } + }); + + this._makeBouncyButton(importBtn, 1, () => { + if (this._macroBot?.playing) return; + if (this._macroBot?.recording) return; + this._importMacroFile(); + }); + + this._makeBouncyButton(exportBtn, 0.53, () => { + if (this._macroBot?.playing) return; + if (this._macroBot?.recording) return; + if (!this._macroLoaded) return; + this._exportMacroFile(this._macroName ? `${this._macroName}.wbgdr` : null); + }); + + this._makeBouncyButton(createBtn, 1.2, () => { + if (this._macroBot?.playing || this._macroBot?.recording || this._macroLoaded) return; + const name = prompt("Enter macro name"); + if (name) { + if (!this._macroBot) this._initMacroBot(); + this._macroBot.resetAll(); + this._macroBot.meta.name = name; + this._macroName = name; + this._macroLoaded = true; + this._refreshMacroButtons(); + } + }); + + this._makeBouncyButton(playbackBtn, 0.25, () => { + if (this._macroBot?.recording) return; + if (!this._macroLoaded) return; + + if (this._macroBot?.playing) { + this._stopMacroPlayback(); + } else { + if (!this._macroBot) { + return; + } + const macro = this._macroBot.exportObject(); + this._startMacroPlayback(macro); + } + this._refreshMacroButtons(); + }); + + this._makeBouncyButton(recordBtn, 0.25, () => { + if (this._macroBot?.playing) return; + if (!this._macroLoaded) return; + + if (this._macroBot?.recording) { + this._stopMacroRecording(); + } else { + this._startMacroRecording({ + level: window.currentlevel?.[2] || "", + name: this._macroName + }); + } + + this._refreshMacroButtons(); + }); + + this.events.on("update", this._refreshMacroButtons); + } + _buildInfoPopup() { + if (this._infoPopup) { + return; + } + const xPos = screenWidth / 2; + const popupHeight = 320; + const popupWidth = 336; + this._infoPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); + const background = this.add.rectangle(xPos, popupHeight, screenWidth, screenHeight, 0, 100 / 255); + background.setInteractive(); + this._infoPopup.add(background); + + const bounceContainer = this.add.container(xPos, popupHeight).setScale(0); + this._infoPopup.add(bounceContainer); + const cornerRadius = this.textures.get("GJ_square02").source[0].width * 0.325; + const popupBg = this._drawScale9(0, 0, 480, popupWidth, "GJ_square02", cornerRadius, 16777215, 1); + bounceContainer.add(popupBg); + const closeBtn = this.add.image(-240 + 20, -148, "GJ_WebSheet", "GJ_closeBtn_001.png").setScale(0.8).setInteractive(); + bounceContainer.add(closeBtn); + this._expandHitArea(closeBtn, 2); + this._makeBouncyButton(closeBtn, 0.8, () => this._closeInfoPopup()); + const title = this.add.bitmapText(0, -124, "bigFont", "Credits", 30).setOrigin(0.5, 0.5); + bounceContainer.add(title); + const scrollAreaW = 420; + const scrollAreaH = 230; + const scrollAreaX = 0; + const scrollAreaY = 20; + const scrollFrameBg = this.add.graphics(); + scrollFrameBg.fillStyle(0x000000, 0.18); + scrollFrameBg.fillRoundedRect(scrollAreaX - scrollAreaW / 2, scrollAreaY - scrollAreaH / 2, scrollAreaW, scrollAreaH, 8); + bounceContainer.add(scrollFrameBg); + const contentContainer = this.add.container(0, scrollAreaY - scrollAreaH / 2 + 8); + bounceContainer.add(contentContainer); + + const creditsEntries = [ + { text: "Made by RobTop Games", scale: 0.8, font: "goldFont" }, + { text: "Modded by:", scale: 0.9, font: "bigFont" }, + { text: "breadbb, PinkDev, rohanis0000,", scale: 0.7, font: "goldFont" }, + { text: "bog, AntiMatter, arbstro, aloaf", scale: 0.7, font: "goldFont" }, + { text: "Contributors:", scale: 0.9, font: "bigFont" }, + { text: "t0nchi7 and Lasokar.", scale: 0.7, font: "goldFont" }, + { text: "© 2026 RobTop Games. All rights reserved.", scale: 0.4, font: "Arial", color: 0x000000 }, + ]; + let yPos = 0; + const lineItems = []; + creditsEntries.forEach(entry => { + let txt; + if (entry.font === "Arial") { + txt = this.add.text(0, yPos, entry.text, { + fontSize: `${Math.round(32 * (entry.scale || 0.65))}px`, + fontFamily: "Arial", + color: entry.color ? `#${entry.color.toString(16).padStart(6, '0')}` : "#ffffff" + }).setOrigin(0.5, 0); + } else { + txt = this.add.bitmapText(0, yPos, entry.font || "bigFont", entry.text, 32) + .setOrigin(0.5, 0) + .setScale(entry.scale || 0.65); + if (entry.color != null) txt.setTint(entry.color); + } + contentContainer.add(txt); + lineItems.push(txt); + yPos += Math.round(32 * (entry.scale || 0.65)) + 10; + }); + const totalContentH = yPos; + const maxScrollDown = Math.max(0, totalContentH - scrollAreaH + 16); + const maskGraphics = this.add.graphics(); + const maskShape = this.add.graphics(); + maskShape.fillStyle(0xffffff, 1); + const updateMask = () => { + if (!bounceContainer || !bounceContainer.active) return; + const wx = xPos + bounceContainer.x - xPos; + const s = bounceContainer.scaleX; + const bwx = xPos; + const bwy = popupHeight; + maskShape.clear(); + maskShape.fillStyle(0xffffff, 1); + maskShape.fillRect( + bwx + (scrollAreaX - scrollAreaW / 2) * s, + bwy + (scrollAreaY - scrollAreaH / 2) * s, + scrollAreaW * s, + scrollAreaH * s + ); + }; + const geomMask = maskShape.createGeometryMask(); + contentContainer.setMask(geomMask); + const maskUpdateEvent = this.events.on('postupdate', updateMask); + let scrollY = 0; + const baseContentY = scrollAreaY - scrollAreaH / 2 + 8; + const applyScroll = () => { + contentContainer.y = baseContentY - scrollY; + }; + applyScroll(); + const scrollZone = this.add.zone(scrollAreaX, scrollAreaY, scrollAreaW, scrollAreaH).setInteractive(); + bounceContainer.add(scrollZone); + scrollZone.on('wheel', (_p, _dx, deltaY) => { + scrollY = Phaser.Math.Clamp(scrollY + deltaY * 0.6, 0, maxScrollDown); + applyScroll(); + }); + + let dragStartY = 0; + let dragStartScroll = 0; + scrollZone.on('pointerdown', (pointer) => { + dragStartY = pointer.y; + dragStartScroll = scrollY; + }); + scrollZone.on('pointermove', (pointer) => { + if (pointer.isDown) { + const dy = dragStartY - pointer.y; + scrollY = Phaser.Math.Clamp(dragStartScroll + dy, 0, maxScrollDown); + applyScroll(); + } + }); + this._infoPopupCleanup = () => { + this.events.off('postupdate', updateMask); + maskShape.destroy(); + geomMask.destroy(); + }; + this.tweens.add({ + targets: bounceContainer, + scale: { from: 0, to: 1 }, + duration: 660, + ease: "Elastic.Out", + easeParams: [1, 0.6] + }); + } + _closeInfoPopup() { + if (this._infoPopup) { + if (this._infoPopupCleanup) { + this._infoPopupCleanup(); + this._infoPopupCleanup = null; + } + this._infoPopup.destroy(); + this._infoPopup = null; + } + } + _buildHowToPlayPopup() { + if (this._howToPlayPopup) { + return; + } + const TUTORIAL_PAGES = ["tutorial_01", "tutorial_02", "tutorial_03", "tutorial_04", "tutorial_05"]; + const GREEN = 0x00e719; + const YELLOW = 0xf8ff00; + const BLUE = 0x3cadf5; + const TUTORIAL_DESCRIPTIONS = [ + { fontSize: 40, lines: [ + [{ text: "TAP", color: GREEN }, { text: " the screen to jump." }], + [{ text: "HOLD", color: GREEN }, { text: " down to keep jumping." }] + ]}, + { fontSize: 40, lines: [ + [{ text: "Hold", color: GREEN }, { text: " to fly up." }], + [{ text: "Release", color: GREEN }, { text: " to fly down." }] + ]}, + { fontSize: 35, lines: [ + [{ text: "You can enter " }, { text: "practice mode", color: BLUE }, { text: " from" }], + [{ text: "the pause menu." }], + [{ text: "Practice mode lets you place" }], + [{ text: "checkpoints", color: GREEN }, { text: "." }] + ]}, + { fontSize: 35, lines: [ + [{ text: "You can place checkpoints manually, or" }], + [{ text: "use the auto-checkpoints feature." }], + [{ text: "Tap the delete button to remove your" }], + [{ text: "last checkpoint." }] + ]}, + { fontSize: 35, lines: [ + [{ text: "Jump Orbs", color: YELLOW }, { text: " activate when you are on" }], + [{ text: "top of them." }], + [{ text: "TAP", color: GREEN }, { text: " while touching an orb to" }], + [{ text: "interact with it and use its effect." }] + ]} + ]; + const TOTAL_PAGES = TUTORIAL_PAGES.length; + let currentPage = 0; + + const xPos = screenWidth / 2; + const _0x4c3182 = 320; + this._howToPlayPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(300); + const _0x249eb7 = this.add.rectangle(xPos, _0x4c3182, screenWidth, screenHeight, 0, 100 / 255); + _0x249eb7.setInteractive(); + this._howToPlayPopup.add(_0x249eb7); + const _0x14e46f = this.textures.get("GJ_square01").source[0].width * 0.325; + const panelContainer = this.add.container(xPos, _0x4c3182); + this._howToPlayPopup.add(panelContainer); + const _0x2c64c2 = this._drawScale9(0, 0, 830, 530, "GJ_square01", _0x14e46f, 16777215, 1); + panelContainer.add(_0x2c64c2); + const _0x5a0f88 = this.add.image(-240 - 160, 172 - _0x4c3182 - 110, "GJ_WebSheet", "GJ_closeBtn_001.png").setScale(0.8).setInteractive(); + this._expandHitArea(_0x5a0f88, 2); + this._makeBouncyButton(_0x5a0f88, 0.8, () => this._closeHowToPlayPopup()); + panelContainer.add(_0x5a0f88); + const howToPlayTitle = this.add.bitmapText(0, -210, "bigFont", "How To Play", 62).setOrigin(0.5, 0.5); + panelContainer.add(howToPlayTitle); + const DESC_TOP_Y = -195; + const DESC_BOT_Y = 15; + const DESC_MAX_H = DESC_BOT_Y - DESC_TOP_Y; + + let descLineObjects = []; + + const _buildDescLines = (pageIndex) => { + for (const obj of descLineObjects) obj.destroy(); + descLineObjects = []; + + const page = TUTORIAL_DESCRIPTIONS[pageIndex]; + if (!page || !page.lines.length) return; + + const fontSize = page.fontSize; + const lineSpacing = 0.35; + const lineH = fontSize * (1 + lineSpacing); + const startY = DESC_TOP_Y + fontSize / 0.5; + + for (let i = 0; i < page.lines.length; i++) { + const segments = page.lines[i]; + const lineY = startY + i * lineH; + if (segments.length === 1 && !segments[0].color) { + const obj = this.add.bitmapText(0, lineY, "bigFont", segments[0].text, fontSize) + .setOrigin(0.5, 0.5); + panelContainer.add(obj); + descLineObjects.push(obj); + continue; + } + const measured = segments.map(seg => { + const tmp = this.add.bitmapText(0, -9999, "bigFont", seg.text, fontSize); + const w = tmp.width; + tmp.destroy(); + return w; + }); + const totalW = measured.reduce((a, b) => a + b, 0); + let curX = -totalW / 2; + + for (let s = 0; s < segments.length; s++) { + const seg = segments[s]; + const obj = this.add.bitmapText(curX, lineY, "bigFont", seg.text, fontSize) + .setOrigin(0, 0.5); + if (seg.color) obj.setTint(seg.color); + panelContainer.add(obj); + descLineObjects.push(obj); + curX += measured[s]; + } + } + }; + + _buildDescLines(0); + const tutorialImage = this.add.image(-240 + 150, 155, TUTORIAL_PAGES[0]); + panelContainer.add(tutorialImage); + const nextGroup = this.add.container(-240 + 550, 165); + const nextBtnW = 125, nextBtnH = 80; + const nextBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; + const nextBtn9 = this._drawScale9(0, 0, nextBtnW, nextBtnH, "GJ_button01", nextBtnBorder, 0xffffff, 1); + const nextBtn = this.add.rectangle(0, 0, nextBtnW, nextBtnH).setInteractive(); + const nextLabel = this.add.bitmapText(-5, -2.5, "bigFont", "Next", 35).setOrigin(0.5, 0.5); + nextGroup.add(nextBtn9); + nextGroup.add(nextBtn); + nextGroup.add(nextLabel); + panelContainer.add(nextGroup); + + nextBtn.on("pointerdown", () => { + nextGroup._pressed = true; + this.tweens.killTweensOf(nextGroup); + this.tweens.add({ targets: nextGroup, scaleX: 1.26, scaleY: 1.26, duration: 300, ease: "Bounce.Out" }); + }); + nextBtn.on("pointerout", () => { + if (nextGroup._pressed) { + nextGroup._pressed = false; + this.tweens.killTweensOf(nextGroup); + this.tweens.add({ targets: nextGroup, scaleX: 1, scaleY: 1, duration: 400, ease: "Bounce.Out" }); + } + }); + nextBtn.on("pointerup", () => { + if (!nextGroup._pressed) return; + nextGroup._pressed = false; + this.tweens.killTweensOf(nextGroup); + nextGroup.setScale(1); + + if (currentPage >= TOTAL_PAGES - 1) { + this._closeHowToPlayPopup(); + } else { + currentPage++; + tutorialImage.setTexture(TUTORIAL_PAGES[currentPage]); + _buildDescLines(currentPage); + nextLabel.setText(currentPage >= TOTAL_PAGES - 1 ? "Exit" : "Next"); + } + }); + panelContainer.setScale(0); + this.tweens.add({ + targets: panelContainer, + scale: 1, + duration: 660, + ease: "Elastic.Out", + easeParams: [1, 0.6] + }); +} + _closeHowToPlayPopup() { + if (this._howToPlayPopup) { + this._howToPlayPopup.destroy(); + this._howToPlayPopup = null; + } + } + _buildUpdateLogPopup() { + if (this._updateLogPopup || window.levelID) { + return; + } + const xPos = screenWidth / 2; + const popupHeight = 320; + const popupWidth = 336; + this._updateLogPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); + const background = this.add.rectangle(xPos, popupHeight, screenWidth, screenHeight, 0, 100 / 255); + background.setInteractive(); + this._updateLogPopup.add(background); + + const bounceContainer = this.add.container(xPos, popupHeight).setScale(0); + this._updateLogPopup.add(bounceContainer); + const cornerRadius = this.textures.get("GJ_square02").source[0].width * 0.325; + const popupBg = this._drawScale9(0, 0, 480, popupWidth, "GJ_square02", cornerRadius, 16777215, 1); + bounceContainer.add(popupBg); + const closeBtn = this.add.image(-240 + 20, -148, "GJ_WebSheet", "GJ_closeBtn_001.png").setScale(0.8).setInteractive(); + bounceContainer.add(closeBtn); + this._expandHitArea(closeBtn, 2); + this._makeBouncyButton(closeBtn, 0.8, () => this._closeUpdateLogPopup()); + const title = this.add.bitmapText(0, -124, "bigFont", "BETA (EXPECT BUGS)", 30).setOrigin(0.5, 0.5).setTint(0xff6666); + bounceContainer.add(title); + const scrollAreaW = 420; + const scrollAreaH = 230; + const scrollAreaX = 0; + const scrollAreaY = 20; + const scrollFrameBg = this.add.graphics(); + scrollFrameBg.fillStyle(0x000000, 0.18); + scrollFrameBg.fillRoundedRect(scrollAreaX - scrollAreaW / 2, scrollAreaY - scrollAreaH / 2, scrollAreaW, scrollAreaH, 8); + bounceContainer.add(scrollFrameBg); + const contentContainer = this.add.container(0, scrollAreaY - scrollAreaH / 2 + 8); + bounceContainer.add(contentContainer); + /* colors for reference + 0xff6666 + 0xff9944 + 0xaaddff - fun messages from me :) + 0xff00ff - pink dev entries + */ + const updateEntries = [ + { text: "Update Log", scale: 0.85, font: "goldFont" }, + { text: "Accurate GDWeb+ logo", scale: 0.65 }, + { text: "Credit to Altruist for making it", scale: 0.6 }, + { text: "is this update finally out?", scale: 0.65, color: 0xaaddff }, + { text: "- rohanis0000", scale: 0.65, color: 0xaaddff }, + ]; + let yPos = 0; + const lineItems = []; + updateEntries.forEach(entry => { + const txt = this.add.bitmapText(0, yPos, entry.font || "bigFont", entry.text, 32) + .setOrigin(0.5, 0) + .setScale(entry.scale || 0.65); + if (entry.color != null) txt.setTint(entry.color); + contentContainer.add(txt); + lineItems.push(txt); + yPos += Math.round(32 * (entry.scale || 0.65)) + 10; + }); + const totalContentH = yPos; + const maxScrollDown = Math.max(0, totalContentH - scrollAreaH + 16); + const maskGraphics = this.add.graphics(); + const maskShape = this.add.graphics(); + maskShape.fillStyle(0xffffff, 1); + const updateMask = () => { + if (!bounceContainer || !bounceContainer.active) return; + const wx = xPos + bounceContainer.x - xPos; + const s = bounceContainer.scaleX; + const bwx = xPos; + const bwy = popupHeight; + maskShape.clear(); + maskShape.fillStyle(0xffffff, 1); + maskShape.fillRect( + bwx + (scrollAreaX - scrollAreaW / 2) * s, + bwy + (scrollAreaY - scrollAreaH / 2) * s, + scrollAreaW * s, + scrollAreaH * s + ); + }; + const geomMask = maskShape.createGeometryMask(); + contentContainer.setMask(geomMask); + const maskUpdateEvent = this.events.on('postupdate', updateMask); + let scrollY = 0; + const baseContentY = scrollAreaY - scrollAreaH / 2 + 8; + const applyScroll = () => { + contentContainer.y = baseContentY - scrollY; + }; + applyScroll(); + const scrollZone = this.add.zone(scrollAreaX, scrollAreaY, scrollAreaW, scrollAreaH).setInteractive(); + bounceContainer.add(scrollZone); + scrollZone.on('wheel', (_p, _dx, deltaY) => { + scrollY = Phaser.Math.Clamp(scrollY + deltaY * 0.6, 0, maxScrollDown); + applyScroll(); + }); + + let dragStartY = 0; + let dragStartScroll = 0; + scrollZone.on('pointerdown', (pointer) => { + dragStartY = pointer.y; + dragStartScroll = scrollY; + }); + scrollZone.on('pointermove', (pointer) => { + if (pointer.isDown) { + const dy = dragStartY - pointer.y; + scrollY = Phaser.Math.Clamp(dragStartScroll + dy, 0, maxScrollDown); + applyScroll(); + } + }); + this._updateLogPopupCleanup = () => { + this.events.off('postupdate', updateMask); + maskShape.destroy(); + geomMask.destroy(); + }; + this.tweens.add({ + targets: bounceContainer, + scale: { from: 0, to: 1 }, + duration: 660, + ease: "Elastic.Out", + easeParams: [1, 0.6] + }); + } + _closeUpdateLogPopup() { + if (this._updateLogPopup) { + if (this._updateLogPopupCleanup) { + this._updateLogPopupCleanup(); + this._updateLogPopupCleanup = null; + } + this._updateLogPopup.destroy(); + this._updateLogPopup = null; + } + } + _buildNewgroundsPopup() { + if (this._newgroundsPopup || window.levelID) return; + const xPos = screenWidth / 2; + const centerY = screenHeight / 2; + this._newgroundsPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); + const background = this.add.rectangle(xPos, centerY, screenWidth, screenHeight, 0, 100 / 255); + background.setInteractive(); + this._newgroundsPopup.add(background); + const bounceContainer = this.add.container(xPos, centerY).setScale(0); + this._newgroundsPopup.add(bounceContainer); + const cornerRadius = this.textures.get("square01_001").source[0].width * 0.325; + const panelBg = this._drawScale9(0, 0, 460, 240, "square01_001", cornerRadius, 16777215, 1); + bounceContainer.add(panelBg); + const title = this.add.bitmapText(0, -76, "goldFont", "Newgrounds", 40).setOrigin(0.5, 0.5); + bounceContainer.add(title); + const body = this.add.text(0, -10, "Visit Newgrounds to find awesome\nmusic?", { + fontSize: "25px", + fontFamily: "Arial, sans-serif", + color: "#ffffff", + align: "center" + }).setOrigin(0.5, 0.5); + bounceContainer.add(body); + const cancelGroup = this.add.container(-70, 65); + const cancelBtnW = 165, cancelBtnH = 55; + const cancelBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; + const cancelBtn9 = this._drawScale9(0, 0, cancelBtnW, cancelBtnH, "GJ_button01", cancelBtnBorder, 0xffffff, 1); + const cancelBtn = this.add.rectangle(0, 0, cancelBtnW, cancelBtnH).setInteractive(); + cancelGroup.add(cancelBtn9); + cancelGroup.add(cancelBtn); + const cancelLabel = this.add.bitmapText(-2, -3, "goldFont", "Cancel", 38).setOrigin(0.5, 0.5); + cancelGroup.add(cancelLabel); + bounceContainer.add(cancelGroup); + cancelBtn.on("pointerdown", () => { cancelGroup._pressed = true; this.tweens.killTweensOf(cancelGroup); this.tweens.add({ targets: cancelGroup, scaleX: 1.26, scaleY: 1.26, duration: 300, ease: "Bounce.Out" }); }); + cancelBtn.on("pointerout", () => { if (cancelGroup._pressed) { cancelGroup._pressed = false; this.tweens.killTweensOf(cancelGroup); this.tweens.add({ targets: cancelGroup, scaleX: 1, scaleY: 1, duration: 400, ease: "Bounce.Out" }); } }); + cancelBtn.on("pointerup", () => { if (cancelGroup._pressed) { cancelGroup._pressed = false; this.tweens.killTweensOf(cancelGroup); cancelGroup.setScale(1); this._closeNewgroundsPopup(); } }); + const openGroup = this.add.container(90, 65); + const openBtnW = 125, openBtnH = 55; + const openBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; + const openBtn9 = this._drawScale9(0, 0, openBtnW, openBtnH, "GJ_button01", openBtnBorder, 0xffffff, 1); + const openBtn = this.add.rectangle(0, 0, openBtnW, openBtnH).setInteractive(); + openGroup.add(openBtn9); + openGroup.add(openBtn); + const openLabel = this.add.bitmapText(-2, -3, "goldFont", "Open", 39).setOrigin(0.5, 0.5); + openGroup.add(openLabel); + bounceContainer.add(openGroup); + openBtn.on("pointerdown", () => { openGroup._pressed = true; this.tweens.killTweensOf(openGroup); this.tweens.add({ targets: openGroup, scaleX: 1.26, scaleY: 1.26, duration: 300, ease: "Bounce.Out" }); }); + openBtn.on("pointerout", () => { if (openGroup._pressed) { openGroup._pressed = false; this.tweens.killTweensOf(openGroup); this.tweens.add({ targets: openGroup, scaleX: 1, scaleY: 1, duration: 400, ease: "Bounce.Out" }); } }); + openBtn.on("pointerup", () => { if (openGroup._pressed) { openGroup._pressed = false; this.tweens.killTweensOf(openGroup); openGroup.setScale(1); this._closeNewgroundsPopup(); window.open("https://www.newgrounds.com/audio", "_blank"); } }); + this.tweens.add({ + targets: bounceContainer, + scale: { from: 0, to: 1 }, + duration: 660, + ease: "Elastic.Out", + easeParams: [1, 0.6] + }); + } + _closeNewgroundsPopup() { + if (this._newgroundsPopup) { + this._newgroundsPopup.destroy(); + this._newgroundsPopup = null; + } + } + _buildFeaturedInfoPopup() { + if (this._featuredInfoPopup) return; + const xPos = screenWidth / 2; + const centerY = screenHeight / 2; + this._featuredInfoPopup = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); + const background = this.add.rectangle(xPos, centerY, screenWidth, screenHeight, 0, 100 / 255); + background.setInteractive(); + this._featuredInfoPopup.add(background); + const bounceContainer = this.add.container(xPos, centerY).setScale(0); + this._featuredInfoPopup.add(bounceContainer); + const cornerRadius = this.textures.get("square01_001").source[0].width * 0.325; + const panelBg = this._drawScale9(0, 0, 560, 300, "square01_001", cornerRadius, 16777215, 1); + bounceContainer.add(panelBg); + const title = this.add.bitmapText(0, -98, "goldFont", "Featured", 42).setOrigin(0.5, 0.5); + bounceContainer.add(title); + const body = this.add.text(0, -5, "This menu is being worked on currently and is\nbeing constantly tested for bugs and better\nquality. The reason it is here is to show a demo\nof what it would look like.", { + fontSize: "21px", + fontFamily: "Arial, sans-serif", + color: "#ffffff", + align: "center", + lineSpacing: 4 + }).setOrigin(0.5, 0.5); + bounceContainer.add(body); + const okGroup = this.add.container(-5, 95); + const okBtnW = 90, okBtnH = 55; + const okBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; + const okBtn9 = this._drawScale9(0, 0, okBtnW, okBtnH, "GJ_button01", okBtnBorder, 0xffffff, 1); + const okBtn = this.add.rectangle(0, 0, okBtnW, okBtnH).setInteractive(); + okGroup.add(okBtn9); + okGroup.add(okBtn); + const okLabel = this.add.bitmapText(-3, -4, "goldFont", "OK", 44).setOrigin(0.5, 0.5); + okGroup.add(okLabel); + bounceContainer.add(okGroup); + okBtn.on("pointerdown", () => { okGroup._pressed = true; this.tweens.killTweensOf(okGroup); this.tweens.add({ targets: okGroup, scaleX: 1.26, scaleY: 1.26, duration: 300, ease: "Bounce.Out" }); }); + okBtn.on("pointerout", () => { if (okGroup._pressed) { okGroup._pressed = false; this.tweens.killTweensOf(okGroup); this.tweens.add({ targets: okGroup, scaleX: 1, scaleY: 1, duration: 400, ease: "Bounce.Out" }); } }); + okBtn.on("pointerup", () => { if (okGroup._pressed) { okGroup._pressed = false; this.tweens.killTweensOf(okGroup); okGroup.setScale(1); this._closeFeaturedInfoPopup(); } }); + this.tweens.add({ + targets: bounceContainer, + scale: { from: 0, to: 1 }, + duration: 660, + ease: "Elastic.Out", + easeParams: [1, 0.6] + }); + } + _closeFeaturedInfoPopup() { + if (this._featuredInfoPopup) { + this._featuredInfoPopup.destroy(); + this._featuredInfoPopup = null; + } + } + _expandHitArea(_0x122213, _0x37180a) { + const _0x46ea45 = _0x122213.width; + const _0x43b461 = _0x122213.height; + const _0x960250 = _0x46ea45 * (_0x37180a - 1) / 2; + const _0x3f88a1 = _0x43b461 * (_0x37180a - 1) / 2; + _0x122213.input.hitArea.setTo(-_0x960250, -_0x3f88a1, _0x46ea45 + _0x960250 * 2, _0x43b461 + _0x3f88a1 * 2); + } + _makeBouncyButton(textureX, _0x57b645, _0x2f13d0, _0xda0c21) { + const _0x396ca0 = _0x57b645 * 1.26; + textureX.on("pointerdown", () => { + if (!_0xda0c21 || !!_0xda0c21()) { + textureX._pressed = true; + this.tweens.killTweensOf(textureX, "scale"); + this.tweens.add({ + targets: textureX, + scale: _0x396ca0, + duration: 300, + ease: "Bounce.Out" + }); + } + }); + textureX.on("pointerout", (pointer) => { + if (textureX._pressed) { + textureX._pressed = false; + this.tweens.killTweensOf(textureX, "scale"); + this.tweens.add({ + targets: textureX, + scale: _0x57b645, + duration: 400, + ease: "Bounce.Out" + }); + } + }); + textureX.on("pointerup", () => { + if (textureX._pressed) { + textureX._pressed = false; + this.tweens.killTweensOf(textureX); + textureX.setScale(_0x57b645); + _0x2f13d0(); + } + }); + return textureX; + } + _toggleFullscreen() { + if (this.scale.isFullscreen) { + this.scale.stopFullscreen(); + } else { + this.scale.startFullscreen(); + try { + screen.orientation.lock("landscape").catch(() => {}); + } catch (_0x22124f) {} + } + } + _drawScale9(_0x147730, _0x4c8cbf, scaleWidth, scaleHeight, _0x24a44b, borderSize, _0x590eba, _0x206735) { + const _0x4080b2 = this.add.container(_0x147730, _0x4c8cbf); + const _0x2522df = this.textures.get(_0x24a44b); + const _0x401ec1 = _0x2522df.source[0]; + const _0x3f82ec = _0x401ec1.width; + const _0x294746 = _0x401ec1.height; + const _0x2b09f1 = scaleWidth - borderSize * 2; + const _0x990515 = scaleHeight - borderSize * 2; + const _0x1d065e = [{ + sx: 0, + sy: 0, + sw: borderSize, + sh: borderSize, + dx: -scaleWidth / 2, + dy: -scaleHeight / 2, + dw: borderSize, + dh: borderSize + }, { + sx: borderSize, + sy: 0, + sw: _0x3f82ec - borderSize * 2, + sh: borderSize, + dx: -scaleWidth / 2 + borderSize, + dy: -scaleHeight / 2, + dw: _0x2b09f1, + dh: borderSize + }, { + sx: _0x3f82ec - borderSize, + sy: 0, + sw: borderSize, + sh: borderSize, + dx: scaleWidth / 2 - borderSize, + dy: -scaleHeight / 2, + dw: borderSize, + dh: borderSize + }, { + sx: 0, + sy: borderSize, + sw: borderSize, + sh: _0x294746 - borderSize * 2, + dx: -scaleWidth / 2, + dy: -scaleHeight / 2 + borderSize, + dw: borderSize, + dh: _0x990515 + }, { + sx: borderSize, + sy: borderSize, + sw: _0x3f82ec - borderSize * 2, + sh: _0x294746 - borderSize * 2, + dx: -scaleWidth / 2 + borderSize, + dy: -scaleHeight / 2 + borderSize, + dw: _0x2b09f1, + dh: _0x990515 + }, { + sx: _0x3f82ec - borderSize, + sy: borderSize, + sw: borderSize, + sh: _0x294746 - borderSize * 2, + dx: scaleWidth / 2 - borderSize, + dy: -scaleHeight / 2 + borderSize, + dw: borderSize, + dh: _0x990515 + }, { + sx: 0, + sy: _0x294746 - borderSize, + sw: borderSize, + sh: borderSize, + dx: -scaleWidth / 2, + dy: scaleHeight / 2 - borderSize, + dw: borderSize, + dh: borderSize + }, { + sx: borderSize, + sy: _0x294746 - borderSize, + sw: _0x3f82ec - borderSize * 2, + sh: borderSize, + dx: -scaleWidth / 2 + borderSize, + dy: scaleHeight / 2 - borderSize, + dw: _0x2b09f1, + dh: borderSize + }, { + sx: _0x3f82ec - borderSize, + sy: _0x294746 - borderSize, + sw: borderSize, + sh: borderSize, + dx: scaleWidth / 2 - borderSize, + dy: scaleHeight / 2 - borderSize, + dw: borderSize, + dh: borderSize + }]; + for (let _0x24f653 = 0; _0x24f653 < _0x1d065e.length; _0x24f653++) { + const scale9Piece = _0x1d065e[_0x24f653]; + const _0xade586 = "_s9_" + _0x24f653; + if (!_0x2522df.has(_0xade586)) { + _0x2522df.add(_0xade586, 0, scale9Piece.sx, scale9Piece.sy, scale9Piece.sw, scale9Piece.sh); + } + const _0x1145e5 = this.add.image(scale9Piece.dx, scale9Piece.dy, _0x24a44b, _0xade586).setOrigin(0, 0).setDisplaySize(scale9Piece.dw, scale9Piece.dh); + if (_0x590eba !== undefined) { + _0x1145e5.setTint(_0x590eba); + } + if (_0x206735 !== undefined) { + _0x1145e5.setAlpha(_0x206735); + } + _0x4080b2.add(_0x1145e5); + } + return _0x4080b2; + } + _startGame() { + if (!this._menuActive) { + return; + } + + // fixed loading saved new best from local storage + this._bestPercent = parseFloat(localStorage.getItem("bestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); + this._practiceBestPercent = parseFloat(localStorage.getItem("practiceBestPercent_" + (window.currentlevel[2] || "level_1")) || "0"); + + this._menuActive = false; + this._slideIn = true; + if (this._menuGlitter) { + this._menuGlitter.destroy(); + this._menuGlitter = null; + } + if (this._menuUpdateLogBtn) { + this._menuUpdateLogBtn.setVisible(false); + } + if (this._menuNewgroundsBtn) { + this._menuNewgroundsBtn.setVisible(false); + } + if (this._menuSettingsBtn) { + this._menuSettingsBtn.setVisible(false); + } + if (this._menuAchievementsBtn) { + this._menuAchievementsBtn.setVisible(false); + } + if (this._menuStatsBtn) { + this._menuStatsBtn.setVisible(false); + } + if (this._playBtn) { + this.tweens.killTweensOf(this._playBtn); + this.tweens.add({ + targets: this._playBtn, + scale: 0.01, + duration: 200, + ease: "Quad.In", + onComplete: () => { + this._playBtn.destroy(); + this._playBtn = null; + } + }); + } + //icon stuff the threequel + if (this._iconBtn) { + this._closeIconSelector && this._closeIconSelector(true); + this.tweens.killTweensOf(this._iconBtn); + this.tweens.add({ + targets: this._iconBtn, + scale: 0.01, + duration: 200, + ease: "Quad.In", + onComplete: () => { + this._iconBtn.destroy(); + this._iconBtn = null; + } + }); +} + if (this._chrSelDecor) { + this.tweens.add({ + targets: this._chrSelDecor, + y: screenHeight + 100, + alpha: 0, + duration: 200, + ease: "Quad.In", + onComplete: () => { + if (this._chrSelDecor) { this._chrSelDecor.destroy(); this._chrSelDecor = null; } + } + }); + } + if (this._lvlEditDecor) { + this.tweens.add({ + targets: this._lvlEditDecor, + y: screenHeight + 100, + alpha: 0, + duration: 200, + ease: "Quad.In", + onComplete: () => { + if (this._lvlEditDecor) { this._lvlEditDecor.destroy(); this._lvlEditDecor = null; } + } + }); + } + //creator stuff the threequel + if (this._creatorBtn) { + this._closeCreatorMenu && this._closeCreatorMenu(true); + this._closeSearchMenu && this._closeSearchMenu(true); + this.tweens.killTweensOf(this._creatorBtn); + this.tweens.add({ + targets: this._creatorBtn, + scale: 0.01, + duration: 200, + ease: "Quad.In", + onComplete: () => { + this._creatorBtn.destroy(); + this._creatorBtn = null; + } + }); +} + if (this._robLogo) { + this.tweens.add({ + targets: this._robLogo, + y: screenHeight + this._robLogo.height, + duration: 300, + ease: "Quad.In", + onComplete: () => { + this._robLogo.destroy(); + this._robLogo = null; + } + }); + } + if (this._copyrightText) { + this.tweens.add({ + targets: this._copyrightText, + y: 680, + duration: 300, + ease: "Quad.In", + onComplete: () => { + this._copyrightText.destroy(); + this._copyrightText = null; + } + }); + } + if (this._menuFsBtn) { + this.tweens.add({ + targets: this._menuFsBtn, + y: -this._menuFsBtn.height, + duration: 300, + ease: "Quad.In", + onComplete: () => { + this._menuFsBtn.destroy(); + this._menuFsBtn = null; + } + }); + } + if (this._menuInfoBtn) { + this.tweens.add({ + targets: this._menuInfoBtn, + y: -this._menuInfoBtn.height, + duration: 300, + ease: "Quad.In", + onComplete: () => { + this._menuInfoBtn.destroy(); + this._menuInfoBtn = null; + } + }); + } + this._closeInfoPopup(); + this._closeUpdateLogPopup(); + if (this._tryMeImg) { + this.tweens.add({ + targets: this._tryMeImg, + y: -this._tryMeImg.height, + duration: 300, + ease: "Quad.In", + onComplete: () => { + this._tryMeImg.destroy(); + this._tryMeImg = null; + } + }); + } + if (this._downloadBtns) { + for (const _0xaa3a95 of this._downloadBtns) { + this.tweens.killTweensOf(_0xaa3a95); + this.tweens.add({ + targets: _0xaa3a95, + y: screenHeight + _0xaa3a95.height, + duration: 300, + ease: "Quad.In", + onComplete: () => _0xaa3a95.destroy() + }); + } + this._downloadBtns = null; + } + if (this._socialIcons && this._socialIcons.length > 0) { + for (const _icon of this._socialIcons) { + this.tweens.add({ + targets: _icon, + y: screenHeight + 64, + duration: 300, + ease: "Quad.In", + onComplete: () => _icon.destroy() + }); + } + this._socialIcons = []; + } + if (this._logo) { + this.tweens.add({ + targets: this._logo, + y: -this._logo.height, + duration: 300, + ease: "Quad.In", + onComplete: () => { + this._logo.destroy(); + this._logo = null; + } + }); + } + + if (window.isEditor) { + this._cameraX = 0; + this._cameraY = 0; + this._playerWorldX = 0; + this._level.additiveContainer.setVisible(true); + this._level.container.setVisible(true); + this._level.topContainer.setVisible(true); + this._player.setCubeVisible(false); + this._player2.setCubeVisible(false); + this._attemptsLabel.setVisible(false); + window.selectedObjId = 1; + this._initEditorLogic(); + return; + } + this._cameraX = -centerX; + this._cameraY = 0; + this._cameraXRef._v = this._cameraX; + this._prevCameraX = this._cameraX; + const _0x22e36e = this._cameraX - (this._menuCameraX || 0); + this._level.shiftGroundTiles(_0x22e36e); + this._playerWorldX = this._cameraX; + let speedKey = parseInt(window.settingsMap["kA4"] || "0"); + if (speedKey == 0) { + playerSpeed = SpeedPortal.ONE_TIMES; + } else if (speedKey == 1) { + playerSpeed = SpeedPortal.HALF; + } else if (speedKey == 2) { + playerSpeed = SpeedPortal.TWO_TIMES; + } else if (speedKey == 3) { + playerSpeed = SpeedPortal.THREE_TIMES; + } else if (speedKey == 4) { + playerSpeed = SpeedPortal.FOUR_TIMES; + } + this._state.y = 30; + this._state.onGround = true; + this._level.additiveContainer.setVisible(true); + this._level.container.setVisible(true); + this._level.topContainer.setVisible(true); + this._player.setCubeVisible(true); + this._player.reset(); + this._isDual = false; + this._state2.reset(); + this._player2.reset(); + this._player2.setCubeVisible(false); + this._player2.setShipVisible(false); + this._player2.setBallVisible(false); + this._player2.setWaveVisible(false); + this._levelAttempts = 1; + this._levelJumps = 0; + this._attempts++; + localStorage.setItem("gd_totalAttempts", this._attempts); + this._attemptsLabel.setText("Attempt " + this._levelAttempts); + this._attemptsLabel.setVisible(true); + this._positionAttemptsLabel(); + let gamemode = parseInt(window.settingsMap["kA2"] || "0"); + if (gamemode == 1) { + this._player.enterShipMode(); + } else if (gamemode == 2) { + this._state.y = 30; + this._player.enterBallMode({ y: 30 }); + } else if (gamemode == 3) { + this._player.enterUfoMode(); + } else if (gamemode == 4) { + this._player.enterWaveMode(); + } + } + _pushButton(ignoreMacro = false) { + const objectsUnderPointer = this.input.manager.hitTest( + this.input.activePointer, + this._startPosGui.list, + this.cameras.main + ); + const isOverUI = objectsUnderPointer.length > 0; + const fromClick = this.input.activePointer.isDown; + const cancelInput = isOverUI && fromClick; + + if (this._menuActive) { + this._audio.playEffect("playSound_01", { + volume: 1 + }); + this._startGame(); + return; + } + + if (!cancelInput) { + if (!this._clickHistory) this._clickHistory = []; + this._clickHistory.push(this.time.now); + } + + if (!this._slideIn && !this._state.isDead && !cancelInput) { + this._state.upKeyDown = true; + this._state.upKeyPressed = true; + this._state.queuedHold = true; + if (!this._state.isFlying && !this._state.isWave && !this._state.isUfo && this._state.canJump) { + this._player.updateJump(0); + this._totalJumps++; + this._levelJumps++; + localStorage.setItem("gd_totalJumps", this._totalJumps); + } else if (this._state.isUfo) { + this._player.updateJump(0); + this._totalJumps++; + this._levelJumps++; + localStorage.setItem("gd_totalJumps", this._totalJumps); + } + } + + if (!ignoreMacro && this._macroBot) { + this._macroBot.recordEdge(true, this._physicsFrame); + } + } + _releaseButton(ignoreMacro = false) { + this._state.upKeyDown = false; + this._state.upKeyPressed = false; + this._state.queuedHold = false; + if (!ignoreMacro && this._macroBot) { + this._macroBot.recordEdge(false, this._physicsFrame); + } + } + _initMacroBot() { + this._macroBot = new MacroBot(this); + window.macroBot = this._macroBot; + } + _startMacroRecording(meta = {}) { + if (!this._macroBot) this._initMacroBot(); + this._macroBot.startRecording({ + level: window.currentlevel?.[2] || "", + ...meta + }); + } + _stopMacroRecording() { + if (!this._macroBot) return null; + return this._macroBot.stopRecording(); + } + _startMacroPlayback(macroData) { + console.log(macroData); + if (!this._macroBot) this._initMacroBot(); + this._macroBot.startPlayback(macroData); + } + _stopMacroPlayback() { + if (this._macroBot) this._macroBot.stopPlayback(); + } + _exportMacroFile(filename = null) { + if (!this._macroBot) return; + const safeName = (filename || `${window.currentlevel?.[2] || "macro"}.gdr`) + .replace(/[^\w.\-]+/g, "_"); + this._macroBot.download(safeName); + } + _importMacroFile() { + const fileInput = document.createElement("input"); + fileInput.type = "file"; + fileInput.accept = ".wbgdr"; + + fileInput.onchange = async (e) => { + const file = e.target.files?.[0]; + if (!file) return; + + try { + if (!this._macroBot) this._initMacroBot(); + + const macroData = await this._macroBot.importFile(file); + this._macroBot.inputs = Array.isArray(macroData.inputs) ? macroData.inputs.slice() : []; + const fallback = file.name.replace(/\.[^/.]+$/, ""); + const macroName = macroData.meta?.name || fallback; + + this._macroBot.meta = macroData.meta || this._macroBot.meta; + this._macroBot.meta.name = macroName; + + this._macroName = macroName; + this._macroLoaded = true; + } catch (err) { + alert("Failed to import: " + err.message); + } + }; + + fileInput.click(); + } + _positionMenuItems() { + const _0x1e5db8 = screenWidth / 2; + if (this._logo) { + this._logo.x = _0x1e5db8; + } + if (this._menuInfoBtn) { + this._menuInfoBtn.x = screenWidth - 30 - 3; + } + if (this._copyrightText) { + this._copyrightText.x = screenWidth - 20; + } + if (this._tryMeImg) { + this._tryMeImg.x = _0x1e5db8 + 175; + } + if (this._menuGlitter) { + this._menuGlitter.x = _0x1e5db8; + this._menuGlitter.y = 320; + } + if (this._playBtn) { + this._playBtn.x = _0x1e5db8; + this.tweens.killTweensOf(this._playBtn, "y"); + this._playBtn.y = 320; + } + if (this._downloadBtns) { + const _0x285ef7 = screenWidth - 130; + const _0x4a8263 = 570; + const _0x23d03e = 60; + for (let _0x1bdfae = 0; _0x1bdfae < this._downloadBtns.length; _0x1bdfae++) { + const yOffset = _0x1bdfae === 1 ? -_0x23d03e : 0; + this._downloadBtns[_0x1bdfae].setPosition(_0x285ef7, _0x4a8263 + yOffset); + } + } + if (this._iconBtn) { + this._iconBtn.x = (screenWidth / 2) - this._playBtn.width / 2 - 100 - (this._iconBtn.width * this._iconBtn.scaleX) / 2; + this.tweens.killTweensOf(this._iconBtn, "y"); + this._iconBtn.y = 320; + this.tweens.add({ + targets: this._iconBtn, + y: 324, + duration: 750, + ease: "Quad.InOut", + yoyo: true, + repeat: -1 + }); + } + if (this._creatorBtn) { + this._creatorBtn.x = (screenWidth / 2) + this._playBtn.width / 2 + 100 + (this._creatorBtn.width * this._creatorBtn.scaleX) / 2; + this.tweens.killTweensOf(this._creatorBtn, "y"); + this._creatorBtn.y = 320; + } + if (this._robLogo) { + this._robLogo.x = 110; + this._robLogo.y = 585; + } + if (this._socialIcons && this._socialIcons.length > 0) { + const _iconSpacing = 52; + const _originX = 65; + const _originY = 478; + const _layout = [{row:0,col:0},{row:0,col:1},{row:0,col:2},{row:0,col:3}, + {row:1,col:0},{row:1,col:1},{row:1,col:2},{row:1,col:3}, + {row:2,col:0},{row:2,col:1},{row:2,col:2},{row:2,col:3},{row:2,col:4}]; + this._socialIcons.forEach((icon, i) => { + icon.x = _originX + _layout[i].col * _iconSpacing; + icon.y = _originY + _layout[i].row * _iconSpacing; + }); + } + } + _positionAttemptsLabel() { + let _0xdbdd91 = this._cameraX + screenWidth / 2; + if (this._levelAttempts > 1) { + _0xdbdd91 += 100; + } + this._attemptsLabel.setPosition(_0xdbdd91, 150); + } + _resetGameplayState() { + this._cameraX = -centerX; + this._cameraY = 0; + this._cameraXRef._v = -centerX; + this._prevCameraX = -centerX; + this._playerWorldX = 0; + this._deltaBuffer = 0; + this._deathTimer = 0; + this._deathSoundPlayed = false; + this._newBestShown = false; + this._hadNewBest = false; + this._levelWon = false; + this._endCameraOverride = false; + this._endCamTween = null; + this._spaceWasDown = false; + this._physicsFrame = 0; + } + _restartLevel() { + this._attempts++; + localStorage.setItem("gd_totalAttempts", this._attempts); + this._levelAttempts++; + this._levelJumps = 0; + const _0x2ba78a = this._cameraX; + if (this._levelWon && this._practicedMode.practiceMode) { + this._practicedMode.togglePracticeMode(); + this._practicedMode.clearCheckpoints(); + if (this._checkpointBtnContainer) { + this._checkpointBtnContainer.setVisible(false); + } + } + if (this._practicedMode.practiceMode) { + const checkpoint = this._practicedMode.loadLastCheckpoint(); + if (checkpoint) { + this._respawnFromCheckpoint(); + return; + } + } + this._practicedMode.clearCheckpoints(); + this._resetGameplayState(); + this._state.reset(); + this._player.reset(); + this._isDual = false; + this._state2.reset(); + this._player2.reset(); + this._player2.setCubeVisible(false); + this._player2.setShipVisible(false); + this._player2.setBallVisible(false); + this._player2.setWaveVisible(false); + this._glitterEmitter.stop(); + let speedKey = parseInt(window.settingsMap["kA4"] || "0"); + if (speedKey == 0) { + playerSpeed = SpeedPortal.ONE_TIMES; + } else if (speedKey == 1) { + playerSpeed = SpeedPortal.HALF; + } else if (speedKey == 2) { + playerSpeed = SpeedPortal.TWO_TIMES; + } else if (speedKey == 3) { + playerSpeed = SpeedPortal.THREE_TIMES; + } else if (speedKey == 4) { + playerSpeed = SpeedPortal.FOUR_TIMES; + } + this._level.resetObjects(); + this._level.shiftGroundTiles(this._cameraX - _0x2ba78a); + this._level.resetGroundState(); + this._level.resetColorTriggers(); + this._level.resetAlphaTriggers(); + this._level.resetRotateTriggers(); + this._level.resetPulseTriggers(); + this._level.resetEnterEffectTriggers(); + this._level.resetMoveTriggers(); + this._level.resetVisibility(); + if (this._orbGfx) { this._orbGfx.clear(); } + this._colorManager.reset(); + this._player.noclipStats.totalFrames = 0; + this._player.noclipStats.deathFrames = 0; + this._player.noclipStats.deaths = 0; + + const musicOffset = this._getStartPosMusicOffset(); + const startPositions = this._level.getStartPositions(); + + if (this._startPosIndex !== -1 && startPositions[this._startPosIndex]) { + const pos = startPositions[this._startPosIndex]; + + this._playerWorldX = pos.x; + this._state.y = pos.y; + if (pos.gameMode == 1) { + this._player.enterShipMode(); + } else if (pos.gameMode == 2) { + this._state.y = 30; + this._player.enterBallMode({ y: 30 }); + } else if (pos.gameMode == 3) { + this._player.enterUfoMode(); + } else if (pos.gameMode == 4) { + this._player.enterWaveMode(); + } else if (pos.gameMode == 6) { + this._player.enterSpiderMode(); + } + this._state.gravityFlipped = pos.gravityFlipped; + this._state.isMini = pos.miniMode; + playerSpeed = [ + SpeedPortal.ONE_TIMES, + SpeedPortal.HALF, + SpeedPortal.TWO_TIMES, + SpeedPortal.THREE_TIMES, + SpeedPortal.FOUR_TIMES + ][pos.speed]; + this._state.mirrored = pos.mirrored; + this._level.fastForwardTriggers(pos.x, this._colorManager); + } + + this._audio.reset(); + this._audio.startMusic(musicOffset); + this._paused = false; + if (this._pauseContainer) { + this._pauseContainer.destroy(); + this._pauseContainer = null; + } + this._pauseBtn.setVisible(true).setAlpha(75 / 255); + if (this._practiceModeBarContainer) { + this._practiceModeBarContainer.setVisible(this._practicedMode && this._practicedMode.practiceMode); + } + this._attemptsLabel.setText("Attempt " + this._levelAttempts); + this._attemptsLabel.setVisible(true); + this._positionAttemptsLabel(); + let gamemode = parseInt(window.settingsMap["kA2"] || "0"); + if (gamemode == 1) { + this._player.enterShipMode(); + } else if (gamemode == 2) { + this._state.y = 30; + this._player.enterBallMode({ y: 30 }); + } else if (gamemode == 3) { + this._player.enterUfoMode(); + } else if (gamemode == 4) { + this._player.enterWaveMode(); + } else if (gamemode == 6) { + this._player.enterSpiderMode(); + } + + if (this._player && this._player._hitboxTrail) { + this._player._hitboxTrail = []; + } + + if (this._macroBot?.recording == true){ + this._macroBot?.clearRecording(); + } + if (this._macroBot?.playing == true){ + this._macroBot?.clearPlayback(); + } + } + _getStartPosMusicOffset(){ + const startPositions = this._level.getStartPositions(); + let musicOffset = 0; + if (this._startPosIndex !== -1 && startPositions[this._startPosIndex]) { + musicOffset = startPositions[this._startPosIndex].x / 623.16; + } + return musicOffset; + } + _respawnFromCheckpoint() { + const checkpoint = this._practicedMode.loadLastCheckpoint(); + if (!checkpoint) { + this._restartLevel(); + return; + } + this._deathTimer = 0; + this._deathSoundPlayed = false; + this._newBestShown = false; + this._state.isDead = false; + this._slideIn = false; + this._playerWorldX = checkpoint.x; + this._cameraX = checkpoint.cameraX; + this._cameraXRef._v = this._cameraX; + this._state.y = checkpoint.y; + this._state.yVelocity = checkpoint.yVelocity; + this._state.gravityFlipped = checkpoint.gravityFlipped; + this._state.isMini = checkpoint.isMini; + this._state.isCube = checkpoint.isCube; + this._state.isShip = checkpoint.isShip; + this._state.isBall = checkpoint.isBall; + this._state.isUfo = checkpoint.isUfo; + this._state.isWave = checkpoint.isWave; + this._state.isSpider = checkpoint.isSpider; + this._state.isBird = checkpoint.isBird; + this._state.isDart = checkpoint.isDart; + this._state.isRobot = checkpoint.isRobot; + this._state.isSwing = checkpoint.isSwing; + this._state.isJetpack = checkpoint.isJetpack; + this._state.isFlying = checkpoint.isFlying; + this._state.isJumping = checkpoint.isJumping; + this._state.onGround = checkpoint.onGround; + this._state.canJump = checkpoint.canJump; + this._state.wasBoosted = checkpoint.wasBoosted; + this._state.rotation = checkpoint.rotation; + this._state.gravity = checkpoint.gravity; + this._state.jumpPower = checkpoint.jumpPower; + this._state.mirrored = checkpoint.mirrored; + this._state.isDashing = checkpoint.isDashing; + this._state.dashYVelocity = checkpoint.dashYVelocity; + this._player.reset(); + this._state.isFlying = false; + this._state.isBall = false; + this._state.isWave = false; + this._state.isUfo = false; + this._state.isSpider = false; + this._state.isBird = false; + if (checkpoint.isFlying) { + this._player.enterShipMode(null, true); // dont mess with y velocity if ur loading a checkpoint + } else if (checkpoint.isBall) { + this._player.enterBallMode(); + } else if (checkpoint.isUfo) { + this._player.enterUfoMode(null, true); // dont mess with y velocity if ur loading a checkpoint + } else if (checkpoint.isWave) { + this._player.enterWaveMode(); + } else if (checkpoint.isSpider) { + this._player.enterSpiderMode(); + } else if (checkpoint.isBird) { + this._player.setBirdVisible(true); + this._player.setCubeVisible(true); + for (const layer of this._player._playerLayers) { + if (layer) { + layer.sprite.setScale(0.55); + } + } + } else { + this._player.setCubeVisible(true); + } + this._state.isFlying = checkpoint.isFlying; + this._state.isBall = checkpoint.isBall; + this._state.isWave = checkpoint.isWave; + this._state.isUfo = checkpoint.isUfo; + this._state.isSpider = checkpoint.isSpider; + this._state.isBird = checkpoint.isBird; + this._state.ignorePortals = true; + this._state2.ignorePortals = true; + this._level.resetGroundTiles(this._cameraX); + this._level.resetObjects(); + this._level._flyCeilingY = checkpoint.flyCeilingY; + this._level._flyGroundActive = checkpoint.flyGroundActive; + this._level._flyVisualOnly = checkpoint.flyVisualOnly; + this._level._groundTargetValue = checkpoint.groundTargetValue; + this._level.flyCameraTarget = checkpoint.flyCameraTarget; + this._level._groundAnimating = checkpoint.groundAnimating; + this._level._groundAnimFrom = checkpoint.groundAnimFrom; + this._level._groundAnimTo = checkpoint.groundAnimTo; + this._level._groundAnimTime = checkpoint.groundAnimTime; + this._level._groundAnimDuration = checkpoint.groundAnimDuration; + this._level._groundStartScreenY = checkpoint.groundStartScreenY !== undefined + ? checkpoint.groundStartScreenY - (checkpoint.cameraY || 0) + this._cameraY + : b(0) + this._cameraY; + this._level._ceilingStartScreenY = checkpoint.ceilingStartScreenY + - (checkpoint.cameraY || 0) + this._cameraY; + this._level._groundY = checkpoint.groundY; + this._level._ceilingY = checkpoint.ceilingY; + if (typeof checkpoint.speed === "number") { + playerSpeed = checkpoint.speed; + } else { + let speedKey = parseInt(window.settingsMap["kA4"] || "0"); + if (speedKey == 0) { + playerSpeed = SpeedPortal.ONE_TIMES; + } else if (speedKey == 1) { + playerSpeed = SpeedPortal.HALF; + } else if (speedKey == 2) { + playerSpeed = SpeedPortal.TWO_TIMES; + } else if (speedKey == 3) { + playerSpeed = SpeedPortal.THREE_TIMES; + } else if (speedKey == 4) { + playerSpeed = SpeedPortal.FOUR_TIMES; + } + } + this._level.resetColorTriggers(); + this._level.resetAlphaTriggers(); + this._level.resetRotateTriggers(); + this._level.resetPulseTriggers(); + this._level.resetEnterEffectTriggers(); + this._level.resetMoveTriggers(); + this._level.resetVisibility(); + this._level.additiveContainer.x = -this._cameraX; + this._level.additiveContainer.y = this._cameraY; + this._level.container.x = -this._cameraX; + this._level.container.y = this._cameraY; + this._level.topContainer.x = -this._cameraX; + this._level.topContainer.y = this._cameraY; + this._level.updateVisibility(this._cameraX); + this._level.updateObjectDebugIds(); + this._updateBackground(); + this._applyMirrorEffect(); + if (!this._audio.musicPlaying) { + this._audio.startMusic(); + } + + if (this._player && this._player._hitboxTrail) { + this._player._hitboxTrail = []; + } + + this._physicsFrame = checkpoint.physicsFrame; + if (this._macroBot?.recording == true){ + this._macroBot?.rollbackRecording(this._physicsFrame); + if (this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown || this._lKey.isDown){ + this._macroBot.recordEdge(true, this._physicsFrame); + } else { + this._macroBot.recordEdge(false, this._physicsFrame); + } + } + if (this._macroBot?.playing == true){ + this._macroBot?.rollbackPlayback(this._physicsFrame); + } + } + _onFullscreenChange(_0x310c5b) { + if (!_0x310c5b) { + l(1138); + } + this.time.delayedCall(200, () => this._applyScreenResize()); + } + _applyScreenResize() { + if (this.scale.isFullscreen) { + const _0x5bc34b = window.innerWidth / window.innerHeight; + l(Math.round(screenHeight * _0x5bc34b)); + } + this.scale.setGameSize(screenWidth, screenHeight); + this.scale.refresh(); + this._bg.setSize(screenWidth, screenHeight); + this._pauseBtn.x = screenWidth - 30; + if (this._menuActive) { + this._positionMenuItems(); + } + if (this._paused && this._pauseContainer) { + this._pauseContainer.destroy(); + this._pauseContainer = null; + this._buildPauseOverlay(); + } + this._level.resizeScreen(); + if (!this._menuActive) { + const _0x56287b = this._cameraX; + this._cameraX = this._playerWorldX - centerX; + this._cameraXRef._v = this._cameraX; + this._level.additiveContainer.x = -this._cameraX; + this._level.additiveContainer.y = this._cameraY; + this._level.container.x = -this._cameraX; + this._level.container.y = this._cameraY; + this._level.topContainer.x = -this._cameraX; + this._level.topContainer.y = this._cameraY; + this._level.shiftGroundTiles(this._cameraX - _0x56287b); + this._level.updateGroundTiles(this._cameraY); + this._level.updateVisibility(this._cameraX); + this._level.updateObjectDebugIds(); + this._level.applyEnterEffects(this._cameraX); + const _0xde8a1a = this._playerWorldX - this._cameraX; + this._player.syncSprites(this._cameraX, this._cameraY, 0, this._getMirrorXOffset(_0xde8a1a)); + this._applyMirrorEffect(); + } + } + _updateBackground() { + this._bg.tilePositionX += (this._cameraX - this._prevCameraX) * this._bgSpeedX; + this._prevCameraX = this._cameraX; + this._bg.tilePositionY = this._bgInitY - this._cameraY * this._bgSpeedY; + } + _updateCameraY(_0xc7c517) { + let explosionPiece = this._cameraY; + let _0x1a27be = explosionPiece; + if (this._level.flyCameraTarget !== null) { + _0x1a27be = this._level.flyCameraTarget; + } else { + let _0x2bc8fb = this._state.y; + let _0x259956 = 140; + let _0x5025ec = 80; + let _0x1f7976 = explosionPiece - o + 320; + if (this._state.gravityFlipped) { + if (_0x2bc8fb > _0x1f7976 + _0x5025ec) { + _0x1a27be = _0x2bc8fb - 320 - _0x5025ec + o; + } else if (_0x2bc8fb < _0x1f7976 - _0x259956) { + _0x1a27be = _0x2bc8fb - 320 + _0x259956 + o; + } + } else { + if (_0x2bc8fb > _0x1f7976 + _0x259956) { + _0x1a27be = _0x2bc8fb - 320 - _0x259956 + o; + } else if (_0x2bc8fb < _0x1f7976 - _0x5025ec) { + _0x1a27be = _0x2bc8fb - 320 + _0x5025ec + o; + } + } + } + if (_0x1a27be < 0) { + _0x1a27be = 0; + } + if (_0xc7c517 !== 0) { + explosionPiece += (_0x1a27be - explosionPiece) / (10 / _0xc7c517); + if (explosionPiece < 0) { + explosionPiece = 0; + } + this._cameraY = explosionPiece; + } + } + _quantizeDelta(_0x654f39) { + const speed = window.speedHack || 1; + let _0x578d1b = (_0x654f39 * speed) / 1000 + this._deltaBuffer; + let _0x53e02e = Math.round(_0x578d1b / u); + if (_0x53e02e < 0) { + _0x53e02e = 0; + } + if (_0x53e02e > 60) { + _0x53e02e = 60; + } + let _0xd8019e = _0x53e02e * u; + this._deltaBuffer = _0x578d1b - _0xd8019e; + return _0xd8019e * 60; + } + update(_0x54fa47, deltaTime) { + if (window.isEditor) { + if (window.isEditorPause) return; + const pointer = this.input.activePointer; + this._hitObjects = this.input.hitTestPointer(pointer); + this._handleEditorCamera(deltaTime); + this._updateEditorGrid(); + if (pointer.isDown && !this._isDraggingSlider) { + if (this._isSwipeEnabled) { + if (this._hitObjects.length !== 0) return; + const currentGridX = Math.floor((pointer.x + this._cameraX) / 60) * 60; + const currentGridY = Math.floor((pointer.y + this._cameraY + 20) / 60) * 60; + + if (currentGridX !== this._lastSwipeGridX || currentGridY !== this._lastSwipeGridY) { + this._editorAction(); + this._lastSwipeGridX = currentGridX; + this._lastSwipeGridY = currentGridY; + } + } else { + if (!this._isDragging && this._hitObjects.length !== 0) return; + const dragX = pointer.x - this._clickStartPos.x; + const dragY = pointer.y - this._clickStartPos.y; + const dragDistance = Math.sqrt(dragX * dragX + dragY * dragY); + if (dragDistance > 10) { + this._isDragging = true; + this._cameraX = this._cameraStartX - dragX; + this._cameraY = this._cameraStartY - dragY; + } + } + } + this._updateEditorTimeline(); + return; + } + let rawPercent = (this._playerWorldX / this._level.endXPos) * 100; + rawPercent = Math.min(100, Math.max(0, rawPercent)); + let displayValue; + if (this._levelWon) { + const p = this._interpolatedPercent || 0; + if (window.percentageDecimals) { + displayValue = p.toFixed(2) + "%"; + } else { + displayValue = Math.floor(p) + "%"; + } + } else if (window.percentageDecimals) { + displayValue = rawPercent.toFixed(2) + "%"; + } else { + displayValue = Math.floor(rawPercent) + "%"; + } + this._percentageLabel.setText(displayValue); + this._percentageLabel.setVisible(window.showPercentage && !this._menuActive); + this._startPosGui.setVisible(window.startPosSwitcher && !this._menuActive); + this._noclipIndicator.setVisible(window.noClip && !this._menuActive); + this._accuracyIndicator.setVisible(window.noClip && window.noClipAccuracy && !this._menuActive); + this._deathsIndicator.setVisible(window.noClip && window.noClipAccuracy && !this._menuActive); + this._accuracyIndicator.setText(`${this._player.noclipStats.accuracy.toFixed(2)}%`); + this._deathsIndicator.setText(`${this._player.noclipStats.deaths} Deaths`); + + this._cpsIndicator.setVisible(window.showCPS && !this._menuActive); + if (this._clickHistory && this._clickHistory.length > 0) { + this._clickHistory = this._clickHistory.filter(timestamp => this.time.now - timestamp <= 1000); + this._cpsIndicator.setText(`${this._clickHistory.length} CPS`); + } else { + this._cpsIndicator.setText("0 CPS"); + } + if (this._state.upKeyDown){ + this._cpsIndicator.setTint(0x00ff00); + } else{ + this._cpsIndicator.setTint(0xffffff); + } + this._cpsIndicator.setPosition(10, 10 + (window.noClip * 20) + (window.noClip && window.noClipAccuracy * 40)); + + this._bottedIndicator.setVisible(this._macroBot?.playing); + this._bottedIndicator.setPosition(10, 10 + (window.noClip * 20) + (window.noClip && window.noClipAccuracy * 40) + (window.showCPS * 20)); + if (this._macroBtn){ + this._macroBtn.setVisible(window.macroBot); + } + + this._fpsAccum += deltaTime; + this._fpsFrames++; + if (this._fpsAccum >= 250) { + this._fpsText.setText(Math.round(this._fpsFrames * 1000 / this._fpsAccum)); + this._fpsAccum = 0; + this._fpsFrames = 0; + } + if (this._paused) { + if (!this._updateLogPopup && (this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown || this._lKey.isDown) && !this._spaceWasDown && !this._settingsPopup) { + setTimeout(() => { + this._resumeGame(); + }, 75); + } + this._deltaBuffer = 0; + return; + } + if (this._menuActive) { + const _anyOverlayOpen = this._iconOverlay || this._creatorOverlay || this._searchOverlay || + this._onlineLevelsOverlay || this._settingsLayerOverlay || this._settingsPopup || + this._infoPopup || this._newgroundsPopup || this._statsLayerOverlay || this._updateLogPopup; + if (!_anyOverlayOpen && (this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown) && !this._spaceWasDown) { + if (this._creatorMenuOpen) return; + this._spaceWasDown = true; + if (this._levelSelectOverlay) { + this._audio.playEffect("playSound_01", { volume: 1 }); + this._closeLevelSelect(true); + this._audio.stopMusic(); + this.game.registry.set("autoStartGame", true); + this.scene.restart(); + return; + } + this._openLevelSelect(); + return; + } + const _arrowLeft = this._leftKey.isDown || this._aKey.isDown; + const _arrowRight = this._rightKey.isDown || this._dKey.isDown; + if (!_anyOverlayOpen && (_arrowLeft || _arrowRight) && !this._arrowWasDown) { + if (this._levelSelectOverlay) { + if (_arrowLeft) window.leftbuttoncallback(); + else window.rightbuttoncallback(); + } + } + this._arrowWasDown = _arrowLeft || _arrowRight; + this._spaceWasDown = this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown || this._lKey.isDown; + const menuDelta = Math.min(deltaTime / 1000 * 60, 2); + const menuSpeed = 0.85; + this._menuCameraX = (this._menuCameraX || 0) + menuDelta * playerSpeed * d * menuSpeed; + const _0x38afac = this._cameraX; + this._cameraX = this._menuCameraX; + this._updateBackground(); + this._cameraX = _0x38afac; + this._prevCameraX = this._menuCameraX; + this._cameraXRef._v = this._menuCameraX; + this._level.stepGroundAnimation(deltaTime / 1000); + this._level.updateGroundTiles(this._cameraY); + if (this._menuRainbowTime === undefined) this._menuRainbowTime = 0; + this._menuRainbowTime += deltaTime / 1000; + const _rainbowHue = (this._menuRainbowTime * 15) % 360; + const _rainbowHex = Phaser.Display.Color.HSVToRGB(_rainbowHue / 360, 0.85, 1.0).color; + const _groundHex = Phaser.Display.Color.HSVToRGB(_rainbowHue / 360, 0.85, 1.0).color; + this._bg.setTint(_rainbowHex); + this._level.setGroundColor(_groundHex); + return; + } + if (this._slideIn) { + const slideDelta = this._quantizeDelta(deltaTime); + this._playerWorldX += slideDelta * playerSpeed * d; + const slideGroundSpeed = 0.25; + this._slideGroundX = (this._slideGroundX || this._cameraX) + slideDelta * playerSpeed * d * slideGroundSpeed; + this._cameraXRef._v = this._slideGroundX; + const slidePlayerScreenX = this._playerWorldX - this._cameraX; + this._player.updateGroundRotation(slideDelta * d); + this._player.syncSprites(this._cameraX, this._cameraY, deltaTime / 1000, this._getMirrorXOffset(slidePlayerScreenX)); + this._level.additiveContainer.x = -this._cameraX; + this._level.additiveContainer.y = this._cameraY; + this._level.container.x = -this._cameraX; + this._level.container.y = this._cameraY; + this._level.topContainer.x = -this._cameraX; + this._level.topContainer.y = this._cameraY; + this._level.updateVisibility(this._cameraX); + this._level.updateObjectDebugIds(); + this._updateBackground(); + this._level.stepGroundAnimation(deltaTime / 1000); + this._level.updateGroundTiles(this._cameraY); + this._applyMirrorEffect(); + if (this._playerWorldX >= 0) { + this._slideIn = false; + this._deltaBuffer = 0; + this._playerWorldX = 0; + this._cameraX = this._playerWorldX - centerX; + this._cameraXRef._v = this._cameraX; + const _0x490749 = this._cameraX - this._slideGroundX; + this._level.shiftGroundTiles(_0x490749); + if (this._firstPlay) { + this._firstPlay = false; + this._audio.startMusic(); + } + this._pauseBtn.setVisible(true).setAlpha(0); + this.tweens.add({ + targets: this._pauseBtn, + alpha: 75 / 255, + duration: 500 + }); + if (this._practiceModeBarContainer) { + this._practiceModeBarContainer.setVisible(this._practicedMode && this._practicedMode.practiceMode); + } + } + return; + } + this._applyJumpInput = () => { + const jumpHeld = this._spaceKey.isDown || this._upKey.isDown || this._wKey.isDown || this._lKey.isDown; + if (!this._updateLogPopup && jumpHeld && !this._spaceWasDown) { + this._pushButton(); + } else if (!jumpHeld && this._spaceWasDown) { + this._releaseButton(); + } + this._spaceWasDown = jumpHeld; + }; + + const objectsUnderPointer = this.input.manager.hitTest( + this.input.activePointer, + this._startPosGui.list, + this.cameras.main + ); + const isOverUI = objectsUnderPointer.length > 0; + const fromClick = this.input.activePointer.isDown; + const cancelInput = isOverUI && fromClick; + + if (!!this.input.activePointer.isDown && !this._state.upKeyDown && !this._state.isDead) { + this._state.upKeyDown = true; + this._state.queuedHold = true; + } + if (cancelInput) { + this._state.upKeyDown = false; + this._state.upKeyPressed = false; + this._state.queuedHold = false; + } + this._level.updateEndPortalY(this._cameraY, this._state.isFlying || this._state.isWave || this._state.isUfo); + if (!this._levelWon && !this._state.isDead && this._level.endXPos > 0) { + const _0x448396 = 600; + if (this._playerWorldX >= this._level.endXPos - _0x448396) { + this._levelWon = true; + this._endPortalGameY = this._level._endPortalGameY || 240; + this._triggerEndPortal(); + } + } + if (this._levelWon) { + this._deltaBuffer = 0; + if (this._endCamTween) { + const visMaxSection = this._endCamTween; + this._cameraX = visMaxSection.fromX + (visMaxSection.toX - visMaxSection.fromX) * visMaxSection.p; + this._cameraY = visMaxSection.fromY + (visMaxSection.toY - visMaxSection.fromY) * visMaxSection.p; + } + this._cameraXRef._v = this._cameraX; + this._level.additiveContainer.x = -this._cameraX; + this._level.additiveContainer.y = this._cameraY; + this._level.container.x = -this._cameraX; + this._level.container.y = this._cameraY; + this._level.topContainer.x = -this._cameraX; + this._level.topContainer.y = this._cameraY; + this._updateBackground(); + this._level.stepGroundAnimation(deltaTime / 1000); + this._level.updateGroundTiles(this._cameraY); + this._applyMirrorEffect(); + return; + } + if (this._state.isDead) { + if (!this._deathSoundPlayed) { + if (!this._practicedMode.practiceMode) { + this._audio.stopMusic(); + } + this._audio.playEffect("explode_11", { + volume: 0.65 * this._sfxVolume + }); + this._deathSoundPlayed = true; + this._totalDeaths++; + localStorage.setItem("gd_totalDeaths", this._totalDeaths); + } + if (!this._newBestShown) { + this._newBestShown = true; + let _0x435587 = this._level.endXPos || 6000; + let _0x169d53 = this._playerWorldX; + this._lastPercent = Math.min(99, Math.max(0, Math.floor(_0x169d53 / _0x435587 * 100))); + if (this._lastPercent > this._bestPercent && !this._practicedMode.practiceMode) { + this._bestPercent = this._lastPercent; + localStorage.setItem("bestPercent_" + (window.currentlevel[2] || "level_1"), this._bestPercent); + this._hadNewBest = true; + this._showNewBest(); + } + if (this._practicedMode.practiceMode) { + const pracKey = "practiceBestPercent_" + (window.currentlevel[2] || "level_1"); + const prevPracticeBest = parseFloat(localStorage.getItem(pracKey) || "0"); + if (this._lastPercent > prevPracticeBest) { + localStorage.setItem(pracKey, this._lastPercent); + this._practiceBestPercent = this._lastPercent; + if (this._updatePracticeHUDBar) this._updatePracticeHUDBar(); + } + } + } + this._player.updateExplosionPieces(deltaTime); + this._deathTimer += deltaTime; + let _0x237728 = this._hadNewBest ? 1400 : 1000; + if (this._deathTimer > _0x237728) { + if (this._practicedMode.practiceMode) { + this._respawnFromCheckpoint(); + } else { + this._restartLevel(); + } + } + return; + } + this._playTime += deltaTime / 1000; + this._audio.update(deltaTime / 1000); + + window._animTimer += deltaTime; + for (let _as of window._animatedSprites) { + if (window._animTimer - (_as._lastAnimSwap || 0) >= _as._animInterval) { + _as._lastAnimSwap = window._animTimer; + _as._animIdx = (_as._animIdx + 1) % _as._animFrames.length; + let _fr = getAtlasFrame(_as._animScene, _as._animFrames[_as._animIdx]); + if (_fr) { + try { + _as.setTexture(_fr.atlas, _fr.frame); + } catch(e){} + } + } + } + if (this._level && this._level._sawSprites) { + const sawRotation = deltaTime * 0.003; + for (let _saw of this._level._sawSprites) { + if (_saw && _saw.active) _saw.rotation += sawRotation; + } + } + this._level.updateAudioScale(this._audio.getMeteringValue()); + if (!this._orbGfx) { + this._orbGfx = this.add.graphics().setDepth(54).setBlendMode(S); + } + this._orbParticleAngle = ((this._orbParticleAngle || 0) + deltaTime * 0.004) % (Math.PI * 2); + this._orbGfxTimer = (this._orbGfxTimer || 0) + deltaTime; + if (this._orbGfxTimer > 33) { + this._orbGfxTimer = 0; + this._orbGfx.clear(); + if (this._level && this._level._orbSprites && this._level.container) { + try { + let _drawn = 0; + const _orbTypeColorMap = { + 36: 0xfffb57, + 84: 0x58ffff, + 141: 0xff52f0, + 444: 0xff00d2, + 1022: 0x63ff5f, + 1330: 0xffffff, + 1333: 0xff6326, + 1594: 0x6cff6b, + 1704: 0x04ff04, + 1751: 0xff00d2 + }; + for (let _oSpr of this._level._orbSprites) { + if (_drawn >= 4) break; + if (!_oSpr || !_oSpr.visible || !_oSpr.active || !_oSpr.scene) continue; + const _sx = _oSpr.x + this._level.container.x; + const _sy = _oSpr.y + this._level.container.y; + if (_sx < -40 || _sx > screenWidth + 40 || _sy < -40 || _sy > screenHeight + 40) continue; + _drawn++; + const _orbTypeTint = _orbTypeColorMap[_oSpr._orbId]; + for (let _pi = 0; _pi < 5; _pi++) { + const _orbitSpeed = 0.7 + (_pi % 3) * 0.35; + const _orbitR = 34 + (_pi * 5 % 17); + const _ang = this._orbParticleAngle * _orbitSpeed + (_pi * Math.PI * 2 / 5); + const _px = _sx + Math.cos(_ang) * _orbitR; + const _py = _sy + Math.sin(_ang) * (_orbitR * 0.85); + const _size = (window.orbParticleSize || 3.5) + (_pi % 3) * 1.0; + const _alpha = 0.5 + (_pi % 4) * 0.12; + this._orbGfx.fillStyle(_orbTypeTint, _alpha); + this._orbGfx.fillRect(_px - _size, _py - _size, _size * 2, _size * 2); + } + } + } catch(e) {} + } + } + let quantizedDelta = this._quantizeDelta(deltaTime); + let subSteps = quantizedDelta > 0 ? Math.max(1, Math.round(quantizedDelta * 4)) : 0; + if (subSteps > 60) { + subSteps = 60; + } + let subStepDelta = subSteps > 0 ? quantizedDelta / subSteps : 0; + let verticalDelta = subStepDelta * d; + let horizontalDelta = subStepDelta * playerSpeed * d; + const initialY = this._state.y; + for (let i = 0; i < subSteps; i++) { + this._state.lastY = this._state.y; + this._physicsFrame++; + this._applyJumpInput(); + if (this._macroBot?.playing) { + this._macroBot.step(this._physicsFrame); + } + this._player.updateJump(verticalDelta); + this._state.y += this._state.yVelocity * verticalDelta; + this._player.checkCollisions(this._playerWorldX - centerX); + this._playerWorldX += horizontalDelta; + if (this._isDual && !this._state2.isDead) { + this._state2.upKeyDown = this._state.upKeyDown; + this._state2.upKeyPressed = this._state.upKeyPressed; + this._state2.queuedHold = this._state.queuedHold; + this._state2.lastY = this._state2.y; + this._player2.updateJump(verticalDelta); + this._state2.y += this._state2.yVelocity * verticalDelta; + this._player2.checkCollisions(this._playerWorldX - centerX - horizontalDelta); + if (this._state2.isDead && !this._state.isDead) { + this._player.killPlayer(); + } + } + if (!this._state.isFlying && !this._state.isWave && !this._state.isUfo) { + if (this._state.isBall) { + const ballOnSurface = this._state.onGround || this._state.onCeiling; + this._player.updateBallRoll(horizontalDelta, ballOnSurface); + } else if (this._state.onGround) { + this._player.updateGroundRotation(verticalDelta); + } else if (this._player.rotateActionActive) { + this._player.updateRotateAction(u); + } else if (this._state.isDashing) { + this._player.updateDashRotation(u); + } + } + + if (!this._player._scene._slideIn){ + if (!this._player._hitboxTrail) this._player._hitboxTrail = []; + if (!this._player.p.isDead) { + this._player._hitboxTrail.push({ x: this._playerWorldX, y: this._player.p.y, rotation: this._player._rotation }); + if (this._player._hitboxTrail.length > 180) this._player._hitboxTrail.shift(); + } + } + } + this._state.lastY = initialY; + this._state.ignorePortals = false; + this._state2.ignorePortals = false; + if (!this._endCameraOverride) { + const cameraOffsetX = this._playerWorldX - centerX; + if (this._level.endXPos > 0) { + const maxCameraX = this._level.endXPos - screenWidth; + if (cameraOffsetX >= maxCameraX - 200) { + this._endCameraOverride = true; + this._cameraX = cameraOffsetX; + const endCameraY = -140 + (this._level._endPortalGameY || 240); + const easingPower = 1.8; + const easeInOutCubic = t => t < 0.5 ? Math.pow(t * 2, easingPower) / 2 : 1 - Math.pow((1 - t) * 2, easingPower) / 2; + this._endCamTween = { + p: 0, + fromX: this._cameraX, + toX: maxCameraX, + fromY: this._cameraY, + toY: endCameraY + }; + this.tweens.add({ + targets: this._endCamTween, + p: 1, + duration: 1200, + ease: easeInOutCubic + }); + } else { + this._cameraX = cameraOffsetX; + } + } else { + this._cameraX = cameraOffsetX; + } + } + if (this._endCameraOverride && this._endCamTween) { + const tween = this._endCamTween; + this._cameraX = tween.fromX + (tween.toX - tween.fromX) * tween.p; + this._cameraY = tween.fromY + (tween.toY - tween.fromY) * tween.p; + } + this._cameraXRef._v = this._cameraX; + if (!this._endCameraOverride) { + this._updateCameraY(quantizedDelta); + } + this._level.additiveContainer.x = -this._cameraX; + this._level.additiveContainer.y = this._cameraY; + this._level.container.x = -this._cameraX; + this._level.container.y = this._cameraY; + this._level.topContainer.x = -this._cameraX; + this._level.topContainer.y = this._cameraY; + let playerX = this._playerWorldX; + for (let colorTrigger of this._level.checkColorTriggers(playerX)) { + this._colorManager.triggerColor(colorTrigger.index, colorTrigger.color, colorTrigger.duration); + if (colorTrigger.tintGround) { + this._colorManager.triggerColor(gs, colorTrigger.color, colorTrigger.duration); + } + } + this._level.checkMoveTriggers(playerX); + this._level.stepMoveTriggers(deltaTime / 1000); + this._level.checkAlphaTriggers(playerX); + this._level.stepAlphaTriggers(deltaTime / 1000); + this._level.checkRotateTriggers(playerX); + this._level.stepRotateTriggers(deltaTime / 1000); + this._level.checkPulseTriggers(playerX); + this._level.stepPulseTriggers(deltaTime / 1000, this._colorManager); + this._colorManager.step(deltaTime / 1000); + this._level.applyColorChannels(this._colorManager); + this._bg.setTint(this._colorManager.getHex(fs)); + this._level.setGroundColor(this._colorManager.getHex(gs)); + this._level.updateVisibility(this._cameraX); + this._level.updateObjectDebugIds(); + this._level.checkEnterEffectTriggers(playerX); + this._level.applyEnterEffects(this._cameraX); + this._glitterCenterX = this._cameraX + screenWidth / 2; + this._glitterCenterY = T - this._cameraY; + this._updateBackground(); + this._level.stepGroundAnimation(deltaTime / 1000); + this._level.updateGroundTiles(this._cameraY); + if (this._state.isFlying) { + this._player.updateShipRotation(quantizedDelta); + } + const playerScreenX = this._playerWorldX - this._cameraX; + this._player.syncSprites(this._cameraX, this._cameraY, deltaTime / 1000, this._getMirrorXOffset(playerScreenX)); + if (this._isDual && !this._state2.isDead) { + this._player2.syncSprites(this._cameraX, this._cameraY, deltaTime / 1000, this._getMirrorXOffset(playerScreenX)); + } + this._applyMirrorEffect(); + } + +_handleEditorCamera = (delta) => { + const camSpeed = 15; + const cursors = this.input.keyboard.createCursorKeys(); + const wasd = this.input.keyboard.addKeys('W,A,S,D'); + + if (cursors.left.isDown || wasd.A.isDown) { + this._cameraX -= camSpeed; + } else if (cursors.right.isDown || wasd.D.isDown) { + this._cameraX += camSpeed; + } + + if (cursors.up.isDown || wasd.W.isDown) { + this._cameraY -= camSpeed; + } else if (cursors.down.isDown || wasd.S.isDown) { + this._cameraY += camSpeed; + } + + this._level.container.x = -this._cameraX; + this._level.container.y = -this._cameraY; + this._level.additiveContainer.x = -this._cameraX; + this._level.additiveContainer.y = -this._cameraY; + this._level.topContainer.x = -this._cameraX; + this._level.topContainer.y = -this._cameraY; + + this._bg.tilePositionX = this._cameraX * 0.1; + this._bg.tilePositionY = this._bgInitY + this._cameraY * 0.1; +}; + +_initEditorLogic = () => { + if (this._editorGridGraphics) this._editorGridGraphics.destroy(); + this._editorGridGraphics = this.add.graphics().setDepth(5); +const allObj = window.allobjects(); +let maxId = 0; +for (const key in allObj) { + const num = parseInt(key, 10); + if (!isNaN(num) && num > maxId) maxId = num; +} +this._totalIds = maxId; + this._editorPage = 0; + this._maxPerPage = 12; + this._isSwipeEnabled = false; + this._lastSwipeGridX; + this._lastSwipeGridY; + this._clickStartPos = { x: 0, y: 0 }; + this._isDragging = false; + this._isDraggingSlider = false; + this._editorTab = "build"; + window.editorSelectedObject = -1; + this._editorZoom = 1.0; + this.input.on('pointerdown', (pointer) => { + this._clickStartPos.x = pointer.x; + this._clickStartPos.y = pointer.y; + this._cameraStartX = this._cameraX; + this._cameraStartY = this._cameraY; + this._isDragging = false; + }); + this.input.on('pointerup', (pointer) => { + if (!this._isSwipeEnabled && !this._isDragging && !this._isDraggingSlider && this._hitObjects.length === 0) { + this._editorAction(); + } + this._lastSwipeGridX = -1; + this._lastSwipeGridY = -1; + this._isDragging = false; + this._isDraggingSlider = false; + }); + this._createEditorGui(); +}; + +_createEditorGui = () => { + const centerX = screenWidth / 2; + const bottomY = screenHeight - 100; + + this._editorGui = this.add.container(screenWidth - 40, 40).setScrollFactor(0).setDepth(1000); + const editorPause = this.add.image(0, 0, "GJ_GameSheet03", "GJ_pauseBtn_001.png").setInteractive().setFlipX(true).setAngle(-90); + this._deleteButton = this.add.image(50, 40, "GJ_GameSheet03", "GJ_trashBtn_001.png").setInteractive(); + this._editorGui.add(editorPause, this._deleteButton); + this._makeBouncyButton(editorPause, 1.0, () => this._showEditorPauseMenu(true), () => true); + this._makeBouncyButton(this._deleteButton, 0.9, () => this._deleteSelectedObject(), () => true); + this._initEditorPauseMenu(); + + this._toolbox = this.add.container(0, 0).setScrollFactor(0).setDepth(1000); + + const bg = this.add.rectangle(0, screenHeight, screenWidth, 200, 0x000000).setOrigin(0, 1).setAlpha(0.75).setInteractive(); + this._toolbox.add(bg); + + this._leftArrow = this.add.image(screenWidth / 2 - 330, screenHeight - 100, "GJ_GameSheet03", "GJ_arrow_02_001.png") + .setInteractive().setScale(0.7); + + this._rightArrow = this.add.image(screenWidth / 2 + 330, screenHeight - 100, "GJ_GameSheet03", "GJ_arrow_02_001.png") + .setInteractive().setScale(0.7).setFlipX(true); + + this._toolbox.add([this._leftArrow, this._rightArrow]); + + const swipeX = centerX + 450; + const swipeY = screenHeight - 100; + + this._swipeContainer = this.add.container(swipeX, swipeY).setDepth(1001); + this._toolbox.add(this._swipeContainer); + + this._swipeBg = this.add.image(0, 0, "GJ_button01").setInteractive().setScale(0.8); + this._swipeText = this.add.bitmapText(-1, -2, "bigFont", "swipe", 16).setOrigin(0.5); + + this._swipeContainer.add([this._swipeBg, this._swipeText]); + + this._makeBouncyButton(this._swipeBg, 0.8, () => { + this._isSwipeEnabled = !this._isSwipeEnabled; + + if (this._isSwipeEnabled) { + this._swipeBg.setTexture("GJ_button02"); + } else { + this._swipeBg.setTexture("GJ_button01"); + } + }); + + const tabX = (screenWidth / 2) - 475; + const tabYStart = screenHeight - 150; + const tabSpacing = 55; + + this._separatorLeft = this.add.image(tabX + 100, screenHeight - 100, "GJ_GameSheet03", "edit_vLine_001.png"); + this._toolbox.add(this._separatorLeft); + + this._separatorRight = this.add.image(centerX + 375, screenHeight - 100, "GJ_GameSheet03", "edit_vLine_001.png"); + this._toolbox.add(this._separatorRight); + + const tabs = [ + { id: "build", frame: "edit_buildBtn_001.png" }, + { id: "edit", frame: "edit_editBtn_001.png" }, + { id: "delete", frame: "edit_deleteBtn_001.png" } + ]; + + this._tabButtons = {}; + tabs.forEach((tab, i) => { + const btn = this.add.image(tabX, tabYStart + (i * tabSpacing), "GJ_GameSheet03", tab.frame).setInteractive(); + this._toolbox.add(btn); + this._tabButtons[tab.id] = btn; + this._makeBouncyButton(btn, 1, () => { + this._editorTab = tab.id; + this._editorPage = 0; + this._updateTabVisuals(); + this._buildObjectGrid(); + }); + }); + + this._sideButtons = this.add.container(screenWidth - 48, 120).setScrollFactor(0).setDepth(1000); + this._copyPasteBtn = this.add.image(0, 0, "GJ_GameSheet03", "GJ_duplicateObjectBtn2_001.png").setInteractive().setAngle(90).setFlipY(true).setScale(1); + this._deselectBtn = this.add.image(0, 75, "GJ_GameSheet03", "GJ_deSelBtn2_001.png").setInteractive().setAngle(90).setFlipY(true).setScale(1); + + this._sideButtons.add([this._copyPasteBtn, this._deselectBtn]); + + this._makeBouncyButton(this._copyPasteBtn, 1, () => { + this._duplicateSelectedObject(); + }); + + this._makeBouncyButton(this._deselectBtn, 1, () => { + this._clearEditorSelection(); + }); + + this._zoomButtons = this.add.container(48, screenHeight / 2 - 20).setScrollFactor(0).setDepth(1000); + + const zoomInBtn = this.add.image(0, 0, "GJ_GameSheet03", "GJ_zoomInBtn_001.png").setAngle(90).setFlipY(true).setInteractive().setScale(0.9); + const zoomOutBtn = this.add.image(0, 75, "GJ_GameSheet03", "GJ_zoomOutBtn_001.png").setAngle(90).setFlipY(true).setInteractive().setScale(0.9); + + this._zoomButtons.add([zoomInBtn, zoomOutBtn]); + + this._makeBouncyButton(zoomInBtn, 0.9, () => this._adjustZoom(0.1)); + this._makeBouncyButton(zoomOutBtn, 0.9, () => this._adjustZoom(-0.1)); + + this._zoomText = this.add.bitmapText(screenWidth / 2, 80, "bigFont", "Zoom: 1.00x", 40).setOrigin(0.5).setScrollFactor(0).setDepth(2000).setAlpha(0); + + this.input.on('wheel', (pointer, gameObjects, deltaX, deltaY, deltaZ) => { + const zoomAmount = deltaY > 0 ? -0.1 : 0.1; + this._adjustZoom(zoomAmount, pointer.x, pointer.y); + }); + + this._updateEditorActionButtons(); + this._updateTabVisuals(); + this._buildObjectGrid(); + this._initEditorTimeline(); +}; + +_adjustZoom = (delta, anchorX = screenWidth / 2, anchorY = screenHeight / 2) => { + const oldZoom = this._editorZoom; + let newZoom = oldZoom + delta; + newZoom = Phaser.Math.Clamp(newZoom, 0.1, 4.0); + if (oldZoom === newZoom) return; + const worldAnchorX = (this._cameraX + anchorX) / oldZoom; + const worldAnchorY = (this._cameraY + anchorY) / oldZoom; + this._editorZoom = newZoom; + this._level.topContainer.setScale(newZoom); + this._level.additiveContainer.setScale(newZoom); + this._level.container.setScale(newZoom); + this._cameraX = (worldAnchorX * newZoom) - anchorX; + this._cameraY = (worldAnchorY * newZoom) - anchorY; + this._updateEditorGrid(); + this._zoomText.setText(`Zoom: ${newZoom.toFixed(2)}x`); + this._zoomText.setAlpha(1); + this.tweens.killTweensOf(this._zoomText); + this.tweens.add({ + targets: this._zoomText, + alpha: 0, + duration: 500, + delay: 500, + ease: 'Power1' + }); +}; + +_updateTabVisuals = () => { + Object.keys(this._tabButtons).forEach(id => { + const isSelected = this._editorTab === id; + const btn = this._tabButtons[id]; + let frameName = btn.frame.name.replace("SBtn", "Btn"); + if (isSelected) { + frameName = frameName.replace("Btn", "SBtn"); + } + btn.setFrame(frameName); + }); +}; + +_getSheetForFrameThingy = (frameName) => { + const sheets = ["GJ_WebSheet", "GJ_GameSheet", "GJ_GameSheet02", "GJ_GameSheet03", "GJ_GameSheet04"]; + for (const key of sheets) { + if (this.textures.exists(key) && this.textures.get(key).has(frameName)) { + return key; + } + } +}; + +_buildObjectGrid = () => { + if (this._gridContainer) this._gridContainer.destroy(); + if (this._pageDotsContainer) this._pageDotsContainer.destroy(); + if (this._categoryContainer) this._categoryContainer.destroy(); + + const OBJECT_CATEGORIES = [ + { id: "blocks", icon: "tab1", types: ["solid", "slope"] }, + { id: "hazards", icon: "tab2", types: ["hazard", "spike"] }, + { id: "orbs", icon: "tab3", types: ["ring", "pad", "portal", "speed"] }, + { id: "deco", icon: "tab4", types: ["deco"] }, + { id: "triggers",icon: "tab5", types: ["trigger"] }, + ]; + + this._gridContainer = this.add.container(0, 0); + this._toolbox.add(this._gridContainer); + + const allObjectsData = window.allobjects(); + const itemsForGrid = []; + this._currentBuildCategory = this._currentBuildCategory || "blocks"; + + if (this._editorTab === "build") { + this._categoryContainer = this.add.container(screenWidth / 2, screenHeight - 218); + this._toolbox.add(this._categoryContainer); + const catSpacing = 85; + const catStartX = -((OBJECT_CATEGORIES.length - 1) * catSpacing) / 2; + OBJECT_CATEGORIES.forEach((cat, i) => { + const isSelected = this._currentBuildCategory === cat.id; + const btn = this.add.image(catStartX + (i * catSpacing), 0, cat.icon).setInteractive().setScale(0.12).setTint(isSelected ? 0x888888 : 0xffffff).setAlpha(isSelected ? 1 : 0.33); + this._categoryContainer.add(btn); + this._makeBouncyButton(btn, 0.12, () => { + this._currentBuildCategory = cat.id; + this._editorPage = 0; + this._buildObjectGrid(); + }); + }); + const activeCatDef = OBJECT_CATEGORIES.find(c => c.id === this._currentBuildCategory); + for (let i = 1; i <= this._totalIds; i++) { + const def = getObjectFromId(i); + const rawDef = allObjectsData[String(i)]; + + if (def && rawDef) { + if (activeCatDef.types.includes(rawDef.type)) { + itemsForGrid.push({ type: "object", id: i, frame: def.frame }); + } + } + } + } else if (this._editorTab === "edit") { + const moveActions = [ + { dx: 0, dy: -3, icon: "edit_upBtn_001.png", angle: 0, scale: 1, flipX: false }, + { dx: 0, dy: 3, icon: "edit_upBtn_001.png", angle: 180, scale: 1, flipX: false }, + { dx: -3, dy: 0, icon: "edit_upBtn_001.png", angle: 270, scale: 1, flipX: false }, + { dx: 3, dy: 0, icon: "edit_upBtn_001.png", angle: 90, scale: 1, flipX: false }, + + { dx: 0, dy: -60, icon: "edit_upBtn2_001.png", angle: 90, scale: 1, flipX: false }, + { dx: 0, dy: 60, icon: "edit_upBtn2_001.png", angle: 270, scale: 1, flipX: false }, + { dx: -60, dy: 0, icon: "edit_upBtn2_001.png", angle: 0, scale: 1, flipX: false }, + { dx: 60, dy: 0, icon: "edit_upBtn2_001.png", angle: 180, scale: 1, flipX: false }, + + { dx: 0, dy: -300, icon: "edit_upBtn3_001.png", angle: 90, scale: 1, flipX: false }, + { dx: 0, dy: 300, icon: "edit_upBtn3_001.png", angle: 270, scale: 1, flipX: false }, + { dx: -300, dy: 0, icon: "edit_upBtn3_001.png", angle: 0, scale: 1, flipX: false }, + { dx: 300, dy: 0, icon: "edit_upBtn3_001.png", angle: 180, scale: 1, flipX: false }, + + { dx: 0, dy: -1, icon: "edit_upBtn_001.png", angle: 0, scale: 0.7, flipX: false }, + { dx: 0, dy: 1, icon: "edit_upBtn_001.png", angle: 180, scale: 0.7, flipX: false }, + { dx: -1, dy: 0, icon: "edit_upBtn_001.png", angle: 270, scale: 0.7, flipX: false }, + { dx: 1, dy: 0, icon: "edit_upBtn_001.png", angle: 90, scale: 0.7, flipX: false }, + + { dx: 0, dy: -30, icon: "edit_upBtn5_001.png", angle: 0, scale: 1, flipX: false }, + { dx: 0, dy: 30, icon: "edit_upBtn5_001.png", angle: 180, scale: 1, flipX: false }, + { dx: -30, dy: 0, icon: "edit_upBtn5_001.png", angle: 270, scale: 1, flipX: false }, + { dx: 30, dy: 0, icon: "edit_upBtn5_001.png", angle: 90, scale: 1, flipX: false } + ]; + moveActions.forEach(a => itemsForGrid.push({ type: "action", subType: "move", ...a })); + + const flipActions = [ + { axis: "x", icon: "edit_flipYBtn_001.png", angle: 90, scale: 0.8, flipX: false }, + { axis: "y", icon: "edit_flipXBtn_001.png", angle: 90, scale: 0.8, flipX: false } + ]; + flipActions.forEach(a => itemsForGrid.push({ type: "action", subType: "flip", ...a })); + + const rotateActions = [ + { degrees: 90, icon: "edit_ccwBtn_001.png", angle: 0, scale: 0.8, flipX: true }, + { degrees: -90, icon: "edit_ccwBtn_001.png", angle: 0, scale: 0.8, flipX: false }, + { degrees: 45, icon: "edit_rotate45rBtn_001.png", angle: 0, scale: 0.85, flipX: false }, + { degrees: -45, icon: "edit_rotate45lBtn_001.png", angle: 0, scale: 0.85, flipX: false } + ]; + rotateActions.forEach(a => itemsForGrid.push({ type: "action", subType: "rotate", ...a })); + } else if (this._editorTab === "delete") { + itemsForGrid.push({ + type: "delete", + icon: "edit_delBtn_001.png" + }); + } + + if (this._editorTab === "build") { + window.totalPages = Math.ceil(itemsForGrid.length / this._maxPerPage); + } else if (this._editorTab === "edit") { + window.totalPages = 3; + } else if (this._editorTab === "delete"){ + window.totalPages = 1; + } + + if (this._editorPage >= window.totalPages) this._editorPage = 0; + + const showArrows = this._editorTab !== "delete"; + if (this._leftArrow) { + this._leftArrow.setVisible(showArrows); + this._leftArrow.disableInteractive(); + if (showArrows) this._leftArrow.setInteractive(); + } + if (this._rightArrow) { + this._rightArrow.setVisible(showArrows); + this._rightArrow.disableInteractive(); + if (showArrows) this._rightArrow.setInteractive(); + } + + if (showArrows) { + this._makeBouncyButton(this._leftArrow, 0.8, () => { + if (this._editorTab === "edit") { + this._editorPage = (this._editorPage > 0) ? this._editorPage - 1 : 2; + } else { + this._editorPage = (this._editorPage > 0) ? this._editorPage - 1 : window.totalPages - 1; + } + + this._buildObjectGrid(); + }); + + this._makeBouncyButton(this._rightArrow, 0.8, () => { + this._editorPage = (this._editorPage < window.totalPages - 1) ? this._editorPage + 1 : 0; + this._buildObjectGrid(); + }); + } + + if (this._editorTab !== "delete") { + this._pageDotsContainer = this.add.container(0, 0); + this._toolbox.add(this._pageDotsContainer); + + const dotSpacing = 18; + const dotsStartX = (screenWidth / 2) - ((window.totalPages - 1) * dotSpacing) / 2; + const dotsY = screenHeight - 10; + + for (let i = 0; i < window.totalPages; i++) { + const dot = this.add.circle( + dotsStartX + (i * dotSpacing), + dotsY, + 4, + i === this._editorPage ? 0xffffff : 0x888888 + ); + if (i === this._editorPage) { + dot.setStrokeStyle(1, 0xffffff, 0.5); + } + this._pageDotsContainer.add(dot); + } + } + + const startIdx = this._editorPage * this._maxPerPage; + const pageItems = this._editorTab === "delete" + ? itemsForGrid + : itemsForGrid.slice(startIdx, startIdx + this._maxPerPage); + + const paddingX = 90; + const paddingY = 80; + const cols = 6; + const startX = (screenWidth / 2) - ((cols - 1) * paddingX) / 2; + const startY = screenHeight - 140; + + pageItems.forEach((item, index) => { + const col = index % cols; + const row = Math.floor(index / cols); + + const x = startX + (col * paddingX); + const y = startY + (row * paddingY); + + if (item.type === "object") { + const btnBg = this.add.image(x, y, "GJ_GameSheet03", "GJ_checkOff_001.png") + .setScale(1.2) + .setInteractive(); + + const sheet = this._getSheetForFrameThingy(item.frame); + const icon = this.add.image(x, y, sheet, item.frame); + + const targetSize = 64; + const maxDim = Math.max(icon.width, icon.height); + const scaleMultiplier = targetSize / maxDim; + + icon.setScale(Math.min(scaleMultiplier, 0.6)); + + if (window.selectedObjId === item.id) btnBg.setTint(0x888888); + + this._gridContainer.add([btnBg, icon]); + + this._makeBouncyButton(btnBg, 1.2, () => { + window.selectedObjId = item.id; + this._buildObjectGrid(); + }); + } else if (item.type === "action") { + const btn = this.add.image(x, y, "GJ_button01") + .setInteractive() + .setScale(0.92); + + const icon = this.add.image(x, y, "GJ_GameSheet03", item.icon) + .setAngle(item.angle) + .setScale(item.scale) + .setFlipX(item.flipX); + + this._gridContainer.add([btn, icon]); + + this._makeBouncyButton(btn, 0.92, () => { + if (item.subType === "move") { + this._moveObject(item.dx, item.dy); + } else if (item.subType === "rotate") { + this._rotateObject(item.degrees); + } else if (item.subType === "flip") { + this._flipObject(item.axis); + } + }); + } else if (item.type === "delete") { + const btnBg = this.add.image(x, y, "GJ_GameSheet03", "GJ_checkOff_001.png").setScale(1.2).setInteractive(); + + const icon = this.add.image(x, y, "GJ_GameSheet03", item.icon); + + this._deleteGridButton = btnBg; + + this._gridContainer.add([btnBg, icon]); + + this._makeBouncyButton(btnBg, 1.2, () => { + this._deleteSelectedObject(); + }); + + this._updateEditorActionButtons(); + } + }); +}; + +_moveObject = (dx, dy) => { + const selectedIndex = window.editorSelectedObject; + if (selectedIndex === -1) return; + + const collider = this._level.objects[selectedIndex]; + const sprites = this._level.objectSprites[selectedIndex]; + const saveObj = window.levelObjects[selectedIndex]; + + if (!saveObj) return; + + if (collider) { + collider.x += dx; collider.y += dy; + collider._baseX += dx; collider._baseY += dy; + collider._origBaseX += dx; collider._origBaseY += dy; + } + + saveObj.x += dx / 2; saveObj.y -= dy / 2; + if (saveObj._raw) { + saveObj._raw["2"] = String(saveObj.x); + saveObj._raw["3"] = String(saveObj.y); + } + + if (sprites) { + for (const s of sprites) { + if (!s) continue; + s.x += dx; s.y += dy; + if (s._eeWorldX !== undefined) s._eeWorldX += dx; + if (s._eeBaseY !== undefined) s._eeBaseY += dy; + if (s._origWorldX !== undefined) s._origWorldX += dx; + if (s._origBaseY !== undefined) s._origBaseY += dy; + } + } +}; + +_rotateObject = (degrees) => { + const selectedIndex = window.editorSelectedObject; + if (selectedIndex === -1) return; + + const collider = this._level.objects[selectedIndex]; + const sprites = this._level.objectSprites[selectedIndex]; + const saveObj = window.levelObjects[selectedIndex]; + + if (!saveObj) return; + + saveObj.rot = (saveObj.rot || 0) + degrees; + + if (saveObj._raw) { + saveObj._raw["6"] = String(saveObj.rot); + } + + if (collider) { + collider.rotation = saveObj.rot; + } + + if (sprites) { + for (const s of sprites) { + if (!s) continue; + s.angle += degrees; + } + } +}; + +_flipObject = (axis) => { + const selectedIndex = window.editorSelectedObject; + if (selectedIndex === -1) return; + + const sprites = this._level.objectSprites[selectedIndex]; + const saveObj = window.levelObjects[selectedIndex]; + + if (!saveObj) return; + + if (axis === "x") { + saveObj.flipX = !saveObj.flipX; + if (saveObj._raw) saveObj._raw["4"] = saveObj.flipX ? "1" : "0"; + + if (sprites) { + for (const s of sprites) { + if (!s) continue; + s.setFlipX(!s.flipX); + s.angle = -s.angle; + } + } + } else { + saveObj.flipY = !saveObj.flipY; + if (saveObj._raw) saveObj._raw["5"] = saveObj.flipY ? "1" : "0"; + + if (sprites) { + for (const s of sprites) { + if (!s) continue; + s.setFlipY(!s.flipY); + s.angle = -s.angle; + } + } + } + saveObj.rot = -saveObj.rot; +}; + +_clearEditorSelection = () => { + if (this._currentSelectedSprites) { + for (const spr of this._currentSelectedSprites) { + if (!spr) continue; + + if (spr._editorPrevTint !== undefined && spr._editorPrevTint !== null) { + spr.setTint(spr._editorPrevTint); + } else { + spr.clearTint(); + } + + delete spr._editorPrevTint; + } + } + + this._currentSelectedSprites = []; + this._currentSelectedSprite = null; + window.editorSelectedObject = -1; + this._updateEditorActionButtons(); +}; + +_selectEditorObjectByIndex = (index) => { + this._clearEditorSelection(); + + const linkedSprites = this._level.objectSprites[index]; + if (!linkedSprites || !linkedSprites.length) return; + + for (const spr of linkedSprites) { + if (!spr) continue; + + if (spr._editorPrevTint === undefined) { + spr._editorPrevTint = + spr.tintTopLeft !== undefined + ? spr.tintTopLeft + : null; + } + + spr.setTint(0x00ff00); + this._currentSelectedSprites.push(spr); + } + + this._currentSelectedSprite = linkedSprites[0]; + window.editorSelectedObject = index; + this._updateEditorActionButtons(); +}; + +_duplicateSelectedObject = () => { + const selectedIndex = window.editorSelectedObject; + if (selectedIndex === -1) return; + + const src = window.levelObjects[selectedIndex]; + if (!src) return; + + const clone = JSON.parse(JSON.stringify(src)); + + window.levelObjects.push(clone); + this._level._spawnObject(clone); + + const newIndex = this._level.objects.length - 1; + const newestSprites = this._level.objectSprites[newIndex]; + + if (newestSprites && newestSprites.length) { + const depthBase = { + "-3": -6, + "-1": -3, + 0: 0, + 1: 3, + 3: 6, + 5: 9 + }; + + const finalDepth = + (depthBase[clone.zLayer] || 0) + + (clone.zOrder * 0.01); + + for (const spr of newestSprites) { + if (!spr) continue; + + spr.setDepth((spr._eeZDepth || finalDepth) + 10); + + if (this._level.container && !this._level.container.exists(spr)) { + this._level.container.add(spr); + } + } + } + + this._selectEditorObjectByIndex(newIndex); + this._buildObjectGrid(); +}; + +_deleteSelectedObject = () => { + const selectedIndex = window.editorSelectedObject; + if (selectedIndex === -1) return; + + this._clearEditorSelection(); + + const sprites = this._level.objectSprites[selectedIndex] || []; + for (const spr of sprites) { + if (spr && spr.destroy) spr.destroy(); + } + + const collider = this._level.objects[selectedIndex]; + if (collider && collider.destroy) collider.destroy(); + + this._level.objectSprites.splice(selectedIndex, 1); + this._level.objects.splice(selectedIndex, 1); + window.levelObjects.splice(selectedIndex, 1); + + for (let i = selectedIndex; i < this._level.objectSprites.length; i++) { + const list = this._level.objectSprites[i]; + if (!list || !list.length) continue; + + for (const spr of list) { + if (spr) spr._eeObjectId = i; + } + } + + this._buildObjectGrid(); + this._updateEditorActionButtons(); +}; + +_updateEditorActionButtons = () => { + const hasSelection = window.editorSelectedObject !== -1; + const alpha = hasSelection ? 1 : 0.5; + + if (this._copyPasteBtn) { + this._copyPasteBtn.setAlpha(alpha); + + if (hasSelection) { + this._copyPasteBtn.setInteractive(); + } else { + this._copyPasteBtn.disableInteractive(); + } + } + + if (this._deselectBtn) { + this._deselectBtn.setAlpha(alpha); + + if (hasSelection) { + this._deselectBtn.setInteractive(); + } else { + this._deselectBtn.disableInteractive(); + } + } + + if (this._deleteButton) { + this._deleteButton.setAlpha(alpha); + + if (hasSelection) { + this._deleteButton.setInteractive(); + } else { + this._deleteButton.disableInteractive(); + } + } + + if (this._editorTab == "delete") { + this._deleteGridButton.setAlpha(alpha); + + if (hasSelection) { + this._deleteGridButton.setInteractive(); + } else { + this._deleteGridButton.disableInteractive(); + } + } +}; + +_updateEditorGrid = () => { + if (!this._editorGridGraphics) return; + const g = this._editorGridGraphics; + g.clear(); + const zoom = this._editorZoom || 1.0; + const gridSize = 60; + g.lineStyle(1, 0x000000, 0.4); + + const camX = this._cameraX / zoom; + const camY = this._cameraY / zoom; + const offsetX = -camX % gridSize; + const offsetY = (-camY - 20) % gridSize; + for (let x = offsetX; x < screenWidth / zoom + gridSize; x += gridSize) { + g.lineBetween(x * zoom, 0, x * zoom, screenHeight); + } + for (let y = offsetY; y < screenHeight / zoom + gridSize; y += gridSize) { + g.lineBetween(0, y * zoom, screenWidth, y * zoom); + } + g.lineStyle(1, 0xffffff, 1); + + const startLineX = (0 * zoom) - this._cameraX; + if (startLineX >= -50 && startLineX <= screenWidth + 50) { + g.lineBetween(startLineX, 0, startLineX, screenHeight); + } + const worldGroundY = -20 + (60 * 8); + const groundLineY = (worldGroundY * zoom) - this._cameraY; + if (groundLineY >= -50 && groundLineY <= screenHeight + 50) { + g.lineBetween(0, groundLineY, screenWidth, groundLineY); + } +}; + +_editorAction = () => { + if (this._editorTab === "build") { + this._placeObject(); + } else if (this._editorTab === "edit") { + this._selectObjectAtPointer(); + } else if (this._editorTab === "delete") { + this._deleteObjectAtPointer(); + } +} + +_placeObject = () => { + const pointer = this.input.activePointer; + + const worldX = (this.input.activePointer.x + this._cameraX) / this._editorZoom; + const worldY = (this.input.activePointer.y + this._cameraY) / this._editorZoom; + + const snapX = Math.floor(worldX / 60) * 60; + const snapY = Math.floor((worldY + 20) / 60) * 60; + + const transformedX = (snapX / 2) + 15; + const transformedY = -(snapY / 2) + 225; + + const objId = window.selectedObjId; + const objectDef = getObjectFromId(objId); + + if (!objectDef) return; + + const saveData = { + id: objId, + x: transformedX, + y: transformedY, + flipX: false, + flipY: false, + rot: 0, + scale: 1, + zLayer: objectDef.default_z_layer || 0, + zOrder: objectDef.default_z_order || 0, + groups: "", + color1: 0, + color2: 0, + gameMode: 0, + miniMode: 0, + speed: 0, + mirrored: 0, + flipGravity: false, + _raw: { + "1": String(objId), + "2": String(transformedX), + "3": String(transformedY), + "4": "0", + "5": "0", + "6": "0", + "21": "0", + "22": "0", + "24": String(objectDef.default_z_layer || 0), + "25": String(objectDef.default_z_order || 0), + "32": "1", + "57": "", + "kA2": "0", + "kA3": "0", + "kA4": "0", + "kA28": "0", + "kA11": "0" + } + }; + + window.levelObjects.push(saveData); + this._level._spawnObject(saveData); + + // teleport portal pairing + if (objId === 747) { + const outData = JSON.parse(JSON.stringify(saveData)); + outData.id = 749; + outData._raw["1"] = "749"; + window.levelObjects.push(outData); + this._level._spawnObject(outData); + const outIndex = this._level.objectSprites.length - 1; + this._selectEditorObjectByIndex(outIndex); + } + + const placedIndex = this._level.objectSprites.length - 1; + const newestSprites = this._level.objectSprites[placedIndex]; + + if (newestSprites && newestSprites.sprites) { + const depthBase = { + "-3": -6, + "-1": -3, + 0: 0, + 1: 3, + 3: 6, + 5: 9 + }; + + const finalDepth = + (depthBase[saveData.zLayer] || 0) + + (saveData.zOrder * 0.01); + + for (const spr of newestSprites.sprites) { + if (!spr) continue; + + spr.setDepth((spr._eeZDepth || finalDepth) + 10); + + if (spr._eeLayer === 2) { + if (this._level.topContainer && !this._level.topContainer.exists(spr)) { + this._level.topContainer.add(spr); + } + } else { + if (this._level.container && !this._level.container.exists(spr)) { + this._level.container.add(spr); + } + } + } + } + + if (this._currentSelectedSprites) { + for (const spr of this._currentSelectedSprites) { + if (!spr) continue; + + if (spr._editorPrevTint !== undefined && spr._editorPrevTint !== null) { + spr.setTint(spr._editorPrevTint); + } else { + spr.clearTint(); + } + + delete spr._editorPrevTint; + } + } + + this._currentSelectedSprites = []; + if (newestSprites && newestSprites.length) { + for (const spr of newestSprites) { + if (!spr) continue; + + if (spr._editorPrevTint === undefined) { + spr._editorPrevTint = + spr.tintTopLeft !== undefined + ? spr.tintTopLeft + : null; + } + + spr.setTint(0x00ff00); + + this._currentSelectedSprites.push(spr); + } + + this._currentSelectedSprite = newestSprites[0]; + window.editorSelectedObject = placedIndex; + } + this._updateEditorActionButtons(); +}; + +_selectObjectAtPointer = () => { + const pointer = this.input.activePointer; + + if (this._currentSelectedSprites) { + for (const spr of this._currentSelectedSprites) { + if (!spr) continue; + + if (spr._editorPrevTint !== undefined && spr._editorPrevTint !== null) { + spr.setTint(spr._editorPrevTint); + } else { + spr.clearTint(); + } + + delete spr._editorPrevTint; + } + } + + this._currentSelectedSprites = []; + this._currentSelectedSprite = null; + window.editorSelectedObject = -1; + + let foundObjectIndex = -1; + + for (let i = this._level.objectSprites.length - 1; i >= 0; i--) { + const spriteList = this._level.objectSprites[i]; + + if (!spriteList || !spriteList.length) continue; + + for (let j = spriteList.length - 1; j >= 0; j--) { + const spr = spriteList[j]; + + if (!spr || !spr.active || !spr.visible) continue; + + const bounds = spr.getBounds(); + + if (bounds.contains(pointer.x, pointer.y)) { + foundObjectIndex = i; + break; + } + } + + if (foundObjectIndex !== -1) { + break; + } + } + + if (foundObjectIndex === -1) { + return; + } + const linkedSprites = this._level.objectSprites[foundObjectIndex]; + if (!linkedSprites || !linkedSprites.length) { + return; + } + for (const spr of linkedSprites) { + if (!spr) continue; + if (spr._editorPrevTint === undefined) { + spr._editorPrevTint = + spr.tintTopLeft !== undefined + ? spr.tintTopLeft + : null; + } + spr.setTint(0x00ff00); + this._currentSelectedSprites.push(spr); + } + + this._currentSelectedSprite = linkedSprites[0]; + window.editorSelectedObject = foundObjectIndex; + this._updateEditorActionButtons(); +}; + +_deleteObjectAtPointer = () => { + const pointer = this.input.activePointer; + + let foundObjectIndex = -1; + + for (let i = this._level.objectSprites.length - 1; i >= 0; i--) { + const spriteList = this._level.objectSprites[i]; + if (!spriteList || !spriteList.length) continue; + + for (let j = spriteList.length - 1; j >= 0; j--) { + const spr = spriteList[j]; + if (!spr || !spr.active || !spr.visible) continue; + + const bounds = spr.getBounds(); + if (bounds.contains(pointer.x, pointer.y)) { + foundObjectIndex = i; + break; + } + } + + if (foundObjectIndex !== -1) break; + } + + if (foundObjectIndex === -1) return; + + if (window.editorSelectedObject === foundObjectIndex) { + this._clearEditorSelection(); + } + + const linkedSprites = this._level.objectSprites[foundObjectIndex]; + const collider = this._level.objects[foundObjectIndex]; + + if (linkedSprites && linkedSprites.length) { + for (const spr of linkedSprites) { + if (spr && spr.destroy) spr.destroy(); + } + } + + if (collider && collider.destroy) { + collider.destroy(); + } + + this._level.objectSprites.splice(foundObjectIndex, 1); + this._level.objects.splice(foundObjectIndex, 1); + window.levelObjects.splice(foundObjectIndex, 1); + + for (let i = foundObjectIndex; i < this._level.objectSprites.length; i++) { + const list = this._level.objectSprites[i]; + if (!list || !list.length) continue; + + for (const spr of list) { + if (spr) spr._eeObjectId = i; + } + } + + window.editorSelectedObject = -1; + this._updateEditorActionButtons(); +}; + +_initEditorPauseMenu = () => { + this._editorMenuContainer = this.add.container(0, 0).setDepth(2000).setVisible(false); + + const bgDim = this.add.rectangle(0, 0, screenWidth, screenHeight, 0x000000, 0.6) + .setOrigin(0) + .setInteractive(); + this._editorMenuContainer.add(bgDim); + + const buttonData = [ + { text: "Resume", cb: () => this._showEditorPauseMenu(false) }, + { + text: "Save and Play", + cb: async () => { + this._saveEditorLevel(); + await this._showLoadingBuffer("Loading..."); + window.isEditor = false; + this.game.registry.set("autoStartGame", true); + this.scene.restart(); + } + }, + { + text: "Save and Exit", + cb: async () => { + this._saveEditorLevel(); + await this._showLoadingBuffer("Loading..."); + window.isEditor = false; + this.scene.restart(); + } + }, + { text: "Save", cb: () => this._saveEditorLevel() }, + { text: "Exit", cb: () => { window.isEditor = false; this.scene.restart(); } } + ]; + + buttonData.forEach((data, i) => { + const x = screenWidth / 2; + const y = (screenHeight / 2) - 150 + (i * 70); + + const btnImg = this.add.nineslice(x, y, "GJ_button01", null, 450, 65, 24, 24, 24, 24 ).setScale(0.75).setInteractive(); + const label = this.add.bitmapText(x, y - 2, "goldFont", data.text, 40).setOrigin(0.5, 0.5).setScale(0.8); + + this._editorMenuContainer.add([btnImg, label]); + + this._makeBouncyButton(btnImg, 0.75, () => { + data.cb(); + }, () => true); + }); + + const createToggle = (container, x, y, label, getVal, setVal, callback = null) => { + const getTex = () => getVal() ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png"; + const check = this.add.image(x - 120, y, "GJ_GameSheet03", getTex()).setScale(0.8).setInteractive(); + const txt = this.add.bitmapText(x - 70, y, "bigFont", label, 25).setOrigin(0, 0.5); + container.add([check, txt]); + + this._makeBouncyButton(check, 0.8, () => { + setVal(!getVal()); + check.setTexture("GJ_GameSheet03", getTex()); + if (callback) callback(getVal()); + this._saveSettings(); + }); + }; + + createToggle(this._editorMenuContainer, 200, screenHeight - 60, "Show Glow", () => window.showEditorGlow, v => window.showEditorGlow = v,() => { + this._level._updateGlowVisibility(); + } +); +}; + +_showLoadingBuffer = (statusText) => { + return new Promise((resolve) => { + const overlay = this.add.graphics().setDepth(2000).setScrollFactor(0); + overlay.fillStyle(0x000000, 1); + overlay.fillRect(0, 0, screenWidth, screenHeight); + + const loadingText = this.add.bitmapText( + screenWidth - 40, + screenHeight - 20, + "bigFont", + statusText, + 50 + ).setOrigin(1).setDepth(2001).setScrollFactor(0); + + setTimeout(() => { + resolve(); + }, 2500); + }); +}; + +_showEditorPauseMenu = (show) => { + this._editorMenuContainer.setVisible(show); + window.isEditorPaused = show; +}; + +_serializeLevel(levelData) { + const settings = levelData.settings || ""; + const objectStrings = (levelData.objects || []).map(this._serializeObject).filter(Boolean); + const decompressedString = [settings, ...objectStrings].join(";"); + const compressed = pako.gzip(decompressedString); + + let binaryString = ""; + for (let i = 0; i < compressed.length; i++) { + binaryString += String.fromCharCode(compressed[i]); + } + + let base64 = btoa(binaryString); + + return base64 + .replace(/\+/g, "-") + .replace(/\//g, "_") + .replace(/=+$/, ""); +} + +_serializeObject(object) { + if (!object || !object.id) { + return ""; + } + + let objectData = { ...(object._raw || {}) }; + + objectData[1] = String(object.id); + objectData[2] = String(object.x ?? 0); + objectData[3] = String(object.y ?? 0); + objectData[4] = object.flipX ? "1" : "0"; + objectData[5] = object.flipY ? "1" : "0"; + objectData[6] = String(object.rot ?? 0); + + objectData[32] = String(object.scale ?? 1); + + objectData[24] = String(object.zLayer ?? 0); + objectData[25] = String(object.zOrder ?? 0); + + objectData[57] = object.groups ?? ""; + + objectData[21] = String(object.color1 ?? 0); + objectData[22] = String(object.color2 ?? 0); + + objectData["kA2"] = String(object.gameMode ?? 0); + objectData["kA3"] = String(object.miniMode ?? 0); + objectData["kA4"] = String(object.speed ?? 0); + objectData["kA28"] = String(object.mirrored ?? 0); + objectData["kA11"] = object.flipGravity ? "1" : "0"; + + const parts = []; + + for (const key in objectData) { + if (objectData[key] === undefined) continue; + parts.push(key, String(objectData[key])); + } + + return parts.join(","); +} + +_saveEditorLevel = () => { + const levelData = { + objects: window.levelObjects, + settings: window.settingslist + } + const newLevelString = this._serializeLevel(levelData); + console.log(newLevelString); + + let createdLevels = JSON.parse(localStorage.getItem("created_levels") || "[]"); + let levelIndex = createdLevels.findIndex(l => l.createdId === window.currentlevel[2]); + + if (levelIndex !== -1) { + createdLevels[levelIndex].levelString = newLevelString; + createdLevels[levelIndex].lastModified = Date.now(); + + localStorage.setItem("created_levels", JSON.stringify(createdLevels)); + window._onlineLevelString = createdLevels[levelIndex].levelString; + window._onlineLevelName = createdLevels[levelIndex].levelName; + window._onlineLevelId = createdLevels[levelIndex].createdId; + } +}; + +_initEditorTimeline = () => { + const y = 40; + this._timelineContainer = this.add.container(0, 0).setScrollFactor(0).setDepth(1500); + const width = screenWidth / 3; + const groove = this.add.image(screenWidth / 2, y, "slidergroove2").setDisplaySize(width, 26); + const thumb = this.add.image(screenWidth / 2, y, "GJ_moveBtn").setScale(0.4).setInteractive({ draggable: true }); + this._timelineContainer.add([groove, thumb]); + this._timelineSlider = {width, groove, thumb, y }; + const startX = screenWidth / 2 - (width / 2); + thumb.on("dragstart", () => { + this._isDraggingSlider = true; + thumb.setTexture("GJ_moveSBtn"); + }); + thumb.on("drag", (pointer, dragX) => { + const minX = startX; + const maxX = startX + width; + thumb.x = Phaser.Math.Clamp(dragX, minX, maxX); + const pct = (thumb.x - minX) / width; + const levelWidth = this._getEditorLevelWidth(); + this._cameraX = pct * levelWidth; + this._level.container.x = -this._cameraX; + this._level.container.y = -this._cameraY; + this._level.additiveContainer.x = -this._cameraX; + this._level.additiveContainer.y = -this._cameraY; + this._level.topContainer.x = -this._cameraX; + this._level.topContainer.y = -this._cameraY; + this._bg.tilePositionX = this._cameraX * 0.1; + }); + thumb.on("dragend", () => { + thumb.setTexture("GJ_moveBtn"); + }); +}; + +_getEditorLevelWidth = () => { + let furthestX = 0; + + for (const obj of window.levelObjects) { + if (!obj) continue; + + const worldX = (obj.x - 15) * 2; + + if (worldX > furthestX) { + furthestX = worldX; + } + } + + return Math.max(screenWidth, furthestX + screenWidth/2); +}; + +_updateEditorTimeline = () => { + if (!this._timelineSlider) return; + + const { + width, + thumb, + } = this._timelineSlider; + + const levelWidth = this._getEditorLevelWidth(); + + const pct = Phaser.Math.Clamp( + this._cameraX / levelWidth, + 0, + 1 + ); + + const startX = screenWidth / 2 - (width / 2); + + thumb.x = startX + (pct * width); +}; + +_applyMirrorEffect() { + const isMirrored = this._state.mirrored; + const containers = [this._level.additiveContainer, this._level.container, this._level.topContainer]; + if (isMirrored) { + for (const c of containers) { + c.scaleX = -1; + c.x = this._cameraX + screenWidth; + } + for (const tile of this._level._groundTiles) { + tile.x = screenWidth - tile.x - this._level._tileW; + tile.setFlipX(true); + } + for (const tile of this._level._ceilingTiles) { + tile.x = screenWidth - tile.x - this._level._tileW; + tile.setFlipX(true); + } + } else { + for (const c of containers) { + if (c.scaleX !== 1) c.scaleX = 1; + } + for (const tile of this._level._groundTiles) { + tile.setFlipX(false); + } + for (const tile of this._level._ceilingTiles) { + tile.setFlipX(false); + } + } + this._bg.setFlipX(isMirrored); + } + _getMirrorXOffset(xOffset) { + return this._state.mirrored ? screenWidth - xOffset : xOffset; + } + _enableDualMode() { + if (this._isDual) return; + this._isDual = true; + this._state2.reset(); + this._state2.y = this._state.y; + this._state2.yVelocity = 0; + this._state2.onGround = false; + this._state2.gravityFlipped = !this._state.gravityFlipped; + this._state2.isMini = this._state.isMini; + this._state2.mirrored = this._state.mirrored; + this._state2.isDead = false; + this._player2.reset(); + if (this._state.isFlying) { + this._player2.enterShipMode(); + } else if (this._state.isBall) { + this._player2.enterBallMode(); + } else if (this._state.isWave) { + this._player2.enterWaveMode(); + } else if (this._state.isUfo) { + this._player2.enterUfoMode(); + } else if (this._state.isSpider) { + this._player2.enterSpiderMode(); + } else { + this._player2.setCubeVisible(true); + } + this._state2.gravityFlipped = !this._state.gravityFlipped; + } + _disableDualMode() { + if (!this._isDual) return; + this._isDual = false; + this._state2.isDead = true; + this._player2.setCubeVisible(false); + this._player2.setShipVisible(false); + this._player2.setBallVisible(false); + this._player2.setWaveVisible(false); + } + _showNewBest() { + let _0x9f2437 = screenWidth / 2; + let _0x12bde3 = this.add.image(0, 0, "GJ_WebSheet", "GJ_newBest_001.png").setOrigin(0.5, 1); + let _0x544c9c = this.add.bitmapText(0, 2, "bigFont", this._lastPercent + "%", 65).setOrigin(0.5, 0).setScale(1.1); + let _0x326cb9 = this.add.container(_0x9f2437, 300, [_0x12bde3, _0x544c9c]).setScrollFactor(0).setDepth(60).setScale(0.01); + this.tweens.add({ + targets: _0x326cb9, + scale: 1, + duration: 400, + ease: "Elastic.Out", + easeParams: [1, 0.6], + onComplete: () => { + this.tweens.add({ + targets: _0x326cb9, + scale: 0.01, + duration: 200, + delay: 700, + ease: "Quad.In", + onComplete: () => { + _0x326cb9.setVisible(false); + _0x326cb9.destroy(); + } + }); + } + }); + } + + _triggerEndPortal() { + this._player.playEndAnimation(this._level.endXPos, () => this._levelComplete(), this._endPortalGameY); + } + _levelComplete() { + if (!this._practicedMode.practiceMode) { + this._bestPercent = 100; + localStorage.setItem("bestPercent_" + (window.currentlevel[2] || "level_1"), 100); + const completedKey = "gd_completedSet"; + let completedSet; + try { completedSet = JSON.parse(localStorage.getItem(completedKey) || "[]"); } catch(e) { completedSet = []; } + const levelId = window.currentlevel[2] || "level_1"; + if (!completedSet.includes(levelId)) { + completedSet.push(levelId); + localStorage.setItem(completedKey, JSON.stringify(completedSet)); + window._completedLevels = completedSet.length; + localStorage.setItem("gd_completedLevels", window._completedLevels); + } + } else { + this._practiceBestPercent = 100; + localStorage.setItem("practiceBestPercent_" + (window.currentlevel[2] || "level_1"), 100); + if (this._updatePracticeHUDBar) this._updatePracticeHUDBar(); + } + + const _0x356782 = this._level.endXPos - this._cameraX; + const _0x2d967b = b(this._endPortalGameY) + this._cameraY; + for (let _0x481f7c = 0; _0x481f7c < 5; _0x481f7c++) { + this.time.delayedCall(_0x481f7c * 50, () => circleEffect(this, _0x356782, _0x2d967b, 10, screenWidth, 500, false, true, window.mainColor)); + } + circleEffect(this, _0x356782, _0x2d967b, 10, 1000, 500, true, false, window.mainColor); + this._showCompleteEffect(); + } + _showCompleteEffect() { + this._audio.fadeOutMusic(1500); + this.sound.play("endStart_02", { + volume: 0.8 * this._sfxVolume + }); + (function (_0x3f5321, _0x8f5267, _0x2f1e2d, _0x4b5e5b) { + const _0x29d856 = 2; + const _0x1b2543 = 8; + const _0x2cc21f = _0x29d856 * 1; + const _0x26b2b1 = _0x29d856 * 30; + const _0x6f49c1 = _0x29d856 * 20; + const _0x232789 = Math.round(Math.sqrt(screenWidth ** 2 + 102400)) + _0x29d856 * 32.5; + const _0x1c105b = 180; + const _0x586720 = 40; + const _0x57b9ff = 195; + const _0x2b6612 = 40; + const _0x5ce50e = 40; + const _0x4da54f = 155 / 255; + const _0x20decf = 100 / 255; + const _0x576e6f = 400; + const _0x487fb1 = -135; + const _0x323ded = 90 / _0x1b2543; + const _0x44369e = Array.from({ + length: _0x1b2543 + }, (_0x18e51d, _0x59ebd4) => _0x487fb1 + _0x59ebd4 * _0x323ded); + for (let _0x59890f = _0x44369e.length - 1; _0x59890f > 0; _0x59890f--) { + const _0x2bf73b = Math.floor(Math.random() * (_0x59890f + 1)); + [_0x44369e[_0x59890f], _0x44369e[_0x2bf73b]] = [_0x44369e[_0x2bf73b], _0x44369e[_0x59890f]]; + } + let _0x594d69 = 0; + const _0x116c8c = []; + for (let _0x104cbb = 0; _0x104cbb < _0x1b2543; _0x104cbb++) { + const _0x1a79fc = _0x104cbb * _0x57b9ff + _0x2b6612 + _0x5ce50e * (Math.random() * 2 - 1); + const _0x6eb03a = _0x26b2b1 + _0x6f49c1 * (Math.random() * 2 - 1); + const _0x2e9531 = _0x1c105b + _0x586720 * (Math.random() * 2 - 1); + const _0x28e7b3 = Math.min(1, Math.max(0, _0x4da54f + _0x20decf * (Math.random() * 2 - 1))); + const _0x34147c = _0x44369e[_0x104cbb] + _0x323ded * Math.random() + 180; + const containerY = _0x3f5321.add.graphics().setScrollFactor(0).setDepth(-1).setBlendMode(S).setPosition(_0x8f5267, _0x2f1e2d).setAngle(_0x34147c).setAlpha(_0x28e7b3).setVisible(false); + const _0x496d96 = { + h: 1, + w: _0x2cc21f + }; + _0x3f5321.time.delayedCall(Math.max(0, _0x1a79fc), () => { + containerY.setVisible(true); + _0x3f5321.tweens.add({ + targets: _0x496d96, + h: _0x232789, + w: _0x6eb03a, + duration: _0x2e9531, + ease: "Quad.Out", + onUpdate: () => { + const _0x2db3d7 = _0x2cc21f + (_0x496d96.w - _0x2cc21f) / 4; + containerY.clear(); + containerY.fillStyle(_0x4b5e5b, 1); + containerY.beginPath(); + containerY.moveTo(-_0x2db3d7 / 2, 0); + containerY.lineTo(_0x2db3d7 / 2, 0); + containerY.lineTo(_0x496d96.w / 2, _0x496d96.h); + containerY.lineTo(-_0x496d96.w / 2, _0x496d96.h); + containerY.closePath(); + containerY.fillPath(); + } + }); + }); + if (_0x1a79fc > _0x594d69) { + _0x594d69 = _0x1a79fc; + } + _0x116c8c.push(containerY); + } + _0x3f5321.time.delayedCall(_0x594d69 + _0x576e6f, () => { + for (const _0x15b95e of _0x116c8c) { + const _0x51b5fc = Math.random() * 200; + const _0x3ed1de = 400 + (Math.random() * 2 - 1) * 100; + _0x3f5321.tweens.add({ + targets: _0x15b95e, + alpha: 0, + delay: _0x51b5fc, + duration: _0x3ed1de, + onComplete: () => _0x15b95e.destroy() + }); + } + }); + })(this, this._level.endXPos - this._cameraX + 60, b(this._endPortalGameY) + this._cameraY, window.mainColor); + this.cameras.main.shake(1950, 0.004); + this.time.delayedCall(1950, () => this._showCompleteText()); + } + _showCompleteText() { + const _0x56628c = screenWidth / 2; + const _0x45ab26 = this._practicedMode.practiceMode + ? this.add.image(_0x56628c, 250, "GJ_GameSheet03", "GJ_practiceComplete_001.png").setScrollFactor(0).setDepth(60).setScale(0.01) + : this.add.image(_0x56628c, 250, "GJ_WebSheet", "GJ_levelComplete_001.png").setScrollFactor(0).setDepth(60).setScale(0.01); + this.tweens.add({ + targets: _0x45ab26, + scale: 1.1, + duration: 660, + ease: "Elastic.Out", + easeParams: [1, 0.6], + onComplete: () => { + this.tweens.add({ + targets: _0x45ab26, + scale: 0.01, + duration: 220, + delay: 880, + ease: "Quad.In", + onComplete: () => { + _0x45ab26.setVisible(false); + _0x45ab26.destroy(); + } + }); + } + }); + const _0x2884ff = [window.mainColor, 16777215]; + for (let _0x5f16c8 = 0; _0x5f16c8 < 2; _0x5f16c8++) { + this.add.particles(_0x56628c, 250, "GJ_WebSheet", { + frame: "square.png", + speed: { + min: 300, + max: 700 + }, + angle: { + min: 0, + max: 360 + }, + scale: { + start: 0.4, + end: 0.13 + }, + lifespan: { + min: 0, + max: 1000 + }, + quantity: 50, + stopAfter: 200, + blendMode: S, + tint: _0x2884ff[_0x5f16c8], + x: { + min: -800, + max: 800 + }, + y: { + min: -80, + max: 80 + } + }).setScrollFactor(0).setDepth(59); + } + const _0x2eadf2 = this._level.endXPos - this._cameraX; + const _0x380b24 = b(this._endPortalGameY) + this._cameraY; + circleEffect(this, _0x2eadf2, _0x380b24, 10, screenWidth, 800, true, false, window.mainColor); + circleEffect(this, _0x56628c, 250, 10, 1000, 800, true, false, window.mainColor); + for (let _0x579e05 = 0; _0x579e05 < 5; _0x579e05++) { + this.time.delayedCall(_0x579e05 * 50, () => circleEffect(this, _0x2eadf2, _0x380b24, 10, screenWidth, 500, false, true, window.mainColor)); + } + for (let _0x429722 = 0; _0x429722 < 10; _0x429722++) { + const _0xbf7dd0 = _0x429722 * 150 + (Math.random() * 160 - 80); + this.time.delayedCall(Math.max(0, _0xbf7dd0), () => particleEffect(this, window.mainColor, window.secondaryColor)); + } + this.time.delayedCall(1500, () => this._showEndLayer()); + } + _showEndLayer() { + if (this._pauseBtn) { + this.tweens.add({ + targets: this._pauseBtn, + alpha: 0, + duration: 300 + }); + } + const containerX = screenWidth / 2; + const _0x1aa656 = 320; + this._endLayerOverlay = this.add.rectangle(containerX, _0x1aa656, screenWidth, screenHeight, 0, 0).setScrollFactor(0).setDepth(200).setInteractive(); + this._endLayerInternal = this.add.container(0, -640).setScrollFactor(0).setDepth(201); + this.tweens.add({ + targets: this._endLayerOverlay, + alpha: 100 / 255, + duration: 1000 + }); + const _0x59b9ab = { + p: 0 + }; + this.tweens.add({ + targets: _0x59b9ab, + p: 1, + duration: 1000, + ease: "Bounce.Out", + onUpdate: () => { + this._endLayerInternal.y = _0x59b9ab.p * 650 - 640; + }, + onComplete: () => this._playStarAward() + }); + const _0x595215 = 712; + const _0x950c8d = 460; + const _0x2a115c = (screenWidth - _0x595215) / 2; + this._endLayerInternal.add(this.add.rectangle(_0x2a115c + 356, 310, _0x595215, _0x950c8d, 0, 180 / 255)); + const _0x43f2e3 = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); + const _0x3feccc = _0x43f2e3 ? _0x950c8d / _0x43f2e3.height : 1; + this._endLayerInternal.add(this.add.image(_0x2a115c - 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(0, 0).setScale(1, _0x3feccc)); + this._endLayerInternal.add(this.add.image(_0x2a115c + _0x595215 + 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(1, 0).setFlipX(true).setScale(1, _0x3feccc)); + const _0x33b564 = this.add.image(_0x2a115c + 356, 70, "GJ_WebSheet", "GJ_table_top_001.png"); + this._endLayerInternal.add(_0x33b564); + this._endLayerInternal.add(this.add.image(_0x2a115c + 356, 560, "GJ_WebSheet", "GJ_table_bottom_001.png")); + const _0x3e9c79 = _0x33b564.y - 35; + this._endLayerInternal.add(this.add.image(containerX - 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); + this._endLayerInternal.add(this.add.image(containerX + 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); + const _completeBanner = this._practicedMode.practiceMode + ? this.add.image(containerX, 170, "GJ_GameSheet03", "GJ_practiceComplete_001.png").setScale(0.8) + : this.add.image(containerX, 170, "GJ_WebSheet", "GJ_levelComplete_001.png").setScale(0.8); + this._endLayerInternal.add(_completeBanner); + const _0x45b6e4 = 0.8; + let _0xe44f6d = 250; + const _0x2de55e = this.add.bitmapText(containerX, _0xe44f6d, "goldFont", "Attempts: " + this._levelAttempts, 40).setOrigin(0.5, 0.5).setScale(_0x45b6e4); + this._endLayerInternal.add(_0x2de55e); + _0xe44f6d += 48; + this._endLayerInternal.add(this.add.bitmapText(containerX, _0xe44f6d, "goldFont", "Jumps: " + this._levelJumps, 40).setOrigin(0.5, 0.5).setScale(_0x45b6e4)); + _0xe44f6d += 48; + const _0x596450 = Math.floor(this._playTime); + const _0x30687e = Math.floor(_0x596450 / 3600); + const _0x52f8ee = Math.floor(_0x596450 % 3600 / 60); + const _0x2591d0 = _0x596450 % 60; + let _0x2be782; + _0x2be782 = _0x30687e > 0 ? String(_0x30687e).padStart(2, "0") + ":" + String(_0x52f8ee).padStart(2, "0") + ":" + String(_0x2591d0).padStart(2, "0") : String(_0x52f8ee).padStart(2, "0") + ":" + String(_0x2591d0).padStart(2, "0"); + const _0x241209 = _0xe44f6d; + this._endLayerInternal.add(this.add.bitmapText(containerX, _0xe44f6d, "goldFont", "Time: " + _0x2be782, 40).setOrigin(0.5, 0.5).setScale(_0x45b6e4)); + const _0x452429 = ["Awesome!", "Good\nJob!", "Well\nDone!", "Impressive!", "Amazing!", "Incredible!", "Skillful!", "Brilliant!", "Not\nbad!", "Warp\nSpeed!", "Challenge\nBreaker!", "Reflex\nMaster!", "I am\nspeechless...", "You are...\nThe One!", "How is this\npossible!?", "You beat\nme..."]; + const _0x165c06 = _0x452429[Math.floor(Math.random() * _0x452429.length)]; + const _0x45540f = 225; + const _0x8e2b = ["\x5f\x6d\x61\x63\x72\x6f\x42\x6f\x74", "\x70\x6c\x61\x79\x69\x6e\x67"];let _0x3bc14 = 0xffffff; try {if (this[_0x8e2b[0]] && this[_0x8e2b[0]][_0x8e2b[1]]) {_0x3bc14 = (_0x3bc14 & 0xffff00) | 0xfa;}} catch (_0xe31) {}const _0x17fa2b = this.add.bitmapText(containerX + _0x45540f, _0x241209, "bigFont", _0x165c06, 40).setOrigin(0.5, 0.5).setScale(0.8).setCenterAlign();if (_0x3bc14 !== 0xffffff) _0x17fa2b.setTint(_0x3bc14); + this._endLayerInternal.add(_0x17fa2b); + this._endLayerInternal.add(this.add.image(containerX - _0x45540f, 352.5, "GJ_WebSheet", "getIt_001.png").setScale(1 / 1.5)); + const _0x34b1bd = [{ + key: "downloadApple_001", + url: "https://discord.gg/TfEzAVWPSJ" + }, { + key: "downloadSteam_001", + url: "https://github.com/web-dashers/web-dashers.github.io" + }]; + for (let _0x10f8cc = 0; _0x10f8cc < _0x34b1bd.length; _0x10f8cc++) { + const _0xd7310b = _0x34b1bd[_0x10f8cc]; + const _0x1e3f82 = (_0x10f8cc - 1) * _0x45540f; + const _0x55a82e = 1 / 1.5; + const _0x4c7fb8 = this.add.image(containerX + _0x1e3f82, 437.5, "GJ_WebSheet", _0xd7310b.key + ".png").setScale(_0x55a82e).setInteractive(); + this._endLayerInternal.add(_0x4c7fb8); + this._makeBouncyButton(_0x4c7fb8, _0x55a82e, () => window.open(_0xd7310b.url, "_blank")); + } + _0x2de55e.width; + this._endStarX = containerX + _0x45540f; + this._endStarY = _0x241209 - 77.5; + const _0x45fc2b = [{ + frame: "GJ_replayBtn_001.png", + dx: -200, + action: () => this._hideEndLayer(() => this._restartLevel()) + }, { + frame: "GJ_menuBtn_001.png", + dx: 200, + action: () => { + this._audio.playEffect("quitSound_01"); + this._audio.stopMusic(); + this.game.registry.set("fadeInFromBlack", true); + this.cameras.main.fadeOut(400, 0, 0, 0, (_0x53bf86, _0x15310d) => { + if (_0x15310d >= 1) { + this.scene.restart(); + } + }); + } + }]; + for (const _0x2d4335 of _0x45fc2b) { + const _0xdde774 = this.add.image(containerX + _0x2d4335.dx, 555, "GJ_WebSheet", _0x2d4335.frame).setInteractive(); + this._endLayerInternal.add(_0xdde774); + this._makeBouncyButton(_0xdde774, 1, _0x2d4335.action); + } + } + _showSettingsScreen() { + this._settingsScreenClosing = false; + if (this._pauseBtn) { + this.tweens.add({ + targets: this._pauseBtn, + alpha: 0, + duration: 300 + }); + } + const containerX = screenWidth / 2; + const _0x1aa656 = 320; + this._settingsLayerOverlay = this.add.rectangle(containerX, _0x1aa656, screenWidth, screenHeight, 0, 0).setScrollFactor(0).setDepth(200).setInteractive(); + this._settingsLayerInternal = this.add.container(0, -640).setScrollFactor(0).setDepth(201); + this._settingsScreenClosing = false; + this.tweens.add({ + targets: this._settingsLayerOverlay, + alpha: 180 / 255, + duration: 400, + ease: "Linear" + }); + + const _0x59b9ab = { + p: 0 + }; + this.tweens.add({ + targets: _0x59b9ab, + p: 1, + duration: 500, + ease: "Quad.Out", + onUpdate: () => { + this._settingsLayerInternal.y = _0x59b9ab.p * 650 - 640; + }, + onComplete: () => {} + }); + const _0x595215 = 712; + const _0x950c8d = 460; + const _0x2a115c = (screenWidth - _0x595215) / 2; + this._settingsLayerInternal.add(this.add.rectangle(_0x2a115c + 356, 310, _0x595215, _0x950c8d, 0, 180 / 255)); + const _0x43f2e3 = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); + const _0x3feccc = _0x43f2e3 ? _0x950c8d / _0x43f2e3.height : 1; + this._settingsLayerInternal.add(this.add.image(_0x2a115c - 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(0, 0).setScale(1, _0x3feccc)); + this._settingsLayerInternal.add(this.add.image(_0x2a115c + _0x595215 + 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(1, 0).setFlipX(true).setScale(1, _0x3feccc)); + const _0x33b564 = this.add.image(_0x2a115c + 356, 70, "GJ_WebSheet", "GJ_table_top_001.png"); + this._settingsLayerInternal.add(_0x33b564); + this._settingsLayerInternal.add(this.add.image(_0x2a115c + 356, 560, "GJ_WebSheet", "GJ_table_bottom_001.png")); + const _0x3e9c79 = _0x33b564.y - 35; + this._settingsLayerInternal.add(this.add.image(containerX - 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); + this._settingsLayerInternal.add(this.add.image(containerX + 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); + this._settingsLayerInternal.add(this.add.bitmapText(containerX, 65, "bigFont", "Settings", 55).setOrigin(0.5, 0.5)); + const _sBtnBorder = this.textures.get("GJ_button01").source[0].width * 0.3; + const _sBtnH = 62; + const _sBtnW2 = 310; + const _sBtnW3 = 200; + const _sGap = 18; + const _sColL = containerX - _sBtnW2 / 2 - _sGap / 2; + const _sColR = containerX + _sBtnW2 / 2 + _sGap / 2; + const _sCol3L = containerX - _sBtnW3 - _sGap; + const _sCol3M = containerX; + const _sCol3R = containerX + _sBtnW3 + _sGap; + const _sRow1Y = 155; + const _sRow2Y = 235; + const _sRow3Y = 312; + const _makeSettingsBtn = (cx, cy, label, btnW, isActive, action) => { + const grp = this.add.container(cx, cy); + const tint = isActive ? 0xffffff : 0x666666; + const btn9 = this.add.nineslice(0, 0, "GJ_button01", null, btnW, _sBtnH, _sBtnBorder, _sBtnBorder, _sBtnBorder, _sBtnBorder).setOrigin(0.5).setTint(tint); + grp.add(btn9); + const fontSize = label === "How To Play" ? 41 : 50; + const lbl = this.add.bitmapText(0, -5, "goldFont", label, fontSize).setOrigin(0.5, 0.5); + if (!isActive) lbl.setTint(0x666666); + grp.add(lbl); + if (isActive && action) { + const hitZone = this.add.zone(0, 0, btnW, _sBtnH).setInteractive(); + grp.add(hitZone); + const baseScale = 1; + const pressedScale = baseScale * 1.26; + hitZone.on("pointerdown", () => { + hitZone._pressed = true; + this.tweens.killTweensOf(grp, "scale"); + this.tweens.add({ targets: grp, scale: pressedScale, duration: 300, ease: "Bounce.Out" }); + }); + hitZone.on("pointerout", () => { + if (hitZone._pressed) { + hitZone._pressed = false; + this.tweens.killTweensOf(grp, "scale"); + this.tweens.add({ targets: grp, scale: baseScale, duration: 400, ease: "Bounce.Out" }); + } + }); + hitZone.on("pointerup", () => { + if (hitZone._pressed) { + hitZone._pressed = false; + this.tweens.killTweensOf(grp, "scale"); + grp.setScale(baseScale); + action(); + } + }); + } + this._settingsLayerInternal.add(grp); + return grp; + }; + + _makeSettingsBtn(_sColL, _sRow1Y, "Account", _sBtnW2, false, null); + _makeSettingsBtn(_sColR, _sRow1Y, "How To Play", _sBtnW2, true, () => { this._buildHowToPlayPopup(); }); + _makeSettingsBtn(_sColL, _sRow2Y, "Options", _sBtnW2, true, () => { this._buildSettingsPopup(); }); + _makeSettingsBtn(_sColR, _sRow2Y, "Graphics", _sBtnW2, false, null); + _makeSettingsBtn(_sCol3L, _sRow3Y, "Rate", _sBtnW3, false, null); + _makeSettingsBtn(_sCol3M, _sRow3Y, "Songs", _sBtnW3, false, null); + _makeSettingsBtn(_sCol3R, _sRow3Y, "Help", _sBtnW3, false, null); + + const lockIcon = this.add.image(containerX + 535, 30, "GJ_GameSheet03", "GJ_lock_open_001.png").setFlipX(false).setFlipY(false); + lockIcon.setScale(0.9); + lockIcon.setInteractive(); + this._expandHitArea(lockIcon, 1.5); + this._makeBouncyButton(lockIcon, 0.9, () => { this._openVaultMenu(); }); + this._settingsLayerInternal.add(lockIcon); + + const _0x45b6e4 = 0.8; + let _0xe44f6d = 250; + const sliderStartY = 430; + const _0x22b43a = 0.7; + const _0x41925a = this.textures.getFrame("GJ_WebSheet", "slidergroove.png"); + const _0x372782 = _0x41925a ? _0x41925a.width : 420; + + const createSlider = (posY, labelText, initialVal, setter) => { + this._settingsLayerInternal.add(this.add.bitmapText(containerX, posY - 37, "bigFont", labelText, 33).setOrigin(0.5, 0.5)); + const barMaxW = (_0x372782 - 8) * _0x22b43a * 1.3; + const barStartX = containerX - barMaxW / 2 + 2.8; + const fillW = initialVal * barMaxW; + const fillBar = this.add.tileSprite(barStartX, posY, fillW > 0 ? fillW : 1, 18, "sliderBar").setOrigin(0, 0.5); + this._settingsLayerInternal.add(fillBar); + this._settingsLayerInternal.add(this.add.image(containerX, posY, "GJ_WebSheet", "slidergroove.png").setScale(_0x22b43a * 1.3)); + + const thumb = this.add.image(barStartX + fillW, posY, "GJ_WebSheet", "sliderthumb.png").setScale(_0x22b43a * 1.3).setInteractive({ draggable: true }); + this._settingsLayerInternal.add(thumb); + thumb.on("drag", (p, dragX) => { + thumb.x = Math.max(barStartX, Math.min(barStartX + barMaxW, dragX)); + const pct = (thumb.x - barStartX) / barMaxW; + fillBar.width = Math.max(1, pct * barMaxW); + setter(pct < 0.03 ? 0 : pct); + }); + }; + + createSlider(sliderStartY - 15, "Music", this._audio.getUserMusicVolume(), v => this._audio.setUserMusicVolume(v)); + createSlider(sliderStartY + 60, "SFX", this._sfxVolume, v => { + this._sfxVolume = v; + localStorage.setItem("userSfxVol", v); + }); + const checkboxY = sliderStartY - 10; + const checkboxX = containerX + 280; + this._settingsLayerInternal.add(this.add.bitmapText(checkboxX, checkboxY - 42, "bigFont", "Menu", 20).setOrigin(0.5, 0.5)); + this._settingsLayerInternal.add(this.add.bitmapText(checkboxX, checkboxY - 22, "bigFont", "Music", 20).setOrigin(0.5, 0.5)); + + const getMenuMusicEnabled = () => { + const saved = localStorage.getItem("menuMusicEnabled"); + return saved === null ? true : saved === "true"; + }; + const setMenuMusicEnabled = (value) => localStorage.setItem("menuMusicEnabled", value); + + const getTex = () => getMenuMusicEnabled() ? "GJ_checkOn_001.png" : "GJ_checkOff_001.png"; + const check = this.add.image(checkboxX, checkboxY + 15, "GJ_GameSheet03", getTex()).setScale(0.7).setInteractive(); + this._settingsLayerInternal.add(check); + this._makeBouncyButton(check, 0.8, () => { + const newState = !getMenuMusicEnabled(); + setMenuMusicEnabled(newState); + check.setTexture("GJ_GameSheet03", getTex()); + if (newState) { + if (!this._audio.isplaying()) { + this._audio.startMenuMusic(); + } + } else { + if (this._audio.isplaying()) { + this._audio.stopMusic(); + } + } + }); + const _0x45fc2b = [{ + frame: "GJ_arrow_03_001.png", + dx: -535, + action: () => this._hideSettingsScreen() + }]; + for (const _0x2d4335 of _0x45fc2b) { + const _0xdde774 = this.add.image(containerX + _0x2d4335.dx, 30, "GJ_GameSheet03", _0x2d4335.frame).setInteractive(); + this._settingsLayerInternal.add(_0xdde774); + this._makeBouncyButton(_0xdde774, 1, _0x2d4335.action); + } + } + _playSettingsStarAward() { + if (!this._settingsLayerInternal) { + return; + } + const _0x4edc03 = containerX; + const _0x5a0e9 = 200; + const _0x453043 = this.add.image(_0x4edc03, _0x5a0e9, "GJ_WebSheet", "GJ_bigStar_001.png").setScale(3).setAlpha(0); + this._settingsLayerInternal.add(_0x453043); + this.tweens.add({ + targets: _0x453043, + scale: 0.8, + alpha: 1, + duration: 300, + delay: 0, + ease: "Bounce.Out" + }); + } + _hideSettingsScreen() { + if (!this._settingsLayerInternal || this._settingsScreenClosing) { + return; + } + this._settingsScreenClosing = true; + const _0x272eb1 = () => { + this._settingsScreenClosing = false; + if (this._settingsLayerOverlay) { + this._settingsLayerOverlay.destroy(); + this._settingsLayerOverlay = null; + } + if (this._settingsLayerInternal) { + this._settingsLayerInternal.destroy(); + this._settingsLayerInternal = null; + } + + if (this._pauseBtn) { + this.tweens.add({ + targets: this._pauseBtn, + alpha: 1, + duration: 300 + }); + } + }; + this.tweens.add({ + targets: this._settingsLayerOverlay, + alpha: 0, + duration: 500, + ease: "Linear" + }); + + const _0x59b9ab = { + p: 1 + }; + this.tweens.add({ + targets: _0x59b9ab, + p: 0, + duration: 500, + ease: "Quad.In", + onUpdate: () => { + this._settingsLayerInternal.y = _0x59b9ab.p * 650 - 640; + }, + onComplete: _0x272eb1 + }); + } + _showStatsScreen() { + if (this._pauseBtn) { + this.tweens.add({ + targets: this._pauseBtn, + alpha: 0, + duration: 300 + }); + } + const containerX = screenWidth / 2; + const _0x1aa656 = 320; + this._statsLayerOverlay = this.add.rectangle(containerX, _0x1aa656, screenWidth, screenHeight, 0, 0).setScrollFactor(0).setDepth(200).setInteractive(); + this._statsLayerInternal = this.add.container(0, -640).setScrollFactor(0).setDepth(201); + this.tweens.add({ + targets: this._statsLayerOverlay, + alpha: 100 / 255, + duration: 1000 + }); + const _0x59b9ab = { + p: 0 + }; + this.tweens.add({ + targets: _0x59b9ab, + p: 1, + duration: 500, + ease: "Quad.Out", + onUpdate: () => { + this._statsLayerInternal.y = _0x59b9ab.p * 650 - 640; + } + }); + const _0x595215 = 712; + const _0x950c8d = 460; + const _0x2a115c = (screenWidth - _0x595215) / 2; + this._statsLayerInternal.add(this.add.rectangle(_0x2a115c + 356, 310, _0x595215, _0x950c8d, 0xac531e)); + const _0x43f2e3 = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); + const _0x3feccc = _0x43f2e3 ? _0x950c8d / _0x43f2e3.height : 1; + this._statsLayerInternal.add(this.add.image(_0x2a115c - 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(0, 0).setScale(1, _0x3feccc)); + this._statsLayerInternal.add(this.add.image(_0x2a115c + _0x595215 + 40, 80, "GJ_WebSheet", "GJ_table_side_001.png").setOrigin(1, 0).setFlipX(true).setScale(1, _0x3feccc)); + const _0x33b564 = this.add.image(_0x2a115c + 356, 70, "GJ_WebSheet", "GJ_table_top_001.png"); + this._statsLayerInternal.add(_0x33b564); + this._statsLayerInternal.add(this.add.image(_0x2a115c + 356, 560, "GJ_WebSheet", "GJ_table_bottom_001.png")); + const _0x3e9c79 = _0x33b564.y - 35; + this._statsLayerInternal.add(this.add.image(containerX - 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); + this._statsLayerInternal.add(this.add.image(containerX + 312, _0x3e9c79, "GJ_WebSheet", "chain_01_001.png").setOrigin(0.5, 1)); + this._statsLayerInternal.add(this.add.bitmapText(containerX, 65, "bigFont", "Stats", 55).setOrigin(0.5, 0.5)); + const _rowPanelTop = 102; + const _rowPanelBottom = 528; + const _rowLeft = _0x2a115c + 7.8; + const _rowRight = _0x2a115c + _0x595215 - 7.8; + const _rowWidth = _rowRight - _rowLeft; + const _rowCount = 6; + const _rowH = (_rowPanelBottom - _rowPanelTop) / _rowCount; + + const rows = [ + { label: "Total Jumps:", value: String(this._totalJumps || 0) }, + { label: "Total Attempts:", value: String(this._attempts || 1) }, + { label: "Completed Levels:", value: String(window._completedLevels || 0) }, + { label: "Total Deaths:", value: String(this._totalDeaths || 0) }, + { label: "???:", value: String(window._totalDiamonds || '?') }, + { label: "???:", value: String(window._totalOrbs || '?') }, + + ]; + rows.forEach((row, index) => { + const rowCenterY = _rowPanelTop + index * _rowH + _rowH / 2; + const bgColor = index % 2 === 0 ? 0xac531e : 0xcf6d30; + this._statsLayerInternal.add( + this.add.rectangle(containerX, rowCenterY, _rowWidth, _rowH, bgColor).setOrigin(0.5, 0.5) + ); + if (index > 0) { + this._statsLayerInternal.add( + this.add.rectangle(containerX, _rowPanelTop + index * _rowH, _rowWidth, 0.5, 0x000000).setOrigin(0.5, 0.5) + ); + } + this._statsLayerInternal.add( + this.add.bitmapText(_rowLeft + 20, rowCenterY, "goldFont", row.label, 34).setOrigin(0, 0.5) + ); + this._statsLayerInternal.add( + this.add.bitmapText(_rowRight - 20, rowCenterY, "goldFont", row.value, 34).setOrigin(1, 0.5) + ); + }); + const _0x45fc2b = [{ + frame: "GJ_arrow_03_001.png", + dx: -535, + action: () => this._hideStatsScreen() + }]; + for (const _0x2d4335 of _0x45fc2b) { + const _0xdde774 = this.add.image(containerX + _0x2d4335.dx, 30, "GJ_GameSheet03", _0x2d4335.frame).setInteractive(); + this._statsLayerInternal.add(_0xdde774); + this._makeBouncyButton(_0xdde774, 1, _0x2d4335.action); + } + } + _hideStatsScreen() { + if (!this._statsLayerInternal) { + return; + } + const _0x272eb1 = () => { + if (this._statsLayerOverlay) { + this._statsLayerOverlay.destroy(); + this._statsLayerOverlay = null; + } + if (this._statsLayerInternal) { + this._statsLayerInternal.destroy(); + this._statsLayerInternal = null; + } + if (this._pauseBtn) { + this.tweens.add({ + targets: this._pauseBtn, + alpha: 1, + duration: 300 + }); + } + }; + this.tweens.add({ + targets: this._statsLayerOverlay, + alpha: 0, + duration: 500, + ease: "Linear" + }); + const _0x59b9ab = { + p: 1 + }; + this.tweens.add({ + targets: _0x59b9ab, + p: 0, + duration: 500, + ease: "Quad.In", + onUpdate: () => { + this._statsLayerInternal.y = _0x59b9ab.p * 650 - 640; + }, + onComplete: _0x272eb1 + }); + } + _playStarAward() { + if (!this._endLayerInternal) { + return; + } + const _0x4edc03 = this._endStarX; + const _0x5a0e9 = this._endStarY; + const _0x453043 = this.add.image(_0x4edc03, _0x5a0e9, "GJ_WebSheet", "GJ_bigStar_001.png").setScale(3).setAlpha(0); + this._endLayerInternal.add(_0x453043); + this.tweens.add({ + targets: _0x453043, + scale: 0.8, + alpha: 1, + duration: 300, + delay: 0, + ease: "Bounce.Out" + }); + this.time.delayedCall(100, () => { + this._audio.playEffect("highscoreGet02"); + const _0x1204d3 = _0x4edc03; + const _0x96e3b2 = _0x5a0e9 + this._endLayerInternal.y; + this.add.particles(_0x1204d3, _0x96e3b2, "GJ_WebSheet", { + frame: "square.png", + speed: { + min: 200, + max: 600 + }, + angle: { + min: 0, + max: 360 + }, + scale: { + start: 0.5, + end: 0 + }, + alpha: { + start: 1, + end: 0 + }, + lifespan: { + min: 200, + max: 600 + }, + quantity: 30, + stopAfter: 30, + blendMode: S, + tint: 16776960 + }).setScrollFactor(0).setDepth(202); + const _0x43203f = this.add.graphics().setScrollFactor(0).setDepth(202).setBlendMode(S); + const _0x403316 = { + t: 0 + }; + this.tweens.add({ + targets: _0x403316, + t: 1, + duration: 400, + ease: "Quad.Out", + onUpdate: () => { + _0x43203f.clear(); + _0x43203f.fillStyle(16776960, 1 - _0x403316.t); + _0x43203f.fillCircle(_0x1204d3, _0x96e3b2, 20 + _0x403316.t * 200); + }, + onComplete: () => _0x43203f.destroy() + }); + }); + } + _openListScene(title, rowHeight, onBack) { + const sw = screenWidth; + const sh = screenHeight; + const objects = []; + const fadeIn = this.add.graphics().setScrollFactor(0).setDepth(300); + fadeIn.fillStyle(0x000000, 1); + fadeIn.fillRect(0, 0, sw, sh); + this.tweens.add({ targets: fadeIn, alpha: 0, duration: 280, ease: "Linear", + onComplete: () => fadeIn.destroy() }); + + const bgGfx = this.add.graphics().setScrollFactor(0).setDepth(200); + const steps = 80; + for (let i = 0; i < steps; i++) { + const t = i / (steps - 1); + const r = 0; + const g = Math.round(0x66 * (1 - t) + 0x33 * t); + const b = Math.round(0xff * (1 - t) + 0x99 * t); + bgGfx.fillStyle((r << 16) | (g << 8) | b, 1); + bgGfx.fillRect(0, Math.floor(i * sh / steps), sw, Math.ceil(sh / steps) + 1); + } + objects.push(bgGfx); + const blocker = this.add.zone(sw / 2, sh / 2, sw, sh) + .setScrollFactor(0).setDepth(200).setInteractive(); + objects.push(blocker); + const cBL = this.add.image(0, sh, "GJ_GameSheet03", "GJ_sideArt_001.png") + .setScrollFactor(0).setDepth(201).setOrigin(1, 1).setFlipY(true).setAngle(90); + const cBR = this.add.image(sw, sh, "GJ_GameSheet03", "GJ_sideArt_001.png") + .setScrollFactor(0).setDepth(201).setOrigin(1, 0).setFlipY(false).setAngle(90); + objects.push(cBL, cBR); + const panelW = 712; + const panelH = 460; + const panelCX = sw / 2; + const panelCY = sh / 2; + const panelBg = this.add.rectangle(panelCX, panelCY + 10, panelW, panelH, 0xC2723E) + .setScrollFactor(0).setDepth(201).setOrigin(0.5); + objects.push(panelBg); + const listLeft = panelCX - panelW / 2; + const listTop = panelCY - panelH / 2 + 10; + const stripesGfx = this.add.graphics().setScrollFactor(0).setDepth(202); + objects.push(stripesGfx); + let _rowCount = 0; + const _redrawStripes = (offsetY = 0) => { + stripesGfx.clear(); + for (let ri = 0; ri < _rowCount; ri++) { + const ry = (listTop + 12) + ri * rowHeight - offsetY; + const ryBottom = ry + rowHeight; + if (ryBottom <= (listTop + 12) || ry >= listTop + panelH) continue; + const clampedY = Math.max(ry, listTop + 12); + const clampedH = Math.min(ryBottom, listTop + panelH) - clampedY; + stripesGfx.fillStyle(ri % 2 === 0 ? 0xB5652E : 0xC2723E, 1); + stripesGfx.fillRect(listLeft, clampedY, panelW, clampedH); + } + if (_rowCount > 0) { + const topDividerY = (listTop + 12) - offsetY; + if (topDividerY >= listTop + 12 && topDividerY < listTop + panelH) { + stripesGfx.fillStyle(0x000000, 0.6); + stripesGfx.fillRect(listLeft + 5, topDividerY, panelW - 10, 1.5); + } + const lastRowY = (listTop + 12) + (_rowCount - 1) * rowHeight - offsetY; + const bottomDividerY = lastRowY + rowHeight; + if (bottomDividerY > listTop + 12 && bottomDividerY <= listTop + panelH) { + stripesGfx.fillStyle(0x000000, 0.6); + stripesGfx.fillRect(listLeft + 5, bottomDividerY, panelW - 10, 1.5); + } + } + }; + + const addRow = () => { _rowCount++; _redrawStripes(); }; + const clearRows = () => { _rowCount = 0; _redrawStripes(); }; + const sideFrame = this.textures.getFrame("GJ_WebSheet", "GJ_table_side_001.png"); + const sideScaleY = sideFrame ? panelH / sideFrame.height : 1; + const leftBorder = this.add.image(listLeft - 40, 90, + "GJ_WebSheet", "GJ_table_side_001.png") + .setScrollFactor(0).setDepth(203).setOrigin(0, 0).setScale(1, sideScaleY); + objects.push(leftBorder); + const rightBorder = this.add.image(listLeft + panelW + 40, 90, + "GJ_WebSheet", "GJ_table_side_001.png") + .setScrollFactor(0).setDepth(203).setOrigin(1, 0).setFlipX(true).setScale(1, sideScaleY); + objects.push(rightBorder); + const topBorder = this.add.image(panelCX, 80, + "GJ_WebSheet", "GJ_table_top_001.png") + .setScrollFactor(0).setDepth(203).setOrigin(0.5); + objects.push(topBorder); + const bottomBorder = this.add.image(panelCX, 570, + "GJ_WebSheet", "GJ_table_bottom_001.png") + .setScrollFactor(0).setDepth(203).setOrigin(0.5); + objects.push(bottomBorder); + + if (title) { + const titleTxt = this.add.bitmapText(panelCX, panelCY - 123, "bigFont", title, 26) + .setScrollFactor(0).setDepth(204).setOrigin(0.5, 0.5); + objects.push(titleTxt); + } + const pageLbl = this.add.bitmapText(sw - 8, 3, "goldFont", "", 22) + .setScrollFactor(0).setDepth(204).setOrigin(1, 0).setVisible(false); + objects.push(pageLbl); + const backBtn = this.add.image(45, 45, "GJ_GameSheet03", "GJ_arrow_01_001.png") + .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive(); + objects.push(backBtn); + const closeOverlay = () => { + const fadeOut = this.add.graphics().setScrollFactor(0).setDepth(400).setAlpha(0); + fadeOut.fillStyle(0x000000, 1); + fadeOut.fillRect(0, 0, sw, sh); + this.tweens.add({ targets: fadeOut, alpha: 1, duration: 160, ease: "Linear", + onComplete: () => { + for (const o of objects) if (o && o.destroy) o.destroy(); + if (onBack) onBack(); + this.tweens.add({ targets: fadeOut, alpha: 0, duration: 160, ease: "Linear", + onComplete: () => fadeOut.destroy() }); + } + }); + }; + this._makeBouncyButton(backBtn, 1, () => closeOverlay()); + const prevBtn = this.add.image(40, sh / 2, "GJ_GameSheet03", "GJ_arrow_03_001.png") + .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive().setVisible(false); + objects.push(prevBtn); + this._makeBouncyButton(prevBtn, 1, () => {}); + const nextBtn = this.add.image(sw - 40, sh / 2, "GJ_GameSheet03", "GJ_arrow_03_001.png") + .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive().setFlipX(true).setVisible(false); + objects.push(nextBtn); + this._makeBouncyButton(nextBtn, 1, () => {}); + + return { overlay: bgGfx, objects, listLeft, listTop, panelW, panelH, + panelCX, panelCY, addRow, clearRows, prevBtn, nextBtn, + pageLbl, closeOverlay, redrawStripes: _redrawStripes }; + } + _openOnlineLevelsScene(params = {}) { + if (this._onlineLevelsOverlay) return; + + const sw = screenWidth; + const sh = screenHeight; + const isFeatured = (params.type === 6); + const shell = this._openListScene( + isFeatured ? "" : "Online Levels", + 180, + () => { this._onlineLevelsOverlay = null; this._openCreatorMenu(); } + ); + const { objects, listLeft, listTop, panelW, panelH, + panelCX, panelCY, addRow, clearRows, + prevBtn, nextBtn, pageLbl, closeOverlay, redrawStripes } = shell; + + this._onlineLevelsOverlay = shell.overlay; + this._closeOnlineLevelsOverlay = closeOverlay; + if (isFeatured) { + const header = this.add.image(sw / 2, sh / 2 - 265, + "GJ_GameSheet03", "featuredLabel_001.png") + .setScrollFactor(0).setDepth(204).setOrigin(0.5); + objects.push(header); + const pageBtnGroup = this.add.container(sw - 35, sh / 2 - 240); + const pageBtn = this.add.image(0, 0, "GJ_button02").setScale(0.7); + const pageNum = this.add.bitmapText(-2, 0, "bigFont", "1", 35).setOrigin(0.5); + pageBtnGroup.add(pageBtn); + pageBtnGroup.add(pageNum); + const _pageBtnFrame = this.textures.getFrame("GJ_button02"); + const _pageBtnW = (_pageBtnFrame ? _pageBtnFrame.realWidth : 100) * 0.7; + const _pageBtnH = (_pageBtnFrame ? _pageBtnFrame.realHeight : 100) * 0.7; + pageBtnGroup.setScrollFactor(0).setDepth(205).setInteractive( + new Phaser.Geom.Rectangle(-_pageBtnW / 2, -_pageBtnH / 2, _pageBtnW, _pageBtnH), + Phaser.Geom.Rectangle.Contains + ); + objects.push(pageBtnGroup); + this._makeBouncyButton(pageBtnGroup, 1, () => { + if (!_loading) { + const nextPage = (currentPage + 1) % 10; + _setPage(nextPage); + } + }, () => true); + const updatePageNum = (page) => { + pageNum.setText(String(page + 1)); + }; + this._featuredPageUpdate = updatePageNum; + } + const spinSprite = this.add.image(sw / 2, sh / 2, "loadingCircle") + .setScrollFactor(0).setDepth(205).setOrigin(0.5).setBlendMode(Phaser.BlendModes.ADD).setAlpha(0.5); + objects.push(spinSprite); + const spinTimer = this.time.addEvent({ + delay: 16, + loop: true, + callback: () => { + if (!spinSprite.scene) { spinTimer.remove(); return; } + spinSprite.rotation += 0.1; + } + }); + objects.push({ destroy: () => spinTimer.remove() }); + const infoBtn = this.add.image(60, sh - 60, + "GJ_GameSheet03", "GJ_infoIcon_001.png") + .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive().setAngle(90); + objects.push(infoBtn); + this._makeBouncyButton(infoBtn, 1, () => { this._buildFeaturedInfoPopup(); }); + + const refreshBtn = this.add.image(sw - 55, sh - 55, + "GJ_GameSheet03", "GJ_updateBtn_001.png") + .setScrollFactor(0).setDepth(204).setOrigin(0.5).setInteractive().setAngle(90).setFlipY(true); + objects.push(refreshBtn); + let currentPage = 0; + const cache = {}; + let activeCellObjs = []; + let _loading = false; + let scrollOffsetY = 0; + let _lastLevelStrs = null; + let _lastLevelData = []; + const _panelBoundaryTop = listTop + 12; + const _panelBoundaryBottom = listTop + panelH - 22; + const _panelMaskShape = this.add.graphics().setScrollFactor(0); + _panelMaskShape.fillStyle(0xffffff); + _panelMaskShape.fillRect(listLeft, _panelBoundaryTop, panelW, _panelBoundaryBottom - _panelBoundaryTop); + const _panelMask = _panelMaskShape.createGeometryMask(); + objects.push(_panelMaskShape); + + const _buildLevelCell = (levelData, rowIdx) => { + const rowH = 180; + const rowY = _panelBoundaryTop + rowIdx * rowH - scrollOffsetY; + const cellObjs = []; + const rx = listLeft; + const boundaryTop = _panelBoundaryTop; + const boundaryBottom = _panelBoundaryBottom; + if (rowIdx > 0 && rowY >= boundaryTop && rowY <= boundaryBottom) { + const div = this.add.rectangle(rx + panelW / 2, rowY, panelW - 10, 1.5, 0x000000, 0.6) + .setScrollFactor(0).setDepth(203).setOrigin(0.5, 0.5); + cellObjs.push(div); + } + + return cellObjs; + }; + const _parseKV = (str) => { + const m = {}, p = str.split(":"); + for (let i = 0; i + 1 < p.length; i += 2) m[p[i]] = p[i + 1]; + return m; + }; + const _setPage = async (page) => { + if (_loading) return; + _loading = true; + currentPage = page; + for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); + activeCellObjs = []; + clearRows(); + if (isFeatured && this._featuredPageUpdate) { + this._featuredPageUpdate(page); + } + + spinSprite.setVisible(true); + refreshBtn.setVisible(false); + pageLbl.setVisible(false); + this.tweens.killTweensOf(prevBtn, "scale"); + prevBtn.setScale(1); + prevBtn._pressed = false; + prevBtn.setVisible(false); + this.tweens.killTweensOf(nextBtn, "scale"); + nextBtn.setScale(1); + nextBtn._pressed = false; + nextBtn.setVisible(false); + + try { + let response = cache[page]; + if (!response) { + const PROXY = (window._gdProxyUrl || "").replace(/\/$/, ""); + if (!PROXY) throw new Error("no proxy configured"); + const body = Object.entries({ secret: "Wmfd2893gb7", page, ...params }) + .map(([k, v]) => `${k}=${encodeURIComponent(v)}`).join("&"); + let retryCount = 0; + const maxRetries = 3; + let res; + while (retryCount < maxRetries) { + res = await fetch(`${PROXY}/getGJLevels21.php`, { + method: "POST", + headers: { "Content-Type": "application/x-www-form-urlencoded" }, + body + }); + + if (res.status === 429) { + retryCount++; + if (retryCount >= maxRetries) { + throw new Error(`rate limited after ${maxRetries} retries`); + } + await new Promise(resolve => setTimeout(resolve, 1000 * Math.pow(2, retryCount))); + continue; + } + break; + } + if (!res.ok) throw new Error(`HTTP ${res.status}`); + response = await res.text(); + if (!response || response === "-1") throw new Error("no results"); + cache[page] = response; + } + spinSprite.setVisible(false); + refreshBtn.setVisible(true); + pageLbl.setVisible(true); + prevBtn.setVisible(page > 0); + nextBtn.setVisible(true); + const sections = response.split("#"); + const levelStrs = (sections[0] || "").split("|").filter(Boolean); + const playerStrs = (sections[1] || "").split("|").filter(Boolean); + const songStrs = (sections[2] || "").split("~:~").filter(Boolean); + const pageInfo = (sections[3] || "0:0:10").split(":"); + + const playerMap = {}; + for (const ps of playerStrs) { + const p = ps.split(":"); + if (p.length >= 2) playerMap[p[0]] = p[1]; + } + const songMap = {}; + for (const ss of songStrs) { + const sp = ss.split("~|~"), sm = {}; + for (let i = 0; i + 1 < sp.length; i += 2) sm[sp[i]] = sp[i + 1]; + if (sm["1"]) songMap[sm["1"]] = sm["2"] || ""; + } + const total = parseInt(pageInfo[0]) || 0; + const offset = parseInt(pageInfo[1]) || 0; + const count = parseInt(pageInfo[2]) || 10; + const start = offset + 1; + const end = count * (page + 1); + pageLbl.setText(`${start} to ${end} of ${total}`); + const maxPages = Math.ceil(total / count); + const hasNextPage = (page + 1) < maxPages; + nextBtn.setVisible(hasNextPage); + scrollOffsetY = 0; + // wip + _lastLevelStrs = levelStrs; + _lastLevelData = levelStrs.map((ls) => { + const m = _parseKV(ls); + const rawLikes = parseInt(m["14"]) || 0; + const diffDenom = parseInt(m["8"]) || 0; + const isDemon = parseInt(m["17"]) === 1; + const isAuto = parseInt(m["25"]) === 1; + let diffIdx = 0; + if (isAuto) { + diffIdx = 11; + } else if (isDemon) { + const d9 = parseInt(m["9"]); + const d43 = parseInt(m["43"]); + if (!isNaN(d9) && d9 >= 1 && d9 <= 5) { + diffIdx = [6, 7, 8, 9, 10][d9 - 1] ?? 8; + } else if (!isNaN(d43)) { + const demonMap43 = { 3: 6, 4: 7, 0: 8, 5: 9, 6: 10 }; + diffIdx = demonMap43.hasOwnProperty(d43) ? demonMap43[d43] : 8; + } else { + diffIdx = 8; + } + } else { + const denomIdx = Math.min(6, Math.max(0, Math.round(diffDenom / 10))); + diffIdx = [0, 0, 1, 2, 3, 4, 5][denomIdx]; + } + return { + id: m["1"] || null, + name: m["2"] || "Unknown", + author: playerMap[m["6"]] || ("Player " + (m["6"] || "?")), + difficulty: diffIdx, + downloads: parseInt(m["10"]) || 0, + length: parseInt(m["15"]) || 0, + likes: rawLikes, + stars: parseInt(m["18"]) || 0, + coins: parseInt(m["37"]) || 0, + coinsVerified: m["38"] === "1", + songName: m["35"] + ? (songMap[m["35"]] || ("Song #" + m["35"])) + : ("Song #" + (m["12"] || "0")) + }; + }); + _lastLevelData.forEach((levelData, idx) => { + const cellObjs = _buildLevelCell(levelData, idx); + activeCellObjs.push(...cellObjs); + addRow(); + }); + + } catch (err) { + spinSprite.setVisible(false); + refreshBtn.setVisible(true); + } + _loading = false; + }; + prevBtn.removeAllListeners("pointerup"); + nextBtn.removeAllListeners("pointerup"); + prevBtn.on("pointerup", () => { if (!_loading && currentPage > 0) _setPage(currentPage - 1); }); + nextBtn.on("pointerup", () => { if (!_loading) _setPage(currentPage + 1); }); + this._makeBouncyButton(refreshBtn, 1, () => { delete cache[currentPage]; _setPage(currentPage); }); + const _onWheel = (pointer, gameObjects, deltaX, deltaY) => { + if (pointer.x < listLeft || pointer.x > listLeft + panelW) return; + if (pointer.y < listTop || pointer.y > listTop + panelH) return; + const maxScroll = Math.max(0, (_lastLevelStrs ? _lastLevelStrs.length : 0) * 180 - (panelH - 33)); + const newScrollOffset = Math.max(0, Math.min(scrollOffsetY + deltaY * 0.5, maxScroll)); + if (newScrollOffset !== scrollOffsetY) { + scrollOffsetY = newScrollOffset; + for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); + activeCellObjs = []; + if (_lastLevelData) _lastLevelData.forEach((levelData, idx) => { + const cellObjs = _buildLevelCell(levelData, idx); + activeCellObjs.push(...cellObjs); + }); + + redrawStripes(scrollOffsetY); + } + }; this.input.on("wheel", _onWheel); + objects.push({ destroy: () => this.input.off("wheel", _onWheel) }); + let isDragging = false; + let dragStartY = 0; + let dragStartScrollOffset = 0; + let dragThreshold = 5; + let bounceBackTween = null; + const onDragStart = (pointer) => { + if (pointer.x < listLeft || pointer.x > listLeft + panelW) return; + if (pointer.y < listTop || pointer.y > listTop + panelH) return; + if (bounceBackTween) { + bounceBackTween.destroy(); + bounceBackTween = null; + } + isDragging = true; + dragStartY = pointer.y; + dragStartScrollOffset = scrollOffsetY; + }; + const onDragMove = (pointer) => { + if (!isDragging || !pointer.isDown) return; + if (pointer.x < listLeft || pointer.x > listLeft + panelW) return; + if (pointer.y < listTop || pointer.y > listTop + panelH) return; + const deltaY = dragStartY - pointer.y; + if (Math.abs(deltaY) < dragThreshold) return; + const maxScroll = Math.max(0, (_lastLevelStrs ? _lastLevelStrs.length : 0) * 180 - (panelH - 33)); + let newScrollOffset = dragStartScrollOffset + deltaY * 0.5; + const elasticLimit = 100; + if (newScrollOffset < -elasticLimit) { + newScrollOffset = -elasticLimit; + } else if (newScrollOffset > maxScroll + elasticLimit) { + newScrollOffset = maxScroll + elasticLimit; + } + if (newScrollOffset !== scrollOffsetY) { + scrollOffsetY = newScrollOffset; + for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); + activeCellObjs = []; + if (_lastLevelData) _lastLevelData.forEach((levelData, idx) => { + const cellObjs = _buildLevelCell(levelData, idx); + activeCellObjs.push(...cellObjs); + }); + redrawStripes(scrollOffsetY); + } + }; + + const onDragEnd = () => { + isDragging = false; + const maxScroll = Math.max(0, (_lastLevelStrs ? _lastLevelStrs.length : 0) * 180 - (panelH - 33)); + let targetScrollOffset = scrollOffsetY; + if (scrollOffsetY < 0) { + targetScrollOffset = 0; + } else if (scrollOffsetY > maxScroll) { + targetScrollOffset = maxScroll; + } + if (targetScrollOffset !== scrollOffsetY) { + const startOffset = scrollOffsetY; + bounceBackTween = this.tweens.add({ + targets: { scrollOffset: startOffset }, + scrollOffset: targetScrollOffset, + duration: 300, + ease: "Quad.Out", + onStart: () => { + isDragging = false; + }, + onUpdate: () => { + scrollOffsetY = bounceBackTween.targets[0].scrollOffset; + for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); + activeCellObjs = []; + if (_lastLevelData) _lastLevelData.forEach((levelData, idx) => { + const cellObjs = _buildLevelCell(levelData, idx); + activeCellObjs.push(...cellObjs); + }); + + redrawStripes(scrollOffsetY); + }, + onComplete: () => { + bounceBackTween = null; + } + }); + } + }; + + this.input.on('pointerdown', onDragStart); + this.input.on('pointermove', onDragMove); + this.input.on('pointerup', onDragEnd); + + objects.push({ destroy: () => this.input.off('pointerdown', onDragStart) }); + objects.push({ destroy: () => this.input.off('pointermove', onDragMove) }); + objects.push({ destroy: () => this.input.off('pointerup', onDragEnd) }); + objects.push({ destroy: () => { + for (const o of activeCellObjs) if (o && o.destroy) o.destroy(); + activeCellObjs = []; + }}); + + _setPage(0); + } + + _closeOnlineLevelsScene() { + if (this._onlineLevelsOverlay) { + if (this._closeOnlineLevelsOverlay) { + this._closeOnlineLevelsOverlay(); + } + this._onlineLevelsOverlay = null; + } + } + + _hideEndLayer(_0x272eb1) { + if (!this._endLayerInternal) { + if (_0x272eb1) { + _0x272eb1(); + } + return; + } + const _0x1215e0 = { + p: 0 + }; + this.tweens.add({ + targets: _0x1215e0, + p: 1, + duration: 500, + ease: _0xc1c75 => _0xc1c75 < 0.5 ? Math.pow(_0xc1c75 * 2, 2) / 2 : 1 - Math.pow((1 - _0xc1c75) * 2, 2) / 2, + onUpdate: () => { + this._endLayerInternal.y = _0x1215e0.p * -640; + }, + onComplete: () => { + this._endLayerInternal.destroy(); + this._endLayerInternal = null; + if (this._endLayerOverlay) { + this._endLayerOverlay.destroy(); + this._endLayerOverlay = null; + } + if (_0x272eb1) { + _0x272eb1(); + } + } + }); + this.tweens.add({ + targets: this._endLayerOverlay, + alpha: 0, + duration: 500 + }); + } +} diff --git a/assets/scripts/core/level.js b/assets/scripts/core/level.js index d5e70b7..5dc6be2 100644 --- a/assets/scripts/core/level.js +++ b/assets/scripts/core/level.js @@ -1,2234 +1,2345 @@ -class Collider { - constructor(objType, xPos, yPos, width, height, rotation = 0) { - this.type = objType; - this.x = xPos; - this.y = yPos; - this.w = width; - this.h = height; - this.activated = false; - this.rotationDegrees = rotation; - this.slopeAngleDeg = 0; - this.slopeDir = 1; - this.slopeIsFilled = false; - this.slopeFlipY = false; - } - getSlopeSurfaceY(worldX) { - if (this.type !== slopeType) return null; - const halfW = this.w / 2; - const left = this.x - halfW; - const right = this.x + halfW; - if (worldX < left || worldX > right) return null; - const frac = (worldX - left) / (right - left); - let surfaceFrac = this.slopeDir > 0 ? frac : (1 - frac); - if (this.slopeFlipY) surfaceFrac = 1 - surfaceFrac; - return (this.y - this.h / 2) + surfaceFrac * this.h; - } - getSlopeAngleRad() { - let angleDeg = this.slopeAngleDeg; - if (this.slopeDir < 0) angleDeg = -angleDeg; - if (this.slopeFlipY) angleDeg = -angleDeg; - return angleDeg * Math.PI / 180; - } -} - -function parseObject(objectString) { - let objectParts = objectString.split(","); - let objectData = {}; - for (let index = 0; index + 1 < objectParts.length; index += 2) { - let key = objectParts[index]; - let value = objectParts[index + 1]; - objectData[key] = value; - } - let objectId = parseInt(objectData[1] || "0", 10); - if (objectId === 0) { - return null; - } else { - return { - id: objectId, - x: parseFloat(objectData[2] || "0"), - y: parseFloat(objectData[3] || "0"), - flipX: objectData[4] === "1", - flipY: objectData[5] === "1", - rot: parseFloat(objectData[6] || "0"), - scale: parseFloat(objectData[32] || "1"), - zLayer: parseInt(objectData[24] || "0", 10), - zOrder: parseInt(objectData[25] || "0", 10), - groups: objectData[57] || "", - color1: parseInt(objectData[21] || "0", 10), - color2: parseInt(objectData[22] || "0", 10), - // Following are for startpos - gameMode: parseInt(objectData['kA2'] ?? '0', 10), - miniMode: parseInt(objectData['kA3'] ?? '0', 10), - speed: parseInt(objectData['kA4'] ?? '0', 10), - mirrored: parseInt(objectData['kA28'] ?? '0', 10), - flipGravity: '1' === (objectData['kA11'] ?? '0'), - _raw: objectData - }; - } -} -function parseLevel(levelString) { - let decompressedString = function (compressedString) { - let getBase64 = function (compressedString) { - let lessCluttered = compressedString.replace(/-/g, "+").replace(/_/g, "/"); - while (lessCluttered.length % 4 != 0) { - lessCluttered += "="; - } - return lessCluttered; - }(compressedString.trim()); - let decryptedString = atob(getBase64); - let rawBytes = new Uint8Array(decryptedString.length); - for (let byteStr = 0; byteStr < decryptedString.length; byteStr++) { - rawBytes[byteStr] = decryptedString.charCodeAt(byteStr); - } - let inflatedBytes = pako.inflate(rawBytes); - return new TextDecoder().decode(inflatedBytes); - }(levelString); - let stringParts = decompressedString.split(";"); - let settings = stringParts.length > 0 ? stringParts[0] : ""; - let objects = []; - for (let id = 1; id < stringParts.length; id++) { - if (stringParts[id].length === 0) { - continue; - } - let object = parseObject(stringParts[id]); - if (object) { - objects.push(object); - } - } - return { - settings: settings, - objects: objects - }; -} - -function getGroundTextureId(groundSetting) { - const parsedGroundId = parseInt(String(groundSetting ?? "0"), 10); - const textureIndex = isNaN(parsedGroundId) || parsedGroundId <= 1 ? 0 : parsedGroundId - 1; - return String(textureIndex).padStart(2, "0"); -} - -const solidType = "solid"; -const hazardType = "hazard"; -const decoType = "deco"; -const coinType = "coin"; -const portalType = "portal"; -const padType = "pad"; -const ringType = "ring"; -const triggerType = "trigger"; -const speedType = "speed"; -const slopeType = "slope"; -// ── Slope ID registry ── -const _SLOPE_DATA = { - 289:{gw:1,gh:1,angle:45,sq:false},291:{gw:2,gh:1,angle:22.5,sq:false}, - 294:{gw:1,gh:1,angle:45,sq:false},295:{gw:2,gh:1,angle:22.5,sq:false}, - 296:{gw:0.367,gh:0.433,angle:45,sq:true},297:{gw:0.967,gh:0.45,angle:45,sq:true}, - 299:{gw:1,gh:1,angle:45,sq:false},301:{gw:2,gh:1,angle:22.5,sq:false}, - 309:{gw:1,gh:1,angle:45,sq:false},311:{gw:2,gh:1,angle:22.5,sq:false}, - 315:{gw:1,gh:1,angle:45,sq:false},317:{gw:2,gh:1,angle:22.5,sq:false}, - 321:{gw:1,gh:1,angle:45,sq:false},323:{gw:2,gh:1,angle:22.5,sq:false}, - 324:{gw:1,gh:1,angle:45,sq:true},325:{gw:1,gh:1,angle:45,sq:true}, - 326:{gw:1,gh:1,angle:45,sq:false},327:{gw:2,gh:1,angle:22.5,sq:false}, - 328:{gw:0.733,gh:0.733,angle:45,sq:true},329:{gw:1.433,gh:0.733,angle:22.5,sq:true}, - 331:{gw:1,gh:1,angle:45,sq:false},333:{gw:2,gh:1,angle:22.5,sq:false}, - 337:{gw:1,gh:1,angle:45,sq:false},339:{gw:2,gh:1,angle:22.5,sq:false}, - 343:{gw:1,gh:1,angle:45,sq:false},345:{gw:2,gh:1,angle:22.5,sq:false}, - 353:{gw:1,gh:1,angle:45,sq:false},355:{gw:2,gh:1,angle:22.5,sq:false}, - 358:{gw:1,gh:1,angle:45,sq:true}, - 363:{gw:1,gh:1,angle:45,sq:false},364:{gw:2,gh:1,angle:22.5,sq:false}, - 366:{gw:1,gh:1,angle:45,sq:false},367:{gw:2,gh:1,angle:22.5,sq:false}, - 371:{gw:1,gh:1,angle:45,sq:false},372:{gw:2,gh:1,angle:22.5,sq:false}, - 483:{gw:1,gh:1,angle:45,sq:false},484:{gw:2,gh:1,angle:22.5,sq:false}, - 492:{gw:1,gh:1,angle:45,sq:false},493:{gw:2,gh:1,angle:22.5,sq:false}, - 651:{gw:1,gh:1,angle:45,sq:false},652:{gw:2,gh:1,angle:22.5,sq:false}, - 665:{gw:1,gh:1,angle:45,sq:false},666:{gw:2,gh:1,angle:22.5,sq:false}, - 681:{gw:1,gh:1,angle:45,sq:false},682:{gw:2,gh:1,angle:22.5,sq:false}, - 683:{gw:1,gh:1,angle:45,sq:false},684:{gw:2,gh:1,angle:22.5,sq:false}, - 685:{gw:0.85,gh:0.85,angle:45,sq:false},686:{gw:1.85,gh:0.933,angle:22.5,sq:false}, - 687:{gw:1,gh:1,angle:45,sq:false},688:{gw:2,gh:1,angle:22.5,sq:false}, - 689:{gw:1,gh:1,angle:45,sq:false},690:{gw:2,gh:1,angle:22.5,sq:false}, - 691:{gw:1,gh:1,angle:45,sq:false},692:{gw:2,gh:1,angle:22.5,sq:false}, - 693:{gw:1,gh:1,angle:45,sq:false},694:{gw:2,gh:1,angle:22.5,sq:false}, - 695:{gw:1,gh:1,angle:45,sq:false},696:{gw:2,gh:1,angle:22.5,sq:false}, - 697:{gw:1,gh:1,angle:45,sq:false},698:{gw:2,gh:1,angle:22.5,sq:false}, - 699:{gw:0.85,gh:0.85,angle:45,sq:false},700:{gw:1.85,gh:0.933,angle:22.5,sq:false}, - 701:{gw:1,gh:1,angle:45,sq:false},702:{gw:2,gh:1,angle:22.5,sq:false}, - 703:{gw:1,gh:1,angle:45,sq:false},704:{gw:2,gh:1,angle:22.5,sq:false}, - 705:{gw:0.767,gh:0.767,angle:45,sq:false},706:{gw:1.733,gh:0.883,angle:22.5,sq:false}, - 707:{gw:1,gh:1,angle:45,sq:false},708:{gw:2,gh:1,angle:22.5,sq:false}, - 709:{gw:1,gh:1,angle:45,sq:false},710:{gw:2,gh:1,angle:22.5,sq:false}, - 711:{gw:1,gh:1,angle:45,sq:false},712:{gw:2,gh:1,angle:22.5,sq:false}, - 713:{gw:1,gh:1,angle:45,sq:false},714:{gw:2,gh:1,angle:22.5,sq:false}, - 715:{gw:1,gh:1,angle:45,sq:false},716:{gw:2,gh:1,angle:22.5,sq:false}, - 726:{gw:1,gh:1,angle:45,sq:false},727:{gw:2,gh:1,angle:22.5,sq:false}, - 728:{gw:1,gh:1,angle:45,sq:false},729:{gw:2,gh:1,angle:22.5,sq:false}, - 730:{gw:1,gh:1,angle:45,sq:false},731:{gw:2,gh:1,angle:22.5,sq:false}, - 732:{gw:1,gh:1,angle:45,sq:false},733:{gw:2,gh:1,angle:22.5,sq:false}, - 762:{gw:0.617,gh:0.583,angle:45,sq:false},763:{gw:1.283,gh:0.6,angle:22.5,sq:false}, - 764:{gw:1,gh:1,angle:45,sq:true},765:{gw:1,gh:1,angle:45,sq:true},766:{gw:1,gh:1,angle:45,sq:true}, - 771:{gw:0.617,gh:0.583,angle:45,sq:false},772:{gw:1.283,gh:0.6,angle:22.5,sq:false}, - 773:{gw:0.9,gh:0.817,angle:45,sq:true},774:{gw:1,gh:0.85,angle:45,sq:true},775:{gw:0.867,gh:0.35,angle:22.5,sq:true}, - 826:{gw:1,gh:1,angle:45,sq:false},827:{gw:1,gh:1,angle:45,sq:false}, - 828:{gw:2,gh:1,angle:22.5,sq:false},829:{gw:2,gh:1,angle:22.5,sq:false}, - 830:{gw:1,gh:1,angle:45,sq:true},831:{gw:1,gh:1,angle:45,sq:true},832:{gw:1,gh:1,angle:45,sq:true},833:{gw:1,gh:1,angle:45,sq:true}, - 877:{gw:1,gh:1,angle:45,sq:false},878:{gw:2,gh:1,angle:22.5,sq:false}, - 886:{gw:1,gh:1,angle:45,sq:false},887:{gw:2,gh:1,angle:22.5,sq:false}, - 888:{gw:1,gh:1,angle:45,sq:false},889:{gw:2,gh:1,angle:22.5,sq:false}, - 895:{gw:1,gh:1,angle:45,sq:false},896:{gw:2,gh:1,angle:22.5,sq:false}, - 960:{gw:0.617,gh:0.583,angle:45,sq:false},961:{gw:1.283,gh:0.6,angle:22.5,sq:false}, - 964:{gw:1,gh:1,angle:45,sq:true},965:{gw:1,gh:1,angle:45,sq:true},966:{gw:1,gh:1,angle:45,sq:true}, - 969:{gw:0.617,gh:0.583,angle:45,sq:false},970:{gw:1.283,gh:0.6,angle:22.5,sq:false}, - 971:{gw:0.9,gh:0.817,angle:45,sq:true},972:{gw:1,gh:0.85,angle:45,sq:true},973:{gw:0.867,gh:0.35,angle:22.5,sq:true}, - 1014:{gw:1,gh:1,angle:45,sq:false},1015:{gw:2,gh:1,angle:22.5,sq:false}, - 1016:{gw:1,gh:1,angle:45,sq:true},1017:{gw:1.008,gh:1,angle:45,sq:true},1018:{gw:1,gh:0.517,angle:22.5,sq:true}, - 1033:{gw:0.617,gh:0.583,angle:45,sq:false},1034:{gw:1.283,gh:0.6,angle:22.5,sq:false}, - 1035:{gw:1,gh:1,angle:45,sq:true},1036:{gw:1,gh:1,angle:45,sq:true}, - 1037:{gw:0.617,gh:0.583,angle:45,sq:false},1038:{gw:1.283,gh:0.6,angle:22.5,sq:false}, - 1039:{gw:1,gh:1,angle:45,sq:true},1040:{gw:1,gh:1,angle:45,sq:true}, - 1041:{gw:1,gh:1,angle:45,sq:false},1042:{gw:2,gh:1,angle:22.5,sq:false}, - 1043:{gw:1,gh:1,angle:45,sq:false},1044:{gw:2,gh:1,angle:22.5,sq:false}, - 1091:{gw:1,gh:1,angle:45,sq:false},1092:{gw:2,gh:1,angle:22.5,sq:false}, - 1093:{gw:1,gh:1,angle:45,sq:true},1094:{gw:1,gh:1,angle:45,sq:true},1108:{gw:2,gh:1,angle:22.5,sq:false}, - 1187:{gw:0.767,gh:0.767,angle:45,sq:false},1188:{gw:1.517,gh:0.767,angle:22.5,sq:false}, - 1189:{gw:1,gh:1,angle:45,sq:true},1190:{gw:1,gh:1,angle:45,sq:true}, - 1198:{gw:1,gh:1,angle:45,sq:false},1199:{gw:2,gh:1,angle:22.5,sq:false}, - 1200:{gw:0.267,gh:0.267,angle:45,sq:true},1201:{gw:0.517,gh:0.267,angle:22.5,sq:true}, - 1256:{gw:1,gh:1,angle:45,sq:false},1257:{gw:2,gh:1,angle:22.5,sq:false}, - 1258:{gw:1,gh:1,angle:45,sq:false},1259:{gw:2,gh:1,angle:22.5,sq:false}, - 1305:{gw:0.617,gh:0.583,angle:45,sq:false},1306:{gw:1.3,gh:0.6,angle:22.5,sq:false}, - 1307:{gw:0.683,gh:0.6,angle:45,sq:true},1308:{gw:1,gh:0.617,angle:45,sq:true},1309:{gw:0.267,gh:0.117,angle:22.5,sq:true}, - 1316:{gw:0.617,gh:0.583,angle:45,sq:false},1317:{gw:1.3,gh:0.6,angle:22.5,sq:false}, - 1318:{gw:0.683,gh:0.6,angle:45,sq:true},1319:{gw:1,gh:0.617,angle:45,sq:true},1320:{gw:0.267,gh:0.117,angle:22.5,sq:true}, - 1325:{gw:1,gh:1,angle:45,sq:true},1326:{gw:1,gh:1,angle:45,sq:true}, - 1338:{gw:1,gh:1,angle:45,sq:false},1339:{gw:2,gh:1,angle:22.5,sq:false}, - 1341:{gw:1,gh:1,angle:45,sq:false},1342:{gw:2,gh:1,angle:22.5,sq:false}, - 1344:{gw:1,gh:1,angle:45,sq:false},1345:{gw:2,gh:1,angle:22.5,sq:false}, - 1717:{gw:1,gh:1,angle:45,sq:false},1718:{gw:2,gh:1,angle:22.5,sq:false}, - 1723:{gw:1,gh:1,angle:45,sq:false},1724:{gw:2,gh:1,angle:22.5,sq:false}, - 1743:{gw:1,gh:1,angle:45,sq:false},1744:{gw:2,gh:1,angle:22.5,sq:false}, - 1745:{gw:1,gh:1,angle:45,sq:false},1746:{gw:2,gh:1,angle:22.5,sq:false}, - 1747:{gw:1,gh:1,angle:45,sq:false},1748:{gw:2,gh:1,angle:22.5,sq:false}, - 1749:{gw:1,gh:1,angle:45,sq:false},1750:{gw:2,gh:1,angle:22.5,sq:false}, - 1758:{gw:1,gh:1,angle:45,sq:false},1759:{gw:2,gh:1,angle:22.5,sq:false}, - 1760:{gw:1,gh:1,angle:45,sq:false},1761:{gw:2,gh:1,angle:22.5,sq:false}, - 1762:{gw:1,gh:1,angle:45,sq:false},1763:{gw:2,gh:1,angle:22.5,sq:false}, - 1773:{gw:2,gh:1,angle:22.5,sq:false},1774:{gw:2,gh:1,angle:22.5,sq:false}, - 1775:{gw:2,gh:1,angle:22.5,sq:false},1776:{gw:2,gh:1,angle:22.5,sq:false}, - 1785:{gw:2,gh:1,angle:22.5,sq:false},1786:{gw:2,gh:1,angle:22.5,sq:false}, - 1787:{gw:2,gh:1,angle:22.5,sq:false},1788:{gw:2,gh:1,angle:22.5,sq:false}, - 1789:{gw:2,gh:1,angle:22.5,sq:false},1790:{gw:2,gh:1,angle:22.5,sq:false}, - 1791:{gw:2,gh:1,angle:22.5,sq:false},1792:{gw:2,gh:1,angle:22.5,sq:false}, - 1794:{gw:2,gh:1,angle:22.5,sq:false},1796:{gw:2,gh:1,angle:22.5,sq:false}, - 1798:{gw:2,gh:1,angle:22.5,sq:false},1800:{gw:2,gh:1,angle:22.5,sq:false}, - 1802:{gw:2,gh:1,angle:22.5,sq:false},1804:{gw:2,gh:1,angle:22.5,sq:false}, - 1806:{gw:2,gh:1,angle:22.5,sq:false},1808:{gw:2,gh:1,angle:22.5,sq:false}, - 1810:{gw:2,gh:1,angle:22.5,sq:false}, - 1899:{gw:1,gh:1,angle:45,sq:false},1900:{gw:2,gh:1,angle:22.5,sq:false}, - 1901:{gw:0.367,gh:0.433,angle:45,sq:true},1902:{gw:0.967,gh:0.45,angle:45,sq:true}, - 1906:{gw:1,gh:1,angle:45,sq:false},1907:{gw:2,gh:1,angle:22.5,sq:false}, -}; -const flyPortal = "fly"; -const cubePortal = "cube"; -const portalWaveType = "portal_wave"; -const portalUfoType = "portal_ufo"; -const allObjects = window.allobjects(); -if (!allObjects[1331]) { - allObjects[1331] = { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_17_front_001.png", - "glow_frame": "portal_17_front_glow_001.png", - "gridH": 2.866666555404663, - "gridW": 1.1333333253860474, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "z": 10, - "portalParticle": true, - "portalParticleColor": 0x00ffff - }; -} - -const _speedPortalIds = [200, 201, 202, 203, 1334]; -for (const _spId of _speedPortalIds) { - if (!allObjects[_spId] || allObjects[_spId].type !== "speed") { - allObjects[_spId] = Object.assign({ - gridW: 1, - gridH: 1, - }, allObjects[_spId] || {}, { type: "speed" }); - } -} - -const objsWithGlow = [1, 2, 3, 4, 6, 7, 83, 8, 39, 103, 392, 35, 36, 40, 140, 141, 62, 65, 66, 68, 195, 196, 1022, 1594]; -for (let obj of objsWithGlow) { - if (allObjects[obj]) { - allObjects[obj].glow = true; - } -} - -window._animatedSprites = []; -window._animTimer = 0; -function getObjectFromId(id) { - return allObjects[id] || null; -} - -window.LevelObject = class LevelObject { - constructor(scene, cameraXRef) { - this._scene = scene; - this._cameraXRef = cameraXRef; - this.additiveContainer = scene.add.container(0, 0).setDepth(-1); - this.container = scene.add.container(0, 0); - this.topContainer = scene.add.container(0, 0).setDepth(13); - this.objects = []; - this.endXPos = 0; - this._groundY = 0; - this._ceilingY = null; - this._flyGroundActive = false; - this._groundAnimFrom = 0; - this._groundAnimTo = 0; - this._groundAnimTime = 0; - this._groundAnimDuration = 0; - this._groundAnimating = false; - this._groundTargetValue = 0; - this._flyFloorY = 0; - this._flyCeilingY = null; - this._flyVisualOnly = false; - this.flyCameraTarget = null; - this._colorTriggers = []; - this._colorTriggerIdx = 0; - this._audioScaleSprites = []; - this._orbSprites = []; - this._coinSprites = []; - this._sawSprites = []; - this._enterEffectTriggers = []; - this._enterEffectTriggerIdx = 0; - this._activeEnterEffect = 0; - this._activeExitEffect = 0; - this._moveTriggers = []; - this._moveTriggerIdx = 0; - this._activeMoveTweens = []; - this._alphaTriggers = []; - this._alphaTriggerIdx = 0; - this._activeAlphaTweens = []; - this._rotateTriggers = []; - this._rotateTriggerIdx = 0; - this._activeRotateTweens = []; - this._pulseTriggers = []; - this._pulseTriggerIdx = 0; - this._activePulses = []; - this._colorChannelSprites = {}; - this._groupSprites = {}; - this._groupOffsets = {}; - this._groupOpacity = {}; - this._groupColliders = {}; - this._sections = []; - this._sectionContainers = []; - this._collisionSections = []; - this._nearbyBuffer = []; - this._visMinSec = -1; - this._visMaxSec = -1; - this._groundStartScreenY = b(0); - this._ceilingStartScreenY = 0; - this._activeStartPosIndex = -1; - this._startPositions = []; - this._debugIdTextsList = []; - this._buildGround(); - } - getStartPositions() { - return this._startPositions.slice().sort((a, b) => a.x - b.x); - } - - fastForwardTriggers(targetX, colorManager) { - const triggers = this._colorTriggers.sort((a, b) => a.x - b.x); - - for (let trigger of triggers) { - if (trigger.x <= targetX) { - colorManager.triggerColor(trigger.index, trigger.color, 0); - } else { - break; - } - } - } - loadLevel(levelData) { - let { - objects: levelObjects, - settings: settingslist - } = parseLevel(levelData); - this._spawnLevelObjects(levelObjects); - this._setUpSettings(settingslist); - window.levelObjects = levelObjects; - window.settingslist = settingslist; - } - _setUpSettings(settingsStr) { - this._initialColors = {}; - this._backgroundId = null; - this._groundId = null; - if (!settingsStr) return; - let pairs = settingsStr.split(","); - window.settingsMap = {}; - for (let i = 0; i + 1 < pairs.length; i += 2) { - settingsMap[pairs[i]] = pairs[i + 1]; - } - let colorStr = settingsMap["kS38"]; - window._backgroundId = settingsMap["kA6"] ? settingsMap["kA6"] : "01"; - if (window._backgroundId.length < 2) { - window._backgroundId = "0"+window._backgroundId; - } - window._groundId = getGroundTextureId(settingsMap["kA7"]); - if (colorStr) { - let channels = colorStr.split("|"); - for (let ch of channels) { - if (!ch) continue; - let props = ch.split("_"); - let colorProps = {}; - for (let j = 0; j + 1 < props.length; j += 2) { - colorProps[parseInt(props[j], 10)] = props[j + 1]; - } - let channelId = parseInt(colorProps[6], 10); - if (!isNaN(channelId)) { - this._initialColors[channelId] = { - r: parseInt(colorProps[1] || "255", 10), - g: parseInt(colorProps[2] || "255", 10), - b: parseInt(colorProps[3] || "255", 10) - }; - } - } - } - let parseColorEntry = (str) => { - if (!str) return null; - let props = str.split("_"); - let cp = {}; - for (let j = 0; j + 1 < props.length; j += 2) { - cp[parseInt(props[j], 10)] = props[j + 1]; - } - return { - r: parseInt(cp[1] || "255", 10), - g: parseInt(cp[2] || "255", 10), - b: parseInt(cp[3] || "255", 10) - }; - }; - if (!this._initialColors[1000] && settingsMap["kS29"]) { - let col = parseColorEntry(settingsMap["kS29"]); - if (col) this._initialColors[1000] = col; - } - if (!this._initialColors[1001] && settingsMap["kS30"]) { - let col = parseColorEntry(settingsMap["kS30"]); - if (col) this._initialColors[1001] = col; - } - } - _buildGround() { - if (window.isEditor) return; // not dealing with ts rn - const scene = this._scene; - window._groundId = window._groundId ? window._groundId : "00"; - - const groundFrame = scene.textures.getFrame("groundSquare_" + window._groundId + "_001.png"); - this._tileW = groundFrame ? groundFrame.width : 1012; - this._groundTiles = []; - this._ceilingTiles = []; - let tileCount = Math.ceil(screenWidth / this._tileW) + 2; - let groundY = b(0); - const startX = -centerX; - for (let i = 0; i < tileCount; i++) { - let tileX = startX + i * this._tileW; - let groundTile = scene.add.image(0, groundY, "groundSquare_" + window._groundId + "_001.png"); - groundTile.setOrigin(0, 0); - groundTile.setTint(17578); - groundTile.setDepth(20); - groundTile._worldX = tileX; - this._groundTiles.push(groundTile); - let ceilingTile = scene.add.image(0, groundY, "groundSquare_" + window._groundId + "_001.png"); - ceilingTile.setOrigin(0, 1); - ceilingTile.setFlipY(true); - ceilingTile.setTint(17578); - ceilingTile.setDepth(20); - ceilingTile.setVisible(false); - ceilingTile._worldX = tileX; - this._ceilingTiles.push(ceilingTile); - } - this._maxGroundWorldX = startX + (tileCount - 1) * this._tileW; - const floorLineFrame = scene.textures.getFrame("GJ_WebSheet", "floorLine_01_001.png"); - const floorLineWidth = floorLineFrame ? floorLineFrame.width : 888; - const floorLineScale = screenWidth / floorLineWidth; - this._groundLine = scene.add.image(screenWidth / 2, groundY - 1, "GJ_WebSheet", "floorLine_01_001.png").setOrigin(0.5, 0).setScale(floorLineScale, 1).setBlendMode(S).setDepth(21).setScrollFactor(0); - this._ceilingLine = scene.add.image(screenWidth / 2, groundY + 1, "GJ_WebSheet", "floorLine_01_001.png").setOrigin(0.5, 1).setScale(floorLineScale, 1).setFlipY(true).setBlendMode(S).setDepth(21).setScrollFactor(0).setVisible(false); - const shadowAlpha = 100 / 255; - this._groundShadowL = scene.add.image(-1, groundY, "GJ_WebSheet", "groundSquareShadow_001.png").setOrigin(0, 0).setScrollFactor(0).setDepth(22).setAlpha(shadowAlpha).setScale(0.7, 1).setBlendMode(E); - this._groundShadowR = scene.add.image(screenWidth + 1, groundY, "GJ_WebSheet", "groundSquareShadow_001.png").setOrigin(1, 0).setScrollFactor(0).setDepth(22).setAlpha(shadowAlpha).setScale(0.7, 1).setFlipX(true).setBlendMode(E); - this._ceilingShadowL = scene.add.image(-1, groundY, "GJ_WebSheet", "groundSquareShadow_001.png").setOrigin(0, 1).setScrollFactor(0).setDepth(22).setAlpha(shadowAlpha).setScale(0.7, 1).setFlipY(true).setBlendMode(E).setVisible(false); - this._ceilingShadowR = scene.add.image(screenWidth + 1, groundY, "GJ_WebSheet", "groundSquareShadow_001.png").setOrigin(1, 1).setScrollFactor(0).setDepth(22).setAlpha(shadowAlpha).setScale(0.7, 1).setFlipX(true).setFlipY(true).setBlendMode(E).setVisible(false); - } - applyGroundTexture() { - if (window.isEditor) return; // not dealing with ts rn - const gId = window._groundId || "00"; - const texKey = "groundSquare_" + gId + "_001.png"; - if (!this._scene.textures.exists(texKey)) return; - const groundFrame = this._scene.textures.getFrame(texKey); - this._tileW = groundFrame ? groundFrame.width : this._tileW; - for (let tile of this._groundTiles) { - tile.setTexture(texKey); - } - for (let tile of this._ceilingTiles) { - tile.setTexture(texKey); - } - } - resizeScreen() { - var newTile; - var newCeilingTile; - const scene = this._scene; - const tileWidth = this._tileW; - const requiredTileCount = Math.ceil(screenWidth / tileWidth) + 2; - const groundY = b(0); - while (this._groundTiles.length < requiredTileCount) { - const newTileX = this._maxGroundWorldX + tileWidth; - let newGroundTile = scene.add.image(0, groundY, "groundSquare_" + window._groundId + "_001.png"); - newGroundTile.setOrigin(0, 0).setTint(((newTile = this._groundTiles[0]) == null ? undefined : newTile.tintTopLeft) || 17578).setDepth(20); - newGroundTile._worldX = newTileX; - this._groundTiles.push(newGroundTile); - let newCeilingTile = scene.add.image(0, groundY, "groundSquare_" + window._groundId + "_001.png"); - newCeilingTile.setOrigin(0, 1).setFlipY(true).setTint(((newCeilingTile = this._groundTiles[0]) == null ? undefined : newCeilingTile.tintTopLeft) || 17578).setDepth(20).setVisible(false); - newCeilingTile._worldX = newTileX; - this._ceilingTiles.push(newCeilingTile); - this._maxGroundWorldX = newTileX; - } - const floorLineFrame = this._scene.textures.getFrame("GJ_WebSheet", "floorLine_01_001.png"); - const floorLineScale = screenWidth / (floorLineFrame ? floorLineFrame.width : 888); - this._groundLine.x = screenWidth / 2; - this._groundLine.setScale(floorLineScale, 1); - this._ceilingLine.x = screenWidth / 2; - this._ceilingLine.setScale(floorLineScale, 1); - this._groundShadowR.x = screenWidth + 1; - this._ceilingShadowR.x = screenWidth + 1; - } - updateGroundTiles(cameraY = 0) { - const cameraX = this._cameraXRef.value; - const tileWidth = this._tileW; - let leftTileIndex; - let rightTileIndex; - let maxWorldX = this._maxGroundWorldX || -Infinity; - const ceilingActive = !this._flyGroundActive && this._flyCeilingY !== null; - if (this._flyVisualOnly && this._flyCeilingY !== null) { - leftTileIndex = b(0) + cameraY; - rightTileIndex = b(this._flyCeilingY) + cameraY; - } else if (this._flyGroundActive && this._groundTargetValue > 0.001) { - let groundTarget = this._groundTargetValue; - let targetGroundY = 620; - let targetCeilingY = 20; - leftTileIndex = this._groundStartScreenY + (targetGroundY - this._groundStartScreenY) * groundTarget; - rightTileIndex = this._ceilingStartScreenY + (targetCeilingY - this._ceilingStartScreenY) * groundTarget; - let groundScreenY = b(0) + cameraY; - if (leftTileIndex > groundScreenY) { - leftTileIndex = groundScreenY; - } - } else { - leftTileIndex = b(0) + cameraY; - rightTileIndex = ceilingActive ? 20 : 0; - } - for (let i = 0; i < this._groundTiles.length; i++) { - let groundTile = this._groundTiles[i]; - let ceilingTile = this._ceilingTiles[i]; - if (groundTile._worldX + tileWidth <= cameraX) { - groundTile._worldX = maxWorldX + tileWidth; - ceilingTile._worldX = groundTile._worldX; - maxWorldX = groundTile._worldX; - this._maxGroundWorldX = maxWorldX; - } - let tileScreenX = groundTile._worldX - cameraX; - groundTile.x = tileScreenX; - groundTile.y = leftTileIndex; - ceilingTile.x = tileScreenX; - ceilingTile.y = rightTileIndex; - ceilingTile.setVisible(this._flyGroundActive && this._groundTargetValue > 0 || ceilingActive); - } - this._groundLine.y = leftTileIndex; - if (this._flyGroundActive && this._groundTargetValue > 0 || ceilingActive) { - this._ceilingLine.y = rightTileIndex; - this._ceilingLine.setVisible(true); - } else { - this._ceilingLine.setVisible(false); - } - this._groundShadowL.y = leftTileIndex; - this._groundShadowR.y = leftTileIndex; - let ceilingVisible = this._flyGroundActive && this._groundTargetValue > 0 || ceilingActive; - this._ceilingShadowL.y = rightTileIndex; - this._ceilingShadowR.y = rightTileIndex; - this._ceilingShadowL.setVisible(ceilingVisible); - this._ceilingShadowR.setVisible(ceilingVisible); - } - shiftGroundTiles(shiftAmount) { - for (let i = 0; i < this._groundTiles.length; i++) { - this._groundTiles[i]._worldX += shiftAmount; - this._ceilingTiles[i]._worldX += shiftAmount; - } - this._maxGroundWorldX += shiftAmount; - } - resetGroundTiles(cameraX) { - const tileWidth = this._tileW; - for (let i = 0; i < this._groundTiles.length; i++) { - this._groundTiles[i]._worldX = cameraX + i * tileWidth; - this._ceilingTiles[i]._worldX = cameraX + i * tileWidth; - } - this._maxGroundWorldX = cameraX + (this._groundTiles.length - 1) * tileWidth; - this.resetGroundState(); - } - resetGroundState() { - this._flyGroundActive = false; - this._groundTargetValue = 0; - this._groundAnimating = false; - this._groundY = 0; - this._ceilingY = null; - this._flyCeilingY = null; - this._flyVisualOnly = false; - this.flyCameraTarget = null; - } - _computeFlyBounds(centerY, height = f, isPortal = false) { - let floorY; - if (isPortal) { - floorY = centerY - f / 2; - } else { - floorY = centerY - height / 2; - } - floorY = Math.floor(floorY / a) * a; - floorY = Math.max(0, floorY); - return { - floorY: floorY, - ceilingY: floorY + height - }; - } - setFlyMode(enabled, centerY, height = f, visualOnly = false) { - if (enabled) { - let bounds = this._computeFlyBounds(centerY, height, visualOnly); - this._flyFloorY = bounds.floorY; - this._flyCeilingY = bounds.ceilingY; - this._flyVisualOnly = visualOnly; - if (visualOnly) { - this._flyGroundActive = true; - } else { - this._flyGroundActive = true; - } - let flyCenter = this._flyFloorY + height / 2; - this.flyCameraTarget = flyCenter - 320 + o; - if (this.flyCameraTarget < 0) { - this.flyCameraTarget = 0; - } - let currentCameraY = this._scene && this._scene._cameraY || 0; - this._groundStartScreenY = b(0) + currentCameraY; - this._ceilingStartScreenY = 0; - this._groundAnimFrom = this._groundTargetValue; - this._groundAnimTo = 1; - this._groundAnimTime = 0; - this._groundAnimDuration = 0.5; - this._groundAnimating = true; - } else { - this.flyCameraTarget = null; - this._flyCeilingY = null; - this._flyFloorY = null; - this._flyVisualOnly = false; - if (this._flyGroundActive) { - this._groundAnimFrom = this._groundTargetValue; - this._groundAnimTo = 0; - this._groundAnimTime = 0; - this._groundAnimDuration = 0.5; - this._groundAnimating = true; - this._flyGroundActive = false; - } else { - this._groundAnimating = false; - this._groundTargetValue = 0; - } - } - } - stepGroundAnimation(deltaTime) { - if (!this._groundAnimating) { - return; - } - this._groundAnimTime += deltaTime; - let progress = this._groundAnimDuration > 0 ? Math.min(this._groundAnimTime / this._groundAnimDuration, 1) : 1; - this._groundTargetValue = this._groundAnimFrom + (this._groundAnimTo - this._groundAnimFrom) * progress; - if (progress >= 1) { - this._groundAnimating = false; - this._groundTargetValue = this._groundAnimTo; - if (this._groundAnimTo === 0) { - this._flyGroundActive = false; - } - } - } - getFloorY() { - if (this._flyGroundActive) { - if (this._flyVisualOnly) { - return 0; - } - return this._flyFloorY; - } else { - return 0; - } - } - getCeilingY() { - if (this._flyCeilingY !== null) { - return this._flyCeilingY; - } else { - return null; - } - } - _applyVisualProps(scene, sprite, frameName, objectData, colorData = null) { - if (!sprite) { - return; - } - let { - dx: offsetX, - dy: offsetY - } = function (scene, frameName) { - let textureInfo = getAtlasFrame(scene, frameName); - if (!textureInfo) { - return { - dx: 0, - dy: 0 - }; - } - let frame = scene.textures.get(textureInfo.atlas).get(textureInfo.frame); - if (!frame) { - return { - dx: 0, - dy: 0 - }; - } - let customData = frame.customData || {}; - if (customData.gjSpriteOffset) { - return { - dx: customData.gjSpriteOffset.x || 0, - dy: -(customData.gjSpriteOffset.y || 0) - }; - } - let realWidth = frame.realWidth; - let realHeight = frame.realHeight; - let frameWidth = frame.width; - let frameHeight = frame.height; - let sourceX = 0; - let sourceY = 0; - if (customData.spriteSourceSize) { - sourceX = customData.spriteSourceSize.x || 0; - sourceY = customData.spriteSourceSize.y || 0; - } - return { - dx: realWidth / 2 - (sourceX + frameWidth / 2), - dy: realHeight / 2 - (sourceY + frameHeight / 2) - }; - }(scene, frameName); - if (objectData.flipX) { - sprite.setFlipX(true); - offsetX = -offsetX; - } - if (objectData.flipY) { - sprite.setFlipY(true); - offsetY = -offsetY; - } - let totalRotation = (sprite.getData("gjBaseRotationDeg") || 0) + objectData.rot; - if (totalRotation !== 0) { - sprite.setAngle(totalRotation); - let rad = totalRotation * Math.PI / 180; - let cosR = Math.cos(rad); - let sinR = Math.sin(rad); - let rx = offsetX * cosR - offsetY * sinR; - let ry = offsetX * sinR + offsetY * cosR; - offsetX = rx; - offsetY = ry; - } - sprite.x += offsetX; - sprite.y += offsetY; - if (objectData.scale !== 1) { - sprite.setScale(objectData.scale); - } - if (colorData) { - if (colorData.tint !== undefined) { - sprite.setTint(colorData.tint); - } else if (colorData.black) { - sprite.setTint(0); - } - } - } - _addVisualSprite(sprite, objectData = null) { - if (sprite) { - if (objectData && objectData.blend === "additive") { - sprite.setBlendMode(S); - sprite._eeLayer = 0; - } else if (objectData && objectData._portalFront) { - sprite._eeLayer = 2; - } else if (objectData && objectData.z !== undefined && objectData.z < 0) { - sprite._eeLayer = 0; - } else { - sprite._eeLayer = 1; - } - } - } - _getGlowFrameName(frameName) { - if (frameName && frameName.endsWith("_001.png")) { - return frameName.replace("_001.png", "_glow_001.png"); - } else { - return null; - } - } - _updateGlowVisibility = () => { - if (!this._glowSprites) return; - for (const glow of this._glowSprites) { - glow.setVisible(!window.isEditor || window.showEditorGlow); - } - }; - _addGlowSprite(scene, x, y, frameName, objectData, worldX) { - let glowFrameName = this._getGlowFrameName(frameName); - if (!glowFrameName) { - return; - } - if (!getAtlasFrame(scene, glowFrameName) && !scene.textures.exists(glowFrameName)) { - return; - } - let glowSprite = addImageToScene(scene, x, y, glowFrameName); - if (glowSprite) { - this._applyVisualProps(scene, glowSprite, glowFrameName, objectData); - glowSprite.setBlendMode(S); - glowSprite._eeLayer = 0; - if (!this._glowSprites) { - this._glowSprites = []; - } - this._glowSprites.push(glowSprite); - glowSprite.setVisible(!window.isEditor || window.showEditorGlow); - if (worldX !== undefined) { - glowSprite._eeWorldX = worldX; - glowSprite._eeBaseY = y; - this._addToSection(glowSprite); - } - return glowSprite; - } - return null; - } - _spawnObject(levelObj) { - this.objectSprites = this.objectSprites || []; - - const scene = this._scene; - const objectDef = getObjectFromId(levelObj.id); - - if (objectDef && objectDef.type === triggerType) { - if (levelObj.id === 29 || levelObj.id === 30) { - this._colorTriggers.push({ - x: levelObj.x * 2, - index: levelObj.id === 29 ? 1000 : 1001, - color: { - r: parseInt(levelObj._raw[7] ?? 255, 10), - g: parseInt(levelObj._raw[8] ?? 255, 10), - b: parseInt(levelObj._raw[9] ?? 255, 10) - }, - duration: parseFloat(levelObj._raw[10] ?? 0), - tintGround: levelObj._raw[14] === "1" - }); - } - - if (objectDef.enterEffect) { - this._enterEffectTriggers.push({ - x: levelObj.x * 2, - effect: objectDef.enterEffect - }); - } - - if (levelObj.id === 901) { - const _raw = levelObj._raw; - this._moveTriggers.push({ - x: levelObj.x * 2, - duration: parseFloat(_raw[10] ?? 0), - easingType: parseInt(_raw[30] ?? 0, 10), - easingRate: parseFloat(_raw[85] ?? 2), - targetGroup: parseInt(_raw[51] ?? 0, 10), - offsetX: parseFloat(_raw[28] ?? 0) * 2, - offsetY: parseFloat(_raw[29] ?? 0) * 2, - lockX: _raw[58] === "1", - lockY: _raw[59] === "1" - }); - } - - if (levelObj.id === 1007) { - const _raw = levelObj._raw; - this._alphaTriggers.push({ - x: levelObj.x * 2, - duration: parseFloat(_raw[10] ?? 0), - targetGroup: parseInt(_raw[51] ?? 0, 10), - targetOpacity: Math.max(0, Math.min(1, parseFloat(_raw[35] ?? 1))) - }); - } - - if (levelObj.id === 899) { - const _raw = levelObj._raw; - const targetChannel = parseInt(_raw[23] ?? 0, 10); - if (targetChannel > 0) { - this._colorTriggers.push({ - x: levelObj.x * 2, - index: targetChannel, - color: { - r: parseInt(_raw[7] ?? 255, 10), - g: parseInt(_raw[8] ?? 255, 10), - b: parseInt(_raw[9] ?? 255, 10) - }, - duration: parseFloat(_raw[10] ?? 0), - tintGround: _raw[14] === "1", - opacity: parseFloat(_raw[35] ?? 1) - }); - } - } - - if (levelObj.id === 1346) { - const _raw = levelObj._raw; - this._rotateTriggers.push({ - x: levelObj.x * 2, - targetGroup: parseInt(_raw[51] ?? 0, 10), - degrees: parseFloat(_raw[68] ?? 0), - duration: parseFloat(_raw[10] ?? 0), - easingType: parseInt(_raw[30] ?? 0, 10), - easingRate: parseFloat(_raw[85] ?? 2), - lockRotation: _raw[70] === "1", - times360: parseInt(_raw[69] ?? 0, 10), - centerGroup: parseInt(_raw[71] ?? 0, 10) - }); - } - - if (levelObj.id === 1006) { - const _raw = levelObj._raw; - const targetType = parseInt(_raw[52] ?? 0, 10); - this._pulseTriggers.push({ - x: levelObj.x * 2, - targetGroup: targetType === 1 ? parseInt(_raw[51] ?? 0, 10) : 0, - targetChannel: targetType === 0 ? parseInt(_raw[51] ?? 0, 10) : 0, - targetType: targetType, - color: { - r: parseInt(_raw[7] ?? 255, 10), - g: parseInt(_raw[8] ?? 255, 10), - b: parseInt(_raw[9] ?? 255, 10) - }, - fadeIn: parseFloat(_raw[45] ?? 0), - hold: parseFloat(_raw[46] ?? 0), - fadeOut: parseFloat(_raw[47] ?? 0) - }); - } - - if (levelObj.id === 31) { - this._startPositions.push({ - x: 2 * levelObj.x, - y: 2 * levelObj.y, - gameMode: levelObj.gameMode, - miniMode: levelObj.miniMode, - speed: levelObj.speed, - mirrored: levelObj.mirrored, - gravityFlipped: levelObj.flipGravity - }); - } - - return objectDef; - } - - if (this._nextObjectId === undefined) { - this._nextObjectId = 0; - } - const linkedObjectId = this._nextObjectId++; - let hasCollisionEntry = false; - - const worldX = levelObj.x * 2; - const worldY = levelObj.y * 2; - - if (worldX > this._lastObjectX) { - this._lastObjectX = worldX; - } - - let frameName = objectDef ? objectDef.frame : null; - if (objectDef && objectDef.randomFrames) { - frameName = objectDef.randomFrames[Math.floor(Math.random() * objectDef.randomFrames.length)]; - } - - const registerObjectSprite = (spr) => { - if (!spr) return; - spr._eeObjectId = linkedObjectId; - if (!this.objectSprites[linkedObjectId]) this.objectSprites[linkedObjectId] = []; - this.objectSprites[linkedObjectId].push(spr); - }; - - if (frameName) { - const spriteWorldX = worldX; - const baseY = b(worldY); - const isPortalFront = - (objectDef.type === portalType || objectDef.type === speedType) && - frameName.includes("_front_"); - - const zLayer = - levelObj.zLayer || (objectDef.default_z_layer !== undefined ? objectDef.default_z_layer : 0); - const zOrd = - levelObj.zOrder || (objectDef.default_z_order !== undefined ? objectDef.default_z_order : 0); - const depthBase = { "-3": -6, "-1": -3, 0: 0, 1: 3, 3: 6, 5: 9 }; - const objZDepth = (depthBase[zLayer] !== undefined ? depthBase[zLayer] : 0) + zOrd * 0.01; - - let col1 = levelObj.color1 || (objectDef.default_base_color_channel !== undefined ? objectDef.default_base_color_channel : 0); - if (col1 === 0 && (objectDef.type === solidType || objectDef.type === hazardType)) col1 = 1; - - const col2 = levelObj.color2 || (objectDef.default_detail_color_channel !== undefined ? objectDef.default_detail_color_channel : -1); - const canColor = objectDef.can_color !== false; - - const registerColor = (spr, ch) => { - if (ch > 0 && canColor && spr && !spr._isSaw) { - spr._eeColorChannel = ch; - if (!this._colorChannelSprites[ch]) this._colorChannelSprites[ch] = []; - this._colorChannelSprites[ch].push(spr); - } - }; - - const objGids = levelObj.groups - ? levelObj.groups.split(".").map(Number).filter(n => n > 0) - : null; - - const registerToGroups = (spr, baseWorldX, baseBaseY) => { - if (!objGids || !objGids.length || !spr) return; - spr._origWorldX = baseWorldX; - spr._origBaseY = baseBaseY; - for (const gid of objGids) { - if (!this._groupSprites[gid]) this._groupSprites[gid] = []; - this._groupSprites[gid].push(spr); - } - }; - - let portalBackSprite = null; - if (isPortalFront) { - const backFrame = frameName.replace("_front_", "_back_"); - portalBackSprite = addImageToScene(scene, spriteWorldX, baseY, backFrame); - if (portalBackSprite) { - this._applyVisualProps(scene, portalBackSprite, backFrame, levelObj); - portalBackSprite._eeLayer = 1; - portalBackSprite._eeWorldX = worldX; - portalBackSprite._eeBaseY = baseY; - portalBackSprite._eeZDepth = objZDepth - 0.005; - portalBackSprite._eeOrigAlpha = 1; - this._addToSection(portalBackSprite); - registerToGroups(portalBackSprite, worldX, baseY); - registerColor(portalBackSprite, col1); - registerObjectSprite(portalBackSprite); - } - } - - let orbGlow = null; - if (objectDef.glow) { - orbGlow = this._addGlowSprite(scene, spriteWorldX, baseY, frameName, levelObj, worldX); - if (orbGlow) { - orbGlow._eeZDepth = objZDepth - 0.003; - orbGlow._eeOrigAlpha = 1; - registerToGroups(orbGlow, worldX, baseY); - registerObjectSprite(orbGlow); - } - } - - const visualDef = isPortalFront ? { ...objectDef, _portalFront: true } : objectDef; - const sprite = addImageToScene(scene, spriteWorldX, baseY, frameName); - - if (sprite) { - this._applyVisualProps(scene, sprite, frameName, levelObj, objectDef); - if (portalBackSprite) { - portalBackSprite.x = sprite.x; - portalBackSprite.y = sprite.y; - } - this._addVisualSprite(sprite, visualDef); - sprite._eeWorldX = worldX; - sprite._eeBaseY = baseY; - sprite._eeZDepth = objZDepth; - sprite._eeOrigAlpha = 1; - registerColor(sprite, col1); - this._addToSection(sprite); - registerObjectSprite(sprite); - - if (objGids && objGids.length) { - sprite._eeGroups = objGids; - registerToGroups(sprite, sprite._eeWorldX, sprite._eeBaseY); - } - - if (objectDef && objectDef.animFrames) { - sprite._animFrames = objectDef.animFrames; - sprite._animInterval = objectDef.animInterval || 100; - sprite._animIdx = 0; - sprite._animScene = scene; - window._animatedSprites.push(sprite); - } - - if (objectDef && objectDef.type === ringType) { - sprite.setScale(0.75); - sprite._eeAudioScale = true; - sprite._orbId = levelObj.id; - this._orbSprites.push(sprite); - - if (orbGlow) { - orbGlow.setScale(0.75); - orbGlow._eeAudioScale = true; - orbGlow._orbId = levelObj.id; - this._orbSprites.push(orbGlow); - } - } - - if (objectDef && objectDef.type === coinType) { - sprite._coinWorldX = worldX; - sprite._coinWorldY = worldY; - sprite._coinBaseScale = sprite.scaleX || 1; - this._coinSprites.push(sprite); - } - - if (frameName.indexOf("sawblade") >= 0) { - sprite.setTint(0x000000); - sprite._isSaw = true; - this._sawSprites.push(sprite); - - const sawMirror = addImageToScene(scene, spriteWorldX, baseY, frameName); - if (sawMirror) { - this._applyVisualProps(scene, sawMirror, frameName, levelObj, objectDef); - sawMirror.setTint(0x000000); - sawMirror.rotation = sprite.rotation + Math.PI; - sawMirror._isSaw = true; - sawMirror._eeWorldX = worldX; - sawMirror._eeBaseY = baseY; - this._addToSection(sawMirror); - this._addVisualSprite(sawMirror); - this._sawSprites.push(sawMirror); - registerToGroups(sawMirror, worldX, baseY); - registerObjectSprite(sawMirror); - } - } - } - - if (objectDef && (objectDef.type === solidType || objectDef.type === hazardType)) { - const overlayFrame = frameName.replace("_001.png", "_2_001.png"); - const overlaySprite = getAtlasFrame(scene, overlayFrame) ? addImageToScene(scene, spriteWorldX, baseY, overlayFrame) : null; - - if (overlaySprite) { - this._applyVisualProps(scene, overlaySprite, overlayFrame, levelObj); - this._addVisualSprite(overlaySprite); - overlaySprite._eeWorldX = worldX; - overlaySprite._eeBaseY = baseY; - overlaySprite._eeZDepth = objZDepth + 0.002; - overlaySprite._eeOrigAlpha = 1; - - let oc2 = col2; - if (oc2 <= 0) oc2 = 2; - registerColor(overlaySprite, oc2); - - this._addToSection(overlaySprite); - registerToGroups(overlaySprite, worldX, baseY); - registerObjectSprite(overlaySprite); - } - } - - if (objectDef.children) { - for (const childDef of objectDef.children) { - let childDx = childDef.dx || 0; - let childDy = childDef.dy || 0; - - if (childDef.localDx !== undefined || childDef.localDy !== undefined) { - let localDx = childDef.localDx || 0; - let localDy = childDef.localDy || 0; - - if (levelObj.flipX) { - localDx = -localDx; - } - if (levelObj.flipY) { - localDy = -localDy; - } - - const rot = (levelObj.rot || 0) * Math.PI / 180; - childDx = localDx * Math.cos(rot) - localDy * Math.sin(rot); - childDy = localDx * Math.sin(rot) + localDy * Math.cos(rot); - } - - const childWorldX = worldX + childDx; - const childBaseY = baseY + childDy; - const childSprite = addImageToScene(scene, spriteWorldX + childDx, baseY + childDy, childDef.frame); - - if (childSprite) { - this._applyVisualProps(scene, childSprite, childDef.frame, levelObj, childDef); - - if (childDef.audioScale) { - childSprite.setScale(0.1); - childSprite.setAlpha(0.9); - childSprite._eeAudioScale = true; - this._audioScaleSprites.push(childSprite); - } - - if ((childDef.z !== undefined ? childDef.z : -1) < 0) { - childSprite._eeLayer = 1; - childSprite._eeBehindParent = true; - } else { - this._addVisualSprite(childSprite, childDef); - } - - childSprite._eeWorldX = childWorldX; - childSprite._eeBaseY = childBaseY; - childSprite._eeZDepth = objZDepth + ((childDef.z !== undefined ? childDef.z : -1) < 0 ? -0.003 : 0.001); - childSprite._eeOrigAlpha = 1; - registerColor(childSprite, col1); - this._addToSection(childSprite); - registerToGroups(childSprite, childWorldX, childBaseY); - registerObjectSprite(childSprite); - - if (frameName.indexOf("sawblade") >= 0) { - childSprite.setTint(0x000000); - childSprite._isSaw = true; - this._sawSprites.push(childSprite); - - const childMirror = addImageToScene(scene, spriteWorldX + childDx, baseY + childDy, childDef.frame); - if (childMirror) { - this._applyVisualProps(scene, childMirror, childDef.frame, levelObj, childDef); - childMirror.setTint(0x000000); - childMirror.rotation = childSprite.rotation + Math.PI; - childMirror._isSaw = true; - childMirror._eeWorldX = childWorldX; - childMirror._eeBaseY = childBaseY; - this._addToSection(childMirror); - this._sawSprites.push(childMirror); - registerToGroups(childMirror, childWorldX, childBaseY); - registerObjectSprite(childMirror); - } - } - } - } - } - } else if (objectDef && objectDef.portalParticle && frameName) { - const particleWorldX = worldX; - const particleWorldY = b(worldY); - const radiusFactor = 2; - const particleX = particleWorldX - radiusFactor * 5; - const particleY = particleWorldY; - const portalRot = (levelObj.rot || 0) * Math.PI / 180; - - const source = { - getRandomPoint: p => { - const angle = (Math.random() * 190 + 85) * Math.PI / 180; - const dist = radiusFactor * 20 + Math.random() * 40 * radiusFactor; - const rx = Math.cos(angle) * dist; - const ry = Math.sin(angle) * dist; - p.x = rx * Math.cos(portalRot) - ry * Math.sin(portalRot); - p.y = rx * Math.sin(portalRot) + ry * Math.cos(portalRot); - return p; - } - }; - - const maxDistance = 20; - const particles = scene.add.particles(particleX, particleY, "GJ_WebSheet", { - frame: "square.png", - lifespan: { - min: 200, - max: 1000 - }, - speed: 0, - scale: { - start: 0.75, - end: 0.125 - }, - alpha: { - start: 0.5, - end: 0 - }, - tint: objectDef.portalParticleColor, - blendMode: Phaser.BlendModes.ADD, - frequency: 20, - maxParticles: 0, - emitting: true, - emitZone: { - type: "random", - source: source - }, - emitCallback: particle => { - const vx = -particle.x; - const vy = -particle.y; - const len = Math.sqrt(vx * vx + vy * vy) || 1; - const lifeSeconds = particle.life / 1000; - const speed = (len - maxDistance) / (lifeSeconds || 0.3); - particle.velocityX = vx / len * speed; - particle.velocityY = vy / len * speed; - } - }); - - particles.setDepth(14); - particles._eeLayer = 2; - particles._eeWorldX = worldX; - particles._eeBaseY = particleY; - this._addToSection(particles); - } - - if (objectDef) { - const registerCollider = col => { - col._baseX = col.x; - col._baseY = col.y; - col._origBaseX = col.x; - col._origBaseY = col.y; - col._eeObjectId = linkedObjectId; - - if (!this.objectSprites[linkedObjectId]) { - this.objectSprites[linkedObjectId] = []; - } - - if (levelObj.groups) { - const cgids = levelObj.groups.split(".").map(Number).filter(n => n > 0); - col._eeGroups = cgids; - for (const cgid of cgids) { - if (!this._groupColliders[cgid]) this._groupColliders[cgid] = []; - this._groupColliders[cgid].push(col); - } - } - }; - - if (objectDef.type === solidType && objectDef.gridW > 0 && objectDef.gridH > 0) { - const w = objectDef.gridW * a; - const h = objectDef.gridH * a; - const collider = new Collider(solidType, worldX, worldY, w, h, levelObj.rot || 0); - collider.objid = levelObj.id; - registerCollider(collider); - this.objects.push(collider); - hasCollisionEntry = true; - this._addCollisionToSection(collider); - } else if (objectDef.type === hazardType) { - let hitW = 0; - let hitH = 0; - - if ( - objectDef.spriteW > 0 && - objectDef.spriteH > 0 && - objectDef.hitboxScaleX !== undefined && - objectDef.hitboxScaleY !== undefined - ) { - hitW = objectDef.spriteW * objectDef.hitboxScaleX * 2; - hitH = objectDef.spriteH * objectDef.hitboxScaleY * 2; - } else if (objectDef.gridW > 0 && objectDef.gridH > 0) { - hitW = objectDef.gridW * 12; - hitH = objectDef.gridH * 24; - } - - const hasHitboxRadius = objectDef.hitbox_radius !== undefined && objectDef.hitbox_radius !== null; - const worldHitboxRadius = hasHitboxRadius ? objectDef.hitbox_radius * 2 : 0; - - if (hasHitboxRadius && hitW === 0) { - hitW = worldHitboxRadius * 2; - hitH = worldHitboxRadius * 2; - } - - if (hitW > 0 && hitH > 0) { - const collider = new Collider(hazardType, worldX, worldY, hitW, hitH, levelObj.rot || 0); - if (hasHitboxRadius) collider.hitbox_radius = worldHitboxRadius; - registerCollider(collider); - this.objects.push(collider); - hasCollisionEntry = true; - this._addCollisionToSection(collider); - } - } else if (objectDef.type === portalType) { - const portalW = objectDef.gridW * a; - const portalH = objectDef.gridH * a; - const portalSub = objectDef.sub || { - 10: "gravity_flip", - 11: "gravity_normal", - 12: "cube", - 13: "fly", - 45: "mirrora", - 46: "mirrorb", - 47: "ball", - 660: "wave", - 111: "ufo", - 1331: "spider", - 286: "dual_on", - 287: "dual_off" - }[levelObj.id]; - - const portalColliderType = { - gravity_flip: "portal_gravity_down", - gravity_normal: "portal_gravity_up", - gravity_toggle: "portal_gravity_toggle", - [flyPortal]: "portal_fly", - fly: "portal_fly", - [cubePortal]: "portal_cube", - cube: "portal_cube", - ball: "portal_ball", - wave: portalWaveType, - ufo: portalUfoType, - spider: "portal_spider", - mirrora: "portal_mirror_on", - mirrorb: "portal_mirror_off", - shrink: "portal_mini_on", - grow: "portal_mini_off", - dual_on: "portal_dual_on", - dual_off: "portal_dual_off" - }[portalSub] || null; - - if (portalColliderType) { - const collider = new Collider(portalColliderType, worldX, worldY, portalW, portalH, levelObj.rot || 0); - collider.portalY = worldY; - registerCollider(collider); - this.objects.push(collider); - hasCollisionEntry = true; - this._addCollisionToSection(collider); - } - } else if (objectDef.type === padType) { - const padW = objectDef.gridW * a; - const padH = objectDef.gridH * a; - const padObj = new Collider(jumpPadType, worldX, worldY, padW, padH, levelObj.rot || 0); - padObj.padId = levelObj.id; - registerCollider(padObj); - this.objects.push(padObj); - hasCollisionEntry = true; - this._addCollisionToSection(padObj); - } else if (objectDef.type === ringType) { - const orbW = objectDef.gridW * a; - const orbH = objectDef.gridH * a; - const orbObj = new Collider(jumpRingType, worldX, worldY, orbW, orbH, levelObj.rot || 0); - orbObj.orbId = levelObj.id; - orbObj.orbRotation = levelObj.rot || 0; - orbObj._dashHoldTicks = 0; - registerCollider(orbObj); - this.objects.push(orbObj); - hasCollisionEntry = true; - this._addCollisionToSection(orbObj); - } else if (objectDef.type === coinType) { - const coinW = (objectDef.gridW || 1) * a; - const coinH = (objectDef.gridH || 1) * a; - const coinObj = new Collider(coinType, worldX, worldY, coinW, coinH, levelObj.rot || 0); - coinObj.coinId = levelObj.id; - registerCollider(coinObj); - this.objects.push(coinObj); - hasCollisionEntry = true; - this._addCollisionToSection(coinObj); - } else if (objectDef.type === speedType) { - const speedW = (objectDef.gridW || 1) * a; - const speedH = (objectDef.gridH || 1) * a; - const speedObj = new Collider(speedType, worldX, worldY, speedW, speedH, levelObj.rot || 0); - speedObj.portalY = worldY; - - const speedMap = { - 200: SpeedPortal.HALF, - 201: SpeedPortal.ONE_TIMES, - 202: SpeedPortal.TWO_TIMES, - 203: SpeedPortal.THREE_TIMES, - 1334: SpeedPortal.FOUR_TIMES - }; - - speedObj.speedValue = speedMap[levelObj.id] ?? SpeedPortal.ONE_TIMES; - speedObj.speedId = levelObj.id; - registerCollider(speedObj); - this.objects.push(speedObj); - hasCollisionEntry = true; - this._addCollisionToSection(speedObj); - } - - if (!hasCollisionEntry) { - this.objects.push({ - type: objectDef.type || decoType, - activated: false, - x: 0, - y: 0 - }); - } - } - - return objectDef; -} - - _spawnLevelObjects(_0x35f1ae) { - const unknownObjectIds = new Set(); - this._lastObjectX = 0; - this._nextObjectId = 0; - - for (const levelObj of _0x35f1ae) { - const objectDef = this._spawnObject(levelObj); - if (!objectDef) { - unknownObjectIds.add(levelObj.id); - } - } - - unknownObjectIds.size; - if (unknownObjectIds.size > 0) { - } - - const colTypeCounts = {}; - for (const obj of this.objects) { - colTypeCounts[obj.type] = (colTypeCounts[obj.type] || 0) + 1; - } - - this._colorTriggers.sort((a, b) => a.x - b.x); - this._enterEffectTriggers.sort((a, b) => a.x - b.x); - this._moveTriggers.sort((a, b) => a.x - b.x); - this._alphaTriggers.sort((a, b) => a.x - b.x); - this._rotateTriggers.sort((a, b) => a.x - b.x); - this._pulseTriggers.sort((a, b) => a.x - b.x); - - for (let si = 0; si < this._sectionContainers.length; si++) { - const sc = this._sectionContainers[si]; - if (sc) { - if (sc.normal && sc.normal.list && sc.normal.list.length > 1) sc.normal.sort("depth"); - if (sc.additive && sc.additive.list && sc.additive.list.length > 1) sc.additive.sort("depth"); - } - } - - this.endXPos = Math.max(screenWidth + 1200, this._lastObjectX + 680); - - if (window.createObjectIds) { - const scene = this._scene; - const worldContainer = this.container || this._container; - - if (worldContainer) { - this._debugIdTextsList = []; - - _0x35f1ae.forEach((levelObj, index) => { - if (!levelObj || levelObj.id === undefined) return; - - const worldX = levelObj.x * 2; - const textY = typeof b === 'function' ? b(levelObj.y * 2) : levelObj.y * 2; - - const idText = scene.add.text(worldX, textY, String(levelObj.id), { - fontFamily: 'monospace', - fontSize: '30px', - fill: '#00ff00', - stroke: '#000000', - strokeThickness: 3 - }); - idText.setOrigin(0.5); - idText.setDepth(999); - idText.setVisible(window.showObjectIds); - - worldContainer.add(idText); - - idText.preUpdate = () => { - idText.x = worldX; - idText.y = textY; - }; - - scene.sys.updateList.add(idText); - this._debugIdTextsList.push(idText); - - if (!this.objectSprites[index]) this.objectSprites[index] = []; - this.objectSprites[index].push(idText); - }); - } - } - } - createEndPortal(_0x41fbdb) { - if (window.isEditor) return; // not dealing with ts rn - var _0x400605; - if (this.endXPos <= 0) { - return; - } - const _0x3b56d4 = this.endXPos; - const _0x1c3aea = b(240); - const _0x46064b = Math.round(16); - this._endPortalContainer = _0x41fbdb.add.container(_0x3b56d4, _0x1c3aea); - for (let _0x2a327c = 0; _0x2a327c < _0x46064b; _0x2a327c++) { - const _0xacf7ef = _0x41fbdb.add.image(0, (_0x2a327c - Math.floor(_0x46064b / 2)) * a, "GJ_WebSheet", "square_02_001.png").setAngle(-90); - this._endPortalContainer.add(_0xacf7ef); - } - this.container.add(this._endPortalContainer); - this._endPortalShine = _0x41fbdb.add.image(_0x3b56d4 - 58, _0x1c3aea, "GJ_WebSheet", "gradientBar.png"); - const _0x3e25a9 = ((_0x400605 = _0x41fbdb.textures.getFrame("GJ_WebSheet", "gradientBar.png")) == null ? undefined : _0x400605.height) || 64; - this._endPortalShine.setBlendMode(S); - this._endPortalShine.setTint(window.mainColor); - this._endPortalShine.setScale(1, 960 / _0x3e25a9); - this.additiveContainer.add(this._endPortalShine); - const _0x58cedb = _0x3b56d4 - 30; - const _0x4f52b7 = { - getRandomPoint: _0x4f04dd => { - const _0x53ec71 = (85 + Math.random() * 190) * Math.PI / 180; - const _0x42e60c = 320 + (Math.random() * 2 - 1) * 80; - _0x4f04dd.x = Math.cos(_0x53ec71) * _0x42e60c; - _0x4f04dd.y = Math.sin(_0x53ec71) * _0x42e60c; - return _0x4f04dd; - } - }; - this._endPortalEmitter = _0x41fbdb.add.particles(_0x58cedb, _0x1c3aea, "GJ_WebSheet", { - frame: "square.png", - lifespan: { - min: 200, - max: 1000 - }, - speed: 0, - scale: { - start: 0.75, - end: 0.125 - }, - alpha: { - start: 1, - end: 0 - }, - tint: window.mainColor, - blendMode: Phaser.BlendModes.ADD, - frequency: 10, - maxParticles: 100, - emitting: true, - emitZone: { - type: "random", - source: _0x4f52b7 - }, - emitCallback: _0x2daff4 => { - const _0x5e30d8 = -_0x2daff4.x; - const _0x17ba71 = -_0x2daff4.y; - const _0x3c5c52 = Math.sqrt(_0x5e30d8 * _0x5e30d8 + _0x17ba71 * _0x17ba71) || 1; - const _0x279521 = (_0x3c5c52 - 20) / (_0x2daff4.life / 1000 || 0.3); - _0x2daff4.velocityX = _0x5e30d8 / _0x3c5c52 * _0x279521; - _0x2daff4.velocityY = _0x17ba71 / _0x3c5c52 * _0x279521; - } - }); - this._endPortalEmitter.setDepth(14); - this.topContainer.add(this._endPortalEmitter); - this._endPortalGameY = 240; - } - updateEndPortalY(_0x26f0ab, _0x43c4d1) { - if (!this._endPortalContainer) { - return; - } - const _0x50aa7d = 140 + _0x26f0ab; - let _0x1be4c3; - _0x1be4c3 = _0x43c4d1 ? _0x50aa7d : Math.max(240, _0x50aa7d); - const _0x32e645 = b(_0x1be4c3); - this._endPortalContainer.y = _0x32e645; - this._endPortalShine.y = _0x32e645; - this._endPortalEmitter.y = _0x32e645; - this._endPortalGameY = _0x1be4c3; - } - checkColorTriggers(_0x2b00ce) { - let _0x24b030 = []; - while (this._colorTriggerIdx < this._colorTriggers.length) { - let _0x39c924 = this._colorTriggers[this._colorTriggerIdx]; - if (!(_0x39c924.x <= _0x2b00ce)) { - break; - } - _0x24b030.push(_0x39c924); - this._colorTriggerIdx++; - } - return _0x24b030; - } - resetColorTriggers() { - this._colorTriggerIdx = 0; - } - _addToSection(sliderWidth) { - const _0x4ac40a = Math.max(0, Math.floor(sliderWidth._eeWorldX / 400)); - this._sections[_0x4ac40a] ||= []; - this._sections[_0x4ac40a].push(sliderWidth); - if (sliderWidth._eeZDepth !== undefined) { - sliderWidth.depth = sliderWidth._eeZDepth; - } - const _0x14d5f7 = sliderWidth._eeLayer !== undefined ? sliderWidth._eeLayer : 1; - if (_0x14d5f7 === 2) { - this.topContainer.add(sliderWidth); - return; - } - if (!this._sectionContainers[_0x4ac40a]) { - const _0xc1a93d = { - additive: this._scene.add.container(0, 0), - normal: this._scene.add.container(0, 0) - }; - this.additiveContainer.add(_0xc1a93d.additive); - this.container.add(_0xc1a93d.normal); - this._sectionContainers[_0x4ac40a] = _0xc1a93d; - } - const _0x2157d3 = this._sectionContainers[_0x4ac40a]; - if (_0x14d5f7 === 0) { - _0x2157d3.additive.add(sliderWidth); - } else if (sliderWidth._eeBehindParent) { - _0x2157d3.normal.addAt(sliderWidth, 0); - } else { - _0x2157d3.normal.add(sliderWidth); - } - } - _addCollisionToSection(_0x3dce4b) { - const _0x5cad3c = Math.max(0, Math.floor(_0x3dce4b.x / 400)); - this._collisionSections[_0x5cad3c] ||= []; - this._collisionSections[_0x5cad3c].push(_0x3dce4b); - } - _setSectionVisible(_0x2b0fa1, _0x488507) { - const _0x141e9c = this._sectionContainers[_0x2b0fa1]; - if (_0x141e9c) { - _0x141e9c.additive.visible = _0x488507; - _0x141e9c.normal.visible = _0x488507; - } - } - updateVisibility(_0xa5f1e1) { - const _0x1dce22 = this._sectionContainers.length - 1; - if (_0x1dce22 < 0) { - return; - } - const particleScale = Math.max(0, Math.floor((_0xa5f1e1 - 200) / 400)); - const sliderHeight = Math.min(_0x1dce22, Math.floor((_0xa5f1e1 + screenWidth + 200) / 400)); - const _0x1800fc = this._visMinSec; - const _0xc31046 = this._visMaxSec; - if (_0x1800fc < 0) { - for (let _0x47dbe1 = 0; _0x47dbe1 <= _0x1dce22; _0x47dbe1++) { - this._setSectionVisible(_0x47dbe1, _0x47dbe1 >= particleScale && _0x47dbe1 <= sliderHeight); - } - this._visMinSec = particleScale; - this._visMaxSec = sliderHeight; - return; - } - if (particleScale !== _0x1800fc || sliderHeight !== _0xc31046) { - if (particleScale > _0x1800fc) { - for (let _0x7da5df = _0x1800fc; _0x7da5df <= Math.min(particleScale - 1, _0xc31046); _0x7da5df++) { - this._setSectionVisible(_0x7da5df, false); - } - } - if (sliderHeight < _0xc31046) { - for (let _0x5b2d47 = Math.max(sliderHeight + 1, _0x1800fc); _0x5b2d47 <= _0xc31046; _0x5b2d47++) { - this._setSectionVisible(_0x5b2d47, false); - } - } - if (particleScale < _0x1800fc) { - for (let _0x3caab6 = particleScale; _0x3caab6 <= Math.min(_0x1800fc - 1, sliderHeight); _0x3caab6++) { - this._setSectionVisible(_0x3caab6, true); - } - } - if (sliderHeight > _0xc31046) { - for (let _0x347412 = Math.max(_0xc31046 + 1, particleScale); _0x347412 <= sliderHeight; _0x347412++) { - this._setSectionVisible(_0x347412, true); - } - } - this._visMinSec = particleScale; - this._visMaxSec = sliderHeight; - } - } - updateObjectDebugIds() { - if (window.showObjectIds) { - if (this._debugIdTextsList && this._debugIdTextsList.length > 0) { - for (const idText of this._debugIdTextsList) { - if (idText) idText.setVisible(true); - } - } - } else { - if (this._debugIdTextsList && this._debugIdTextsList.length > 0 ) { - for (const idText of this._debugIdTextsList) { - if (idText) idText.setVisible(false); - } - } - } - } - getNearbySectionObjects(_0x2e85c7) { - const _0x55d1b7 = Math.max(0, Math.floor(_0x2e85c7 / 400)); - const _0x31c345 = Math.max(0, _0x55d1b7 - 1); - const _0x5f1907 = Math.min(this._collisionSections.length - 1, _0x55d1b7 + 1); - const _0x28a7c0 = this._nearbyBuffer; - _0x28a7c0.length = 0; - for (let _0xe2cbfa = _0x31c345; _0xe2cbfa <= _0x5f1907; _0xe2cbfa++) { - const _0x2171db = this._collisionSections[_0xe2cbfa]; - if (_0x2171db) { - for (let _0x5cdca9 = 0; _0x5cdca9 < _0x2171db.length; _0x5cdca9++) { - _0x28a7c0.push(_0x2171db[_0x5cdca9]); - } - } - } - return _0x28a7c0; - } - checkEnterEffectTriggers(_0x5d0838) { - while (this._enterEffectTriggerIdx < this._enterEffectTriggers.length) { - let _0x937c72 = this._enterEffectTriggers[this._enterEffectTriggerIdx]; - if (!(_0x937c72.x <= _0x5d0838)) { - break; - } - this._activeEnterEffect = _0x937c72.effect; - this._activeExitEffect = _0x937c72.effect; - this._enterEffectTriggerIdx++; - } - } - checkMoveTriggers(playerX) { - while (this._moveTriggerIdx < this._moveTriggers.length) { - const trig = this._moveTriggers[this._moveTriggerIdx]; - if (trig.x > playerX) break; - this._activeMoveTweens.push({ - trig, - elapsed: 0, - prevProgress: 0, - }); - if (!this._groupOffsets[trig.targetGroup]) { - this._groupOffsets[trig.targetGroup] = { x: 0, y: 0 }; - } - this._moveTriggerIdx++; - } - } - - stepMoveTriggers(dt) { - let i = 0; - while (i < this._activeMoveTweens.length) { - const anim = this._activeMoveTweens[i]; - const { trig } = anim; - const dur = trig.duration > 0 ? trig.duration : 0; - - anim.elapsed += dt; - const progress = dur > 0 ? Math.min(anim.elapsed / dur, 1) : 1; - const prevProgress = anim.prevProgress; - - const curSample = Easing.sample(trig.easingType, trig.easingRate, progress); - const prevSample = Easing.sample(trig.easingType, trig.easingRate, prevProgress); - const amount = curSample - prevSample; - - anim.prevProgress = progress; - - const deltaX = trig.offsetX * amount; - const deltaY = -(trig.offsetY * amount); - - const sprites = this._groupSprites[trig.targetGroup]; - const colliders = this._groupColliders[trig.targetGroup]; - if (sprites || colliders) { - const off = this._groupOffsets[trig.targetGroup]; - off.x += deltaX; - off.y += deltaY; - if (sprites) { - for (const spr of sprites) { - if (!spr || !spr.active) continue; - spr.x = spr._origWorldX + off.x; - spr.y = spr._origBaseY + off.y; - spr._eeWorldX = spr.x; - spr._eeBaseY = spr.y; - if (spr._coinWorldX !== undefined) { - spr._coinWorldX = (spr._origWorldX + off.x) / 2; - } - if (spr._coinWorldY !== undefined) { - spr._coinWorldY = (460 - (spr._origBaseY + off.y)) / 2; - } - } - } - if (colliders) { - for (const col of colliders) { - col.x = col._origBaseX + off.x; - col.y = col._origBaseY - off.y; - col._baseX = col.x; - col._baseY = col.y; - } - } - } - - if (progress >= 1) { - this._activeMoveTweens.splice(i, 1); - } else { - i++; - } - } - } - - resetMoveTriggers() { - this._moveTriggerIdx = 0; - this._activeMoveTweens = []; - this._groupOffsets = {}; - for (const gid in this._groupSprites) { - for (const spr of this._groupSprites[gid]) { - if (!spr || !spr.active) continue; - spr.x = spr._origWorldX; - spr.y = spr._origBaseY; - spr._eeWorldX = spr._origWorldX; - spr._eeBaseY = spr._origBaseY; - } - } - for (const gid in this._groupColliders) { - for (const col of this._groupColliders[gid]) { - col.x = col._origBaseX; - col.y = col._origBaseY; - col._baseX = col._origBaseX; - col._baseY = col._origBaseY; - } - } - } - - checkAlphaTriggers(playerX) { - while (this._alphaTriggerIdx < this._alphaTriggers.length) { - const trig = this._alphaTriggers[this._alphaTriggerIdx]; - if (trig.x > playerX) break; - const currentOpacity = this._groupOpacity[trig.targetGroup] ?? 1; - this._activeAlphaTweens.push({ - trig, - elapsed: 0, - startOpacity: currentOpacity, - }); - this._alphaTriggerIdx++; - } - } - - stepAlphaTriggers(dt) { - let i = 0; - while (i < this._activeAlphaTweens.length) { - const anim = this._activeAlphaTweens[i]; - const { trig } = anim; - const dur = trig.duration > 0 ? trig.duration : 0; - - anim.elapsed += dt; - const progress = dur > 0 ? Math.min(anim.elapsed / dur, 1) : 1; - - const newOpacity = anim.startOpacity + (trig.targetOpacity - anim.startOpacity) * progress; - this._groupOpacity[trig.targetGroup] = Math.max(0, Math.min(1, newOpacity)); - - if (progress >= 1) { - this._activeAlphaTweens.splice(i, 1); - } else { - i++; - } - } - - for (const gid in this._groupOpacity) { - const sprites = this._groupSprites[gid]; - if (!sprites) continue; - const op = this._groupOpacity[gid]; - for (const spr of sprites) { - if (!spr || !spr.active) continue; - if (spr._eeActive) continue; - spr.setAlpha(op); - } - } - } - - resetAlphaTriggers() { - this._alphaTriggerIdx = 0; - this._activeAlphaTweens = []; - this._groupOpacity = {}; - for (const gid in this._groupSprites) { - for (const spr of this._groupSprites[gid]) { - if (!spr || !spr.active) continue; - if (spr._eeActive) continue; - spr.setAlpha(1); - spr._eeOrigAlpha = 1; - } - } - } - - checkRotateTriggers(playerX) { - while (this._rotateTriggerIdx < this._rotateTriggers.length) { - const trig = this._rotateTriggers[this._rotateTriggerIdx]; - if (trig.x > playerX) break; - const totalDeg = trig.degrees + (trig.times360 * 360); - this._activeRotateTweens.push({ - trig, - elapsed: 0, - prevProgress: 0, - totalRad: totalDeg * Math.PI / 180, - }); - this._rotateTriggerIdx++; - } - } - stepRotateTriggers(dt) { - let i = 0; - while (i < this._activeRotateTweens.length) { - const anim = this._activeRotateTweens[i]; - const { trig } = anim; - const dur = trig.duration > 0 ? trig.duration : 0; - anim.elapsed += dt; - const progress = dur > 0 ? Math.min(anim.elapsed / dur, 1) : 1; - const curSample = Easing.sample(trig.easingType, trig.easingRate, progress); - const prevSample = Easing.sample(trig.easingType, trig.easingRate, anim.prevProgress); - const deltaRot = (curSample - prevSample) * anim.totalRad; - anim.prevProgress = progress; - const sprites = this._groupSprites[trig.targetGroup]; - const colliders = this._groupColliders[trig.targetGroup]; - if (trig.centerGroup > 0) { - const centerSprites = this._groupSprites[trig.centerGroup]; - if (centerSprites && centerSprites.length > 0) { - let cx = 0, cy = 0, cn = 0; - for (const cs of centerSprites) { - if (!cs || !cs.active) continue; - cx += cs.x; cy += cs.y; cn++; - } - if (cn > 0) { - cx /= cn; cy /= cn; - const cosD = Math.cos(deltaRot), sinD = Math.sin(deltaRot); - if (sprites) { - for (const spr of sprites) { - if (!spr || !spr.active) continue; - const dx = spr.x - cx, dy = spr.y - cy; - spr.x = cx + dx * cosD - dy * sinD; - spr.y = cy + dx * sinD + dy * cosD; - spr._eeWorldX = spr.x; - spr._eeBaseY = spr.y; - if (spr._origWorldX !== undefined) { spr._origWorldX = spr.x; spr._origBaseY = spr.y; } - if (!trig.lockRotation) spr.rotation += deltaRot; - } - } - if (colliders) { - for (const col of colliders) { - const dx = col.x - cx, dy = col.y - cy; - col.x = cx + dx * cosD - dy * sinD; - col.y = cy + dx * sinD + dy * cosD; - col._baseX = col.x; col._baseY = col.y; - if (col._origBaseX !== undefined) { col._origBaseX = col.x; col._origBaseY = col.y; } - } - } - } - } - } else { - if (sprites) { - for (const spr of sprites) { - if (!spr || !spr.active) continue; - spr.rotation += deltaRot; - } - } - } - if (progress >= 1) { this._activeRotateTweens.splice(i, 1); } else { i++; } - } - } - resetRotateTriggers() { - this._rotateTriggerIdx = 0; - this._activeRotateTweens = []; - } - - checkPulseTriggers(playerX) { - while (this._pulseTriggerIdx < this._pulseTriggers.length) { - const trig = this._pulseTriggers[this._pulseTriggerIdx]; - if (trig.x > playerX) break; - const totalDur = trig.fadeIn + trig.hold + trig.fadeOut; - this._activePulses.push({ trig, elapsed: 0, totalDuration: totalDur > 0 ? totalDur : 0.01 }); - this._pulseTriggerIdx++; - } - } - stepPulseTriggers(dt, colorManager) { - let i = 0; - while (i < this._activePulses.length) { - const pulse = this._activePulses[i]; - const { trig } = pulse; - pulse.elapsed += dt; - const { fadeIn, hold, fadeOut } = trig; - let intensity = 0; - const t = pulse.elapsed; - if (t < fadeIn) { intensity = fadeIn > 0 ? t / fadeIn : 1; } - else if (t < fadeIn + hold) { intensity = 1; } - else if (t < fadeIn + hold + fadeOut) { intensity = fadeOut > 0 ? 1 - (t - fadeIn - hold) / fadeOut : 0; } - if (trig.targetType === 1 && trig.targetGroup > 0) { - const sprites = this._groupSprites[trig.targetGroup]; - if (sprites) { - const pr = Math.round(trig.color.r * intensity); - const pg = Math.round(trig.color.g * intensity); - const pb = Math.round(trig.color.b * intensity); - const pulseHex = (pr << 16) | (pg << 8) | pb; - for (const spr of sprites) { - if (!spr || !spr.active) continue; - if (intensity > 0.01) { spr.setTint(pulseHex); spr._eePulsed = true; } - else { spr.clearTint(); spr._eePulsed = false; } - } - } - } else if (trig.targetType === 0 && trig.targetChannel > 0 && colorManager) { - if (intensity > 0.01) { - const baseColor = colorManager.getColor(trig.targetChannel); - const pulsed = { - r: Math.min(255, Math.round(baseColor.r + (trig.color.r - baseColor.r) * intensity)), - g: Math.min(255, Math.round(baseColor.g + (trig.color.g - baseColor.g) * intensity)), - b: Math.min(255, Math.round(baseColor.b + (trig.color.b - baseColor.b) * intensity)), - }; - const pulseHex = (pulsed.r << 16) | (pulsed.g << 8) | pulsed.b; - const chSprites = this._colorChannelSprites[trig.targetChannel]; - if (chSprites) { - for (const spr of chSprites) { - if (!spr || !spr.active) continue; - spr.setTint(pulseHex); spr._eePulsed = true; - } - } - } - } - if (pulse.elapsed >= pulse.totalDuration) { - if (trig.targetType === 1 && trig.targetGroup > 0) { - const sprites = this._groupSprites[trig.targetGroup]; - if (sprites) for (const spr of sprites) { if (spr && spr.active) { spr.clearTint(); spr._eePulsed = false; } } - } - if (trig.targetType === 0 && trig.targetChannel > 0) { - const chSprites = this._colorChannelSprites[trig.targetChannel]; - if (chSprites) for (const spr of chSprites) { if (spr && spr.active) spr._eePulsed = false; } - } - this._activePulses.splice(i, 1); - } else { i++; } - } - } - resetPulseTriggers() { - this._pulseTriggerIdx = 0; - this._activePulses = []; - } - - applyColorChannels(colorManager) { - for (const chId in this._colorChannelSprites) { - const sprites = this._colorChannelSprites[chId]; - if (!sprites || !sprites.length) continue; - const hex = colorManager.getHex(parseInt(chId, 10)); - for (const spr of sprites) { - if (!spr || !spr.active) continue; - if (spr._eePulsed) continue; - if (spr._isSaw) continue; - if (spr._eeAudioScale) continue; - spr.setTint(hex); - } - } - } - - resetEnterEffectTriggers() { - this._enterEffectTriggerIdx = 0; - this._activeEnterEffect = 0; - this._activeExitEffect = 0; - for (let _0x17a21d = 0; _0x17a21d < this._sections.length; _0x17a21d++) { - this._setSectionVisible(_0x17a21d, true); - const _0x14a035 = this._sections[_0x17a21d]; - if (_0x14a035) { - for (let _0x13e116 = 0; _0x13e116 < _0x14a035.length; _0x13e116++) { - const visMinSection = _0x14a035[_0x13e116]; - visMinSection._eeActive = false; - visMinSection.visible = true; - visMinSection.x = visMinSection._eeWorldX; - visMinSection.y = visMinSection._eeBaseY; - if (!visMinSection._eeAudioScale) { - visMinSection.setScale(1); - } - visMinSection.setAlpha(this._getGroupOpacityForSprite(visMinSection)); - } - } - } - } - _getGroupOpacityForSprite(spr) { - const groups = spr && spr._eeGroups; - if (!groups || !groups.length) return 1; - let op = 1; - for (const gid of groups) { - const g = this._groupOpacity[gid]; - if (g !== undefined && g < op) op = g; - } - return op; - } - - applyEnterEffects(_0x2f36ed) { - const _0x221c93 = 400; - const _0xa24372 = 140; - const _0x5e9f2a = 200; - const _0x29a51b = _0x2f36ed; - const _0x548004 = _0x2f36ed + screenWidth; - const _0x49c6d8 = _0x2f36ed + screenWidth / 2; - const _0x2d8f53 = Math.max(0, Math.floor((_0x29a51b - _0xa24372) / _0x221c93)); - const _0x2b19db = Math.min(this._sections.length - 1, Math.floor((_0x548004 + _0xa24372) / _0x221c93)); - for (let _0x1bd44f = _0x2d8f53; _0x1bd44f <= _0x2b19db; _0x1bd44f++) { - const _0x2cff29 = this._sections[_0x1bd44f]; - if (!_0x2cff29) { - continue; - } - const _0x20a3bb = _0x1bd44f * _0x221c93; - const _0x8f9d56 = _0x20a3bb >= _0x29a51b + _0xa24372 && _0x20a3bb + _0x221c93 <= _0x548004 - _0xa24372; - for (let _0x54aba7 = 0; _0x54aba7 < _0x2cff29.length; _0x54aba7++) { - const effectSprite = _0x2cff29[_0x54aba7]; - if (_0x8f9d56) { - if (effectSprite._eeActive) { - effectSprite._eeActive = false; - effectSprite.y = effectSprite._eeBaseY; - effectSprite.x = effectSprite._eeWorldX; - if (!effectSprite._eeAudioScale) { - effectSprite.setScale(1); - } - effectSprite.setAlpha(this._getGroupOpacityForSprite(effectSprite)); - } - continue; - } - const _0xeded99 = effectSprite._eeWorldX; - const _0x1b2883 = _0xeded99 > _0x49c6d8; - let _0x289aa2; - _0x289aa2 = _0x1b2883 ? Math.max(0, Math.min(1, (_0x548004 - _0xeded99) / _0xa24372)) : Math.max(0, Math.min(1, (_0xeded99 - _0x29a51b) / _0xa24372)); - if (_0x289aa2 >= 1) { - if (effectSprite._eeActive) { - effectSprite._eeActive = false; - effectSprite.y = effectSprite._eeBaseY; - effectSprite.x = effectSprite._eeWorldX; - if (!effectSprite._eeAudioScale) { - effectSprite.setScale(1); - } - effectSprite.setAlpha(this._getGroupOpacityForSprite(effectSprite)); - } - continue; - } - effectSprite._eeActive = true; - const _0x453353 = _0x1b2883 ? this._activeEnterEffect : this._activeExitEffect; - const _0x20804e = 1 - _0x289aa2; - let _0x50e6d9 = effectSprite._eeBaseY; - let _0x17437c = effectSprite._eeWorldX; - let _0x2128bf = _0x289aa2; - let _0x127ace = 1; - switch (_0x453353) { - case 0: - break; - case 1: - _0x50e6d9 = effectSprite._eeBaseY + _0x5e9f2a * _0x20804e; - break; - case 2: - _0x50e6d9 = effectSprite._eeBaseY - _0x5e9f2a * _0x20804e; - break; - case 3: - _0x17437c = effectSprite._eeWorldX - _0x5e9f2a * _0x20804e; - break; - case 4: - _0x17437c = effectSprite._eeWorldX + _0x5e9f2a * _0x20804e; - break; - case 5: - if (!effectSprite._eeAudioScale) { - _0x127ace = _0x289aa2; - } - break; - case 6: - if (!effectSprite._eeAudioScale) { - _0x127ace = 1 + _0x20804e * 0.75; - } - } - if (effectSprite.x !== _0x17437c) { - effectSprite.x = _0x17437c; - } - if (effectSprite.y !== _0x50e6d9) { - effectSprite.y = _0x50e6d9; - } - const _eeFinalAlpha = _0x2128bf * this._getGroupOpacityForSprite(effectSprite); - if (effectSprite.alpha !== _eeFinalAlpha) { - effectSprite.alpha = _eeFinalAlpha; - } - if (!effectSprite._eeAudioScale && effectSprite.scaleX !== _0x127ace) { - effectSprite.setScale(_0x127ace); - } - } - } - } - setGroundColor(_0x3958eb) { - if (window.isEditor) return; // not dealing with ts rn - for (let _0x46c21a of this._groundTiles) { - _0x46c21a.setTint(_0x3958eb); - } - for (let _0x251562 of this._ceilingTiles) { - _0x251562.setTint(_0x3958eb); - } - } - updateAudioScale(_0x337bf7) { - for (let _0x24afdb of this._audioScaleSprites) { - _0x24afdb.setScale(_0x337bf7); - } - const _now = Date.now(); - const _clickMult = window.orbClickScale || 2.0; - const _shrinkMs = window.orbClickShrinkTime || 250; - for (let _0xOrbSpr of this._orbSprites) { - const _baseScale = 0.75 + _0x337bf7 * 0.15; - if (_0xOrbSpr._hitTime) { - const _elapsed = _now - _0xOrbSpr._hitTime; - if (_elapsed < 80) { - const _t = _elapsed / 80; - _0xOrbSpr.setScale(_baseScale + (_baseScale * (_clickMult - 1)) * _t); - } else if (_elapsed < 80 + _shrinkMs) { - const _t = (_elapsed - 80) / _shrinkMs; - const _peak = _baseScale * _clickMult; - _0xOrbSpr.setScale(_peak + (_baseScale - _peak) * _t); - } else { - _0xOrbSpr._hitTime = null; - _0xOrbSpr.setScale(_baseScale); - } - } else { - _0xOrbSpr.setScale(_baseScale); - } - } - } - resetVisibility() { - this._visMinSec = -1; - this._visMaxSec = -1; - } - resetObjects() { - for (let _0x3d473e of this.objects) { - if (!_0x3d473e) { - continue; - } - _0x3d473e.activated = false; - if (_0x3d473e._dashHoldTicks !== undefined) { - _0x3d473e._dashHoldTicks = 0; - } - } - for (let _0x5c5d9a of this._audioScaleSprites) { - _0x5c5d9a.setScale(0.1); - } - for (let _cs of this._coinSprites) { - if (_cs) { - _cs.setVisible(true); - _cs.setAlpha(1); - _cs.setScale(_cs._coinBaseScale || 1); - if (_cs._coinWorldY !== undefined) { - _cs.y = b(_cs._coinWorldY); - } - } - } - } -} +class Collider { + constructor(objType, xPos, yPos, width, height, rotation = 0) { + this.type = objType; + this.x = xPos; + this.y = yPos; + this.w = width; + this.h = height; + this.activated = false; + this.rotationDegrees = rotation; + this.slopeAngleDeg = 0; + this.slopeDir = 1; + this.slopeIsFilled = false; + this.slopeFlipY = false; + } + getSlopeSurfaceY(worldX) { + if (this.type !== slopeType) return null; + const halfW = this.w / 2; + const left = this.x - halfW; + const right = this.x + halfW; + if (worldX < left || worldX > right) return null; + const frac = (worldX - left) / (right - left); + let surfaceFrac = this.slopeDir > 0 ? frac : (1 - frac); + if (this.slopeFlipY) surfaceFrac = 1 - surfaceFrac; + return (this.y - this.h / 2) + surfaceFrac * this.h; + } + getSlopeAngleRad() { + let angleDeg = this.slopeAngleDeg; + if (this.slopeDir < 0) angleDeg = -angleDeg; + if (this.slopeFlipY) angleDeg = -angleDeg; + return angleDeg * Math.PI / 180; + } +} + +function parseObject(objectString) { + let objectParts = objectString.split(","); + let objectData = {}; + for (let index = 0; index + 1 < objectParts.length; index += 2) { + let key = objectParts[index]; + let value = objectParts[index + 1]; + objectData[key] = value; + } + let objectId = parseInt(objectData[1] || "0", 10); + if (objectId === 0) { + return null; + } else { + return { + id: objectId, + x: parseFloat(objectData[2] || "0"), + y: parseFloat(objectData[3] || "0"), + flipX: objectData[4] === "1", + flipY: objectData[5] === "1", + rot: parseFloat(objectData[6] || "0"), + scale: parseFloat(objectData[32] || "1"), + zLayer: parseInt(objectData[24] || "0", 10), + zOrder: parseInt(objectData[25] || "0", 10), + groups: objectData[57] || "", + color1: parseInt(objectData[21] || "0", 10), + color2: parseInt(objectData[22] || "0", 10), + // Following are for startpos + gameMode: parseInt(objectData['kA2'] ?? '0', 10), + miniMode: parseInt(objectData['kA3'] ?? '0', 10), + speed: parseInt(objectData['kA4'] ?? '0', 10), + mirrored: parseInt(objectData['kA28'] ?? '0', 10), + flipGravity: '1' === (objectData['kA11'] ?? '0'), + _raw: objectData + }; + } +} +function parseLevel(levelString) { + let decompressedString = function (compressedString) { + let getBase64 = function (compressedString) { + let lessCluttered = compressedString.replace(/-/g, "+").replace(/_/g, "/"); + while (lessCluttered.length % 4 != 0) { + lessCluttered += "="; + } + return lessCluttered; + }(compressedString.trim()); + let decryptedString = atob(getBase64); + let rawBytes = new Uint8Array(decryptedString.length); + for (let byteStr = 0; byteStr < decryptedString.length; byteStr++) { + rawBytes[byteStr] = decryptedString.charCodeAt(byteStr); + } + let inflatedBytes = pako.inflate(rawBytes); + return new TextDecoder().decode(inflatedBytes); + }(levelString); + let stringParts = decompressedString.split(";"); + let settings = stringParts.length > 0 ? stringParts[0] : ""; + let objects = []; + for (let id = 1; id < stringParts.length; id++) { + if (stringParts[id].length === 0) { + continue; + } + let object = parseObject(stringParts[id]); + if (object) { + objects.push(object); + } + } + return { + settings: settings, + objects: objects + }; +} + +function getGroundTextureId(groundSetting) { + const parsedGroundId = parseInt(String(groundSetting ?? "0"), 10); + const textureIndex = isNaN(parsedGroundId) || parsedGroundId <= 1 ? 0 : parsedGroundId - 1; + return String(textureIndex).padStart(2, "0"); +} + +const solidType = "solid"; +const hazardType = "hazard"; +const decoType = "deco"; +const coinType = "coin"; +const portalType = "portal"; +const padType = "pad"; +const ringType = "ring"; +const triggerType = "trigger"; +const speedType = "speed"; +const slopeType = "slope"; +// ── Slope ID registry ── +const _SLOPE_DATA = { + 289:{gw:1,gh:1,angle:45,sq:false},291:{gw:2,gh:1,angle:22.5,sq:false}, + 294:{gw:1,gh:1,angle:45,sq:false},295:{gw:2,gh:1,angle:22.5,sq:false}, + 296:{gw:0.367,gh:0.433,angle:45,sq:true},297:{gw:0.967,gh:0.45,angle:45,sq:true}, + 299:{gw:1,gh:1,angle:45,sq:false},301:{gw:2,gh:1,angle:22.5,sq:false}, + 309:{gw:1,gh:1,angle:45,sq:false},311:{gw:2,gh:1,angle:22.5,sq:false}, + 315:{gw:1,gh:1,angle:45,sq:false},317:{gw:2,gh:1,angle:22.5,sq:false}, + 321:{gw:1,gh:1,angle:45,sq:false},323:{gw:2,gh:1,angle:22.5,sq:false}, + 324:{gw:1,gh:1,angle:45,sq:true},325:{gw:1,gh:1,angle:45,sq:true}, + 326:{gw:1,gh:1,angle:45,sq:false},327:{gw:2,gh:1,angle:22.5,sq:false}, + 328:{gw:0.733,gh:0.733,angle:45,sq:true},329:{gw:1.433,gh:0.733,angle:22.5,sq:true}, + 331:{gw:1,gh:1,angle:45,sq:false},333:{gw:2,gh:1,angle:22.5,sq:false}, + 337:{gw:1,gh:1,angle:45,sq:false},339:{gw:2,gh:1,angle:22.5,sq:false}, + 343:{gw:1,gh:1,angle:45,sq:false},345:{gw:2,gh:1,angle:22.5,sq:false}, + 353:{gw:1,gh:1,angle:45,sq:false},355:{gw:2,gh:1,angle:22.5,sq:false}, + 358:{gw:1,gh:1,angle:45,sq:true}, + 363:{gw:1,gh:1,angle:45,sq:false},364:{gw:2,gh:1,angle:22.5,sq:false}, + 366:{gw:1,gh:1,angle:45,sq:false},367:{gw:2,gh:1,angle:22.5,sq:false}, + 371:{gw:1,gh:1,angle:45,sq:false},372:{gw:2,gh:1,angle:22.5,sq:false}, + 483:{gw:1,gh:1,angle:45,sq:false},484:{gw:2,gh:1,angle:22.5,sq:false}, + 492:{gw:1,gh:1,angle:45,sq:false},493:{gw:2,gh:1,angle:22.5,sq:false}, + 651:{gw:1,gh:1,angle:45,sq:false},652:{gw:2,gh:1,angle:22.5,sq:false}, + 665:{gw:1,gh:1,angle:45,sq:false},666:{gw:2,gh:1,angle:22.5,sq:false}, + 681:{gw:1,gh:1,angle:45,sq:false},682:{gw:2,gh:1,angle:22.5,sq:false}, + 683:{gw:1,gh:1,angle:45,sq:false},684:{gw:2,gh:1,angle:22.5,sq:false}, + 685:{gw:0.85,gh:0.85,angle:45,sq:false},686:{gw:1.85,gh:0.933,angle:22.5,sq:false}, + 687:{gw:1,gh:1,angle:45,sq:false},688:{gw:2,gh:1,angle:22.5,sq:false}, + 689:{gw:1,gh:1,angle:45,sq:false},690:{gw:2,gh:1,angle:22.5,sq:false}, + 691:{gw:1,gh:1,angle:45,sq:false},692:{gw:2,gh:1,angle:22.5,sq:false}, + 693:{gw:1,gh:1,angle:45,sq:false},694:{gw:2,gh:1,angle:22.5,sq:false}, + 695:{gw:1,gh:1,angle:45,sq:false},696:{gw:2,gh:1,angle:22.5,sq:false}, + 697:{gw:1,gh:1,angle:45,sq:false},698:{gw:2,gh:1,angle:22.5,sq:false}, + 699:{gw:0.85,gh:0.85,angle:45,sq:false},700:{gw:1.85,gh:0.933,angle:22.5,sq:false}, + 701:{gw:1,gh:1,angle:45,sq:false},702:{gw:2,gh:1,angle:22.5,sq:false}, + 703:{gw:1,gh:1,angle:45,sq:false},704:{gw:2,gh:1,angle:22.5,sq:false}, + 705:{gw:0.767,gh:0.767,angle:45,sq:false},706:{gw:1.733,gh:0.883,angle:22.5,sq:false}, + 707:{gw:1,gh:1,angle:45,sq:false},708:{gw:2,gh:1,angle:22.5,sq:false}, + 709:{gw:1,gh:1,angle:45,sq:false},710:{gw:2,gh:1,angle:22.5,sq:false}, + 711:{gw:1,gh:1,angle:45,sq:false},712:{gw:2,gh:1,angle:22.5,sq:false}, + 713:{gw:1,gh:1,angle:45,sq:false},714:{gw:2,gh:1,angle:22.5,sq:false}, + 715:{gw:1,gh:1,angle:45,sq:false},716:{gw:2,gh:1,angle:22.5,sq:false}, + 726:{gw:1,gh:1,angle:45,sq:false},727:{gw:2,gh:1,angle:22.5,sq:false}, + 728:{gw:1,gh:1,angle:45,sq:false},729:{gw:2,gh:1,angle:22.5,sq:false}, + 730:{gw:1,gh:1,angle:45,sq:false},731:{gw:2,gh:1,angle:22.5,sq:false}, + 732:{gw:1,gh:1,angle:45,sq:false},733:{gw:2,gh:1,angle:22.5,sq:false}, + 762:{gw:0.617,gh:0.583,angle:45,sq:false},763:{gw:1.283,gh:0.6,angle:22.5,sq:false}, + 764:{gw:1,gh:1,angle:45,sq:true},765:{gw:1,gh:1,angle:45,sq:true},766:{gw:1,gh:1,angle:45,sq:true}, + 771:{gw:0.617,gh:0.583,angle:45,sq:false},772:{gw:1.283,gh:0.6,angle:22.5,sq:false}, + 773:{gw:0.9,gh:0.817,angle:45,sq:true},774:{gw:1,gh:0.85,angle:45,sq:true},775:{gw:0.867,gh:0.35,angle:22.5,sq:true}, + 826:{gw:1,gh:1,angle:45,sq:false},827:{gw:1,gh:1,angle:45,sq:false}, + 828:{gw:2,gh:1,angle:22.5,sq:false},829:{gw:2,gh:1,angle:22.5,sq:false}, + 830:{gw:1,gh:1,angle:45,sq:true},831:{gw:1,gh:1,angle:45,sq:true},832:{gw:1,gh:1,angle:45,sq:true},833:{gw:1,gh:1,angle:45,sq:true}, + 877:{gw:1,gh:1,angle:45,sq:false},878:{gw:2,gh:1,angle:22.5,sq:false}, + 886:{gw:1,gh:1,angle:45,sq:false},887:{gw:2,gh:1,angle:22.5,sq:false}, + 888:{gw:1,gh:1,angle:45,sq:false},889:{gw:2,gh:1,angle:22.5,sq:false}, + 895:{gw:1,gh:1,angle:45,sq:false},896:{gw:2,gh:1,angle:22.5,sq:false}, + 960:{gw:0.617,gh:0.583,angle:45,sq:false},961:{gw:1.283,gh:0.6,angle:22.5,sq:false}, + 964:{gw:1,gh:1,angle:45,sq:true},965:{gw:1,gh:1,angle:45,sq:true},966:{gw:1,gh:1,angle:45,sq:true}, + 969:{gw:0.617,gh:0.583,angle:45,sq:false},970:{gw:1.283,gh:0.6,angle:22.5,sq:false}, + 971:{gw:0.9,gh:0.817,angle:45,sq:true},972:{gw:1,gh:0.85,angle:45,sq:true},973:{gw:0.867,gh:0.35,angle:22.5,sq:true}, + 1014:{gw:1,gh:1,angle:45,sq:false},1015:{gw:2,gh:1,angle:22.5,sq:false}, + 1016:{gw:1,gh:1,angle:45,sq:true},1017:{gw:1.008,gh:1,angle:45,sq:true},1018:{gw:1,gh:0.517,angle:22.5,sq:true}, + 1033:{gw:0.617,gh:0.583,angle:45,sq:false},1034:{gw:1.283,gh:0.6,angle:22.5,sq:false}, + 1035:{gw:1,gh:1,angle:45,sq:true},1036:{gw:1,gh:1,angle:45,sq:true}, + 1037:{gw:0.617,gh:0.583,angle:45,sq:false},1038:{gw:1.283,gh:0.6,angle:22.5,sq:false}, + 1039:{gw:1,gh:1,angle:45,sq:true},1040:{gw:1,gh:1,angle:45,sq:true}, + 1041:{gw:1,gh:1,angle:45,sq:false},1042:{gw:2,gh:1,angle:22.5,sq:false}, + 1043:{gw:1,gh:1,angle:45,sq:false},1044:{gw:2,gh:1,angle:22.5,sq:false}, + 1091:{gw:1,gh:1,angle:45,sq:false},1092:{gw:2,gh:1,angle:22.5,sq:false}, + 1093:{gw:1,gh:1,angle:45,sq:true},1094:{gw:1,gh:1,angle:45,sq:true},1108:{gw:2,gh:1,angle:22.5,sq:false}, + 1187:{gw:0.767,gh:0.767,angle:45,sq:false},1188:{gw:1.517,gh:0.767,angle:22.5,sq:false}, + 1189:{gw:1,gh:1,angle:45,sq:true},1190:{gw:1,gh:1,angle:45,sq:true}, + 1198:{gw:1,gh:1,angle:45,sq:false},1199:{gw:2,gh:1,angle:22.5,sq:false}, + 1200:{gw:0.267,gh:0.267,angle:45,sq:true},1201:{gw:0.517,gh:0.267,angle:22.5,sq:true}, + 1256:{gw:1,gh:1,angle:45,sq:false},1257:{gw:2,gh:1,angle:22.5,sq:false}, + 1258:{gw:1,gh:1,angle:45,sq:false},1259:{gw:2,gh:1,angle:22.5,sq:false}, + 1305:{gw:0.617,gh:0.583,angle:45,sq:false},1306:{gw:1.3,gh:0.6,angle:22.5,sq:false}, + 1307:{gw:0.683,gh:0.6,angle:45,sq:true},1308:{gw:1,gh:0.617,angle:45,sq:true},1309:{gw:0.267,gh:0.117,angle:22.5,sq:true}, + 1316:{gw:0.617,gh:0.583,angle:45,sq:false},1317:{gw:1.3,gh:0.6,angle:22.5,sq:false}, + 1318:{gw:0.683,gh:0.6,angle:45,sq:true},1319:{gw:1,gh:0.617,angle:45,sq:true},1320:{gw:0.267,gh:0.117,angle:22.5,sq:true}, + 1325:{gw:1,gh:1,angle:45,sq:true},1326:{gw:1,gh:1,angle:45,sq:true}, + 1338:{gw:1,gh:1,angle:45,sq:false},1339:{gw:2,gh:1,angle:22.5,sq:false}, + 1341:{gw:1,gh:1,angle:45,sq:false},1342:{gw:2,gh:1,angle:22.5,sq:false}, + 1344:{gw:1,gh:1,angle:45,sq:false},1345:{gw:2,gh:1,angle:22.5,sq:false}, + 1717:{gw:1,gh:1,angle:45,sq:false},1718:{gw:2,gh:1,angle:22.5,sq:false}, + 1723:{gw:1,gh:1,angle:45,sq:false},1724:{gw:2,gh:1,angle:22.5,sq:false}, + 1743:{gw:1,gh:1,angle:45,sq:false},1744:{gw:2,gh:1,angle:22.5,sq:false}, + 1745:{gw:1,gh:1,angle:45,sq:false},1746:{gw:2,gh:1,angle:22.5,sq:false}, + 1747:{gw:1,gh:1,angle:45,sq:false},1748:{gw:2,gh:1,angle:22.5,sq:false}, + 1749:{gw:1,gh:1,angle:45,sq:false},1750:{gw:2,gh:1,angle:22.5,sq:false}, + 1758:{gw:1,gh:1,angle:45,sq:false},1759:{gw:2,gh:1,angle:22.5,sq:false}, + 1760:{gw:1,gh:1,angle:45,sq:false},1761:{gw:2,gh:1,angle:22.5,sq:false}, + 1762:{gw:1,gh:1,angle:45,sq:false},1763:{gw:2,gh:1,angle:22.5,sq:false}, + 1773:{gw:2,gh:1,angle:22.5,sq:false},1774:{gw:2,gh:1,angle:22.5,sq:false}, + 1775:{gw:2,gh:1,angle:22.5,sq:false},1776:{gw:2,gh:1,angle:22.5,sq:false}, + 1785:{gw:2,gh:1,angle:22.5,sq:false},1786:{gw:2,gh:1,angle:22.5,sq:false}, + 1787:{gw:2,gh:1,angle:22.5,sq:false},1788:{gw:2,gh:1,angle:22.5,sq:false}, + 1789:{gw:2,gh:1,angle:22.5,sq:false},1790:{gw:2,gh:1,angle:22.5,sq:false}, + 1791:{gw:2,gh:1,angle:22.5,sq:false},1792:{gw:2,gh:1,angle:22.5,sq:false}, + 1794:{gw:2,gh:1,angle:22.5,sq:false},1796:{gw:2,gh:1,angle:22.5,sq:false}, + 1798:{gw:2,gh:1,angle:22.5,sq:false},1800:{gw:2,gh:1,angle:22.5,sq:false}, + 1802:{gw:2,gh:1,angle:22.5,sq:false},1804:{gw:2,gh:1,angle:22.5,sq:false}, + 1806:{gw:2,gh:1,angle:22.5,sq:false},1808:{gw:2,gh:1,angle:22.5,sq:false}, + 1810:{gw:2,gh:1,angle:22.5,sq:false}, + 1899:{gw:1,gh:1,angle:45,sq:false},1900:{gw:2,gh:1,angle:22.5,sq:false}, + 1901:{gw:0.367,gh:0.433,angle:45,sq:true},1902:{gw:0.967,gh:0.45,angle:45,sq:true}, + 1906:{gw:1,gh:1,angle:45,sq:false},1907:{gw:2,gh:1,angle:22.5,sq:false}, +}; +const flyPortal = "fly"; +const cubePortal = "cube"; +const portalWaveType = "portal_wave"; +const portalUfoType = "portal_ufo"; +const allObjects = window.allobjects(); +if (!allObjects[1331]) { + allObjects[1331] = { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_17_front_001.png", + "glow_frame": "portal_17_front_glow_001.png", + "gridH": 2.866666555404663, + "gridW": 1.1333333253860474, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "z": 10, + "portalParticle": true, + "portalParticleColor": 0x00ffff + }; +} + + +const _speedPortalIds = [200, 201, 202, 203, 1334]; +for (const _spId of _speedPortalIds) { + if (!allObjects[_spId] || allObjects[_spId].type !== "speed") { + allObjects[_spId] = Object.assign({ + gridW: 1, + gridH: 1, + }, allObjects[_spId] || {}, { type: "speed" }); + } +} + +const objsWithGlow = [1, 2, 3, 4, 6, 7, 83, 8, 39, 103, 392, 35, 36, 40, 140, 141, 62, 65, 66, 68, 195, 196, 1022, 1594]; +for (let obj of objsWithGlow) { + if (allObjects[obj]) { + allObjects[obj].glow = true; + } +} + +window._animatedSprites = []; +window._animTimer = 0; +function getObjectFromId(id) { + return allObjects[id] || null; +} + +window.LevelObject = class LevelObject { + constructor(scene, cameraXRef) { + this._scene = scene; + this._cameraXRef = cameraXRef; + this.additiveContainer = scene.add.container(0, 0).setDepth(-1); + this.container = scene.add.container(0, 0); + this.topContainer = scene.add.container(0, 0).setDepth(13); + this.objects = []; + this.endXPos = 0; + this._groundY = 0; + this._ceilingY = null; + this._flyGroundActive = false; + this._groundAnimFrom = 0; + this._groundAnimTo = 0; + this._groundAnimTime = 0; + this._groundAnimDuration = 0; + this._groundAnimating = false; + this._groundTargetValue = 0; + this._flyFloorY = 0; + this._flyCeilingY = null; + this._flyVisualOnly = false; + this.flyCameraTarget = null; + this._colorTriggers = []; + this._colorTriggerIdx = 0; + this._audioScaleSprites = []; + this._orbSprites = []; + this._coinSprites = []; + this._sawSprites = []; + this._enterEffectTriggers = []; + this._enterEffectTriggerIdx = 0; + this._activeEnterEffect = 0; + this._activeExitEffect = 0; + this._moveTriggers = []; + this._moveTriggerIdx = 0; + this._activeMoveTweens = []; + this._alphaTriggers = []; + this._alphaTriggerIdx = 0; + this._activeAlphaTweens = []; + this._rotateTriggers = []; + this._rotateTriggerIdx = 0; + this._activeRotateTweens = []; + this._pulseTriggers = []; + this._pulseTriggerIdx = 0; + this._activePulses = []; + this._colorChannelSprites = {}; + this._groupSprites = {}; + this._groupOffsets = {}; + this._groupOpacity = {}; + this._groupColliders = {}; + this._sections = []; + this._sectionContainers = []; + this._collisionSections = []; + this._nearbyBuffer = []; + this._visMinSec = -1; + this._visMaxSec = -1; + this._groundStartScreenY = b(0); + this._ceilingStartScreenY = 0; + this._activeStartPosIndex = -1; + this._startPositions = []; + this._debugIdTextsList = []; + this._buildGround(); + } + getStartPositions() { + return this._startPositions.slice().sort((a, b) => a.x - b.x); + } + + fastForwardTriggers(targetX, colorManager) { + const triggers = this._colorTriggers.sort((a, b) => a.x - b.x); + + for (let trigger of triggers) { + if (trigger.x <= targetX) { + colorManager.triggerColor(trigger.index, trigger.color, 0); + } else { + break; + } + } + } + loadLevel(levelData) { + let { + objects: levelObjects, + settings: settingslist + } = parseLevel(levelData); + this._spawnLevelObjects(levelObjects); + this._setUpSettings(settingslist); + window.levelObjects = levelObjects; + window.settingslist = settingslist; + } + _setUpSettings(settingsStr) { + this._initialColors = {}; + this._backgroundId = null; + this._groundId = null; + if (!settingsStr) return; + let pairs = settingsStr.split(","); + window.settingsMap = {}; + for (let i = 0; i + 1 < pairs.length; i += 2) { + settingsMap[pairs[i]] = pairs[i + 1]; + } + let colorStr = settingsMap["kS38"]; + window._backgroundId = settingsMap["kA6"] ? settingsMap["kA6"] : "01"; + if (window._backgroundId.length < 2) { + window._backgroundId = "0"+window._backgroundId; + } + window._groundId = getGroundTextureId(settingsMap["kA7"]); + if (colorStr) { + let channels = colorStr.split("|"); + for (let ch of channels) { + if (!ch) continue; + let props = ch.split("_"); + let colorProps = {}; + for (let j = 0; j + 1 < props.length; j += 2) { + colorProps[parseInt(props[j], 10)] = props[j + 1]; + } + let channelId = parseInt(colorProps[6], 10); + if (!isNaN(channelId)) { + this._initialColors[channelId] = { + r: parseInt(colorProps[1] || "255", 10), + g: parseInt(colorProps[2] || "255", 10), + b: parseInt(colorProps[3] || "255", 10) + }; + } + } + } + let parseColorEntry = (str) => { + if (!str) return null; + let props = str.split("_"); + let cp = {}; + for (let j = 0; j + 1 < props.length; j += 2) { + cp[parseInt(props[j], 10)] = props[j + 1]; + } + return { + r: parseInt(cp[1] || "255", 10), + g: parseInt(cp[2] || "255", 10), + b: parseInt(cp[3] || "255", 10) + }; + }; + if (!this._initialColors[1000] && settingsMap["kS29"]) { + let col = parseColorEntry(settingsMap["kS29"]); + if (col) this._initialColors[1000] = col; + } + if (!this._initialColors[1001] && settingsMap["kS30"]) { + let col = parseColorEntry(settingsMap["kS30"]); + if (col) this._initialColors[1001] = col; + } + } + _buildGround() { + if (window.isEditor) return; // not dealing with ts rn + const scene = this._scene; + window._groundId = window._groundId ? window._groundId : "00"; + + const groundFrame = scene.textures.getFrame("groundSquare_" + window._groundId + "_001.png"); + this._tileW = groundFrame ? groundFrame.width : 1012; + this._groundTiles = []; + this._ceilingTiles = []; + let tileCount = Math.ceil(screenWidth / this._tileW) + 2; + let groundY = b(0); + const startX = -centerX; + for (let i = 0; i < tileCount; i++) { + let tileX = startX + i * this._tileW; + let groundTile = scene.add.image(0, groundY, "groundSquare_" + window._groundId + "_001.png"); + groundTile.setOrigin(0, 0); + groundTile.setTint(17578); + groundTile.setDepth(20); + groundTile._worldX = tileX; + this._groundTiles.push(groundTile); + let ceilingTile = scene.add.image(0, groundY, "groundSquare_" + window._groundId + "_001.png"); + ceilingTile.setOrigin(0, 1); + ceilingTile.setFlipY(true); + ceilingTile.setTint(17578); + ceilingTile.setDepth(20); + ceilingTile.setVisible(false); + ceilingTile._worldX = tileX; + this._ceilingTiles.push(ceilingTile); + } + this._maxGroundWorldX = startX + (tileCount - 1) * this._tileW; + const floorLineFrame = scene.textures.getFrame("GJ_WebSheet", "floorLine_01_001.png"); + const floorLineWidth = floorLineFrame ? floorLineFrame.width : 888; + const floorLineScale = screenWidth / floorLineWidth; + this._groundLine = scene.add.image(screenWidth / 2, groundY - 1, "GJ_WebSheet", "floorLine_01_001.png").setOrigin(0.5, 0).setScale(floorLineScale, 1).setBlendMode(S).setDepth(21).setScrollFactor(0); + this._ceilingLine = scene.add.image(screenWidth / 2, groundY + 1, "GJ_WebSheet", "floorLine_01_001.png").setOrigin(0.5, 1).setScale(floorLineScale, 1).setFlipY(true).setBlendMode(S).setDepth(21).setScrollFactor(0).setVisible(false); + const shadowAlpha = 100 / 255; + this._groundShadowL = scene.add.image(-1, groundY, "GJ_WebSheet", "groundSquareShadow_001.png").setOrigin(0, 0).setScrollFactor(0).setDepth(22).setAlpha(shadowAlpha).setScale(0.7, 1).setBlendMode(E); + this._groundShadowR = scene.add.image(screenWidth + 1, groundY, "GJ_WebSheet", "groundSquareShadow_001.png").setOrigin(1, 0).setScrollFactor(0).setDepth(22).setAlpha(shadowAlpha).setScale(0.7, 1).setFlipX(true).setBlendMode(E); + this._ceilingShadowL = scene.add.image(-1, groundY, "GJ_WebSheet", "groundSquareShadow_001.png").setOrigin(0, 1).setScrollFactor(0).setDepth(22).setAlpha(shadowAlpha).setScale(0.7, 1).setFlipY(true).setBlendMode(E).setVisible(false); + this._ceilingShadowR = scene.add.image(screenWidth + 1, groundY, "GJ_WebSheet", "groundSquareShadow_001.png").setOrigin(1, 1).setScrollFactor(0).setDepth(22).setAlpha(shadowAlpha).setScale(0.7, 1).setFlipX(true).setFlipY(true).setBlendMode(E).setVisible(false); + } + applyGroundTexture() { + if (window.isEditor) return; // not dealing with ts rn + const gId = window._groundId || "00"; + const texKey = "groundSquare_" + gId + "_001.png"; + if (!this._scene.textures.exists(texKey)) return; + const groundFrame = this._scene.textures.getFrame(texKey); + this._tileW = groundFrame ? groundFrame.width : this._tileW; + for (let tile of this._groundTiles) { + tile.setTexture(texKey); + } + for (let tile of this._ceilingTiles) { + tile.setTexture(texKey); + } + } + resizeScreen() { + var newTile; + var newCeilingTile; + const scene = this._scene; + const tileWidth = this._tileW; + const requiredTileCount = Math.ceil(screenWidth / tileWidth) + 2; + const groundY = b(0); + while (this._groundTiles.length < requiredTileCount) { + const newTileX = this._maxGroundWorldX + tileWidth; + let newGroundTile = scene.add.image(0, groundY, "groundSquare_" + window._groundId + "_001.png"); + newGroundTile.setOrigin(0, 0).setTint(((newTile = this._groundTiles[0]) == null ? undefined : newTile.tintTopLeft) || 17578).setDepth(20); + newGroundTile._worldX = newTileX; + this._groundTiles.push(newGroundTile); + let newCeilingTile = scene.add.image(0, groundY, "groundSquare_" + window._groundId + "_001.png"); + newCeilingTile.setOrigin(0, 1).setFlipY(true).setTint(((newCeilingTile = this._groundTiles[0]) == null ? undefined : newCeilingTile.tintTopLeft) || 17578).setDepth(20).setVisible(false); + newCeilingTile._worldX = newTileX; + this._ceilingTiles.push(newCeilingTile); + this._maxGroundWorldX = newTileX; + } + const floorLineFrame = this._scene.textures.getFrame("GJ_WebSheet", "floorLine_01_001.png"); + const floorLineScale = screenWidth / (floorLineFrame ? floorLineFrame.width : 888); + this._groundLine.x = screenWidth / 2; + this._groundLine.setScale(floorLineScale, 1); + this._ceilingLine.x = screenWidth / 2; + this._ceilingLine.setScale(floorLineScale, 1); + this._groundShadowR.x = screenWidth + 1; + this._ceilingShadowR.x = screenWidth + 1; + } + updateGroundTiles(cameraY = 0) { + const cameraX = this._cameraXRef.value; + const tileWidth = this._tileW; + let leftTileIndex; + let rightTileIndex; + let maxWorldX = this._maxGroundWorldX || -Infinity; + const ceilingActive = !this._flyGroundActive && this._flyCeilingY !== null; + if (this._flyVisualOnly && this._flyCeilingY !== null) { + leftTileIndex = b(0) + cameraY; + rightTileIndex = b(this._flyCeilingY) + cameraY; + } else if (this._flyGroundActive && this._groundTargetValue > 0.001) { + let groundTarget = this._groundTargetValue; + let targetGroundY = 620; + let targetCeilingY = 20; + leftTileIndex = this._groundStartScreenY + (targetGroundY - this._groundStartScreenY) * groundTarget; + rightTileIndex = this._ceilingStartScreenY + (targetCeilingY - this._ceilingStartScreenY) * groundTarget; + let groundScreenY = b(0) + cameraY; + if (leftTileIndex > groundScreenY) { + leftTileIndex = groundScreenY; + } + } else { + leftTileIndex = b(0) + cameraY; + rightTileIndex = ceilingActive ? 20 : 0; + } + for (let i = 0; i < this._groundTiles.length; i++) { + let groundTile = this._groundTiles[i]; + let ceilingTile = this._ceilingTiles[i]; + if (groundTile._worldX + tileWidth <= cameraX) { + groundTile._worldX = maxWorldX + tileWidth; + ceilingTile._worldX = groundTile._worldX; + maxWorldX = groundTile._worldX; + this._maxGroundWorldX = maxWorldX; + } + let tileScreenX = groundTile._worldX - cameraX; + groundTile.x = tileScreenX; + groundTile.y = leftTileIndex; + ceilingTile.x = tileScreenX; + ceilingTile.y = rightTileIndex; + ceilingTile.setVisible(this._flyGroundActive && this._groundTargetValue > 0 || ceilingActive); + } + this._groundLine.y = leftTileIndex; + if (this._flyGroundActive && this._groundTargetValue > 0 || ceilingActive) { + this._ceilingLine.y = rightTileIndex; + this._ceilingLine.setVisible(true); + } else { + this._ceilingLine.setVisible(false); + } + this._groundShadowL.y = leftTileIndex; + this._groundShadowR.y = leftTileIndex; + let ceilingVisible = this._flyGroundActive && this._groundTargetValue > 0 || ceilingActive; + this._ceilingShadowL.y = rightTileIndex; + this._ceilingShadowR.y = rightTileIndex; + this._ceilingShadowL.setVisible(ceilingVisible); + this._ceilingShadowR.setVisible(ceilingVisible); + } + shiftGroundTiles(shiftAmount) { + for (let i = 0; i < this._groundTiles.length; i++) { + this._groundTiles[i]._worldX += shiftAmount; + this._ceilingTiles[i]._worldX += shiftAmount; + } + this._maxGroundWorldX += shiftAmount; + } + resetGroundTiles(cameraX) { + const tileWidth = this._tileW; + for (let i = 0; i < this._groundTiles.length; i++) { + this._groundTiles[i]._worldX = cameraX + i * tileWidth; + this._ceilingTiles[i]._worldX = cameraX + i * tileWidth; + } + this._maxGroundWorldX = cameraX + (this._groundTiles.length - 1) * tileWidth; + this.resetGroundState(); + } + resetGroundState() { + this._flyGroundActive = false; + this._groundTargetValue = 0; + this._groundAnimating = false; + this._groundY = 0; + this._ceilingY = null; + this._flyCeilingY = null; + this._flyVisualOnly = false; + this.flyCameraTarget = null; + } + _computeFlyBounds(centerY, height = f, isPortal = false) { + let floorY; + if (isPortal) { + floorY = centerY - f / 2; + } else { + floorY = centerY - height / 2; + } + floorY = Math.floor(floorY / a) * a; + floorY = Math.max(0, floorY); + return { + floorY: floorY, + ceilingY: floorY + height + }; + } + setFlyMode(enabled, centerY, height = f, visualOnly = false) { + if (enabled) { + let bounds = this._computeFlyBounds(centerY, height, visualOnly); + this._flyFloorY = bounds.floorY; + this._flyCeilingY = bounds.ceilingY; + this._flyVisualOnly = visualOnly; + if (visualOnly) { + this._flyGroundActive = true; + } else { + this._flyGroundActive = true; + } + let flyCenter = this._flyFloorY + height / 2; + this.flyCameraTarget = flyCenter - 320 + o; + if (this.flyCameraTarget < 0) { + this.flyCameraTarget = 0; + } + let currentCameraY = this._scene && this._scene._cameraY || 0; + this._groundStartScreenY = b(0) + currentCameraY; + this._ceilingStartScreenY = 0; + this._groundAnimFrom = this._groundTargetValue; + this._groundAnimTo = 1; + this._groundAnimTime = 0; + this._groundAnimDuration = 0.5; + this._groundAnimating = true; + } else { + this.flyCameraTarget = null; + this._flyCeilingY = null; + this._flyFloorY = null; + this._flyVisualOnly = false; + if (this._flyGroundActive) { + this._groundAnimFrom = this._groundTargetValue; + this._groundAnimTo = 0; + this._groundAnimTime = 0; + this._groundAnimDuration = 0.5; + this._groundAnimating = true; + this._flyGroundActive = false; + } else { + this._groundAnimating = false; + this._groundTargetValue = 0; + } + } + } + stepGroundAnimation(deltaTime) { + if (!this._groundAnimating) { + return; + } + this._groundAnimTime += deltaTime; + let progress = this._groundAnimDuration > 0 ? Math.min(this._groundAnimTime / this._groundAnimDuration, 1) : 1; + this._groundTargetValue = this._groundAnimFrom + (this._groundAnimTo - this._groundAnimFrom) * progress; + if (progress >= 1) { + this._groundAnimating = false; + this._groundTargetValue = this._groundAnimTo; + if (this._groundAnimTo === 0) { + this._flyGroundActive = false; + } + } + } + getFloorY() { + if (this._flyGroundActive) { + if (this._flyVisualOnly) { + return 0; + } + return this._flyFloorY; + } else { + return 0; + } + } + getCeilingY() { + if (this._flyCeilingY !== null) { + return this._flyCeilingY; + } else { + return null; + } + } + _applyVisualProps(scene, sprite, frameName, objectData, colorData = null) { + if (!sprite) { + return; + } + let { + dx: offsetX, + dy: offsetY + } = function (scene, frameName) { + let textureInfo = getAtlasFrame(scene, frameName); + if (!textureInfo) { + return { + dx: 0, + dy: 0 + }; + } + let frame = scene.textures.get(textureInfo.atlas).get(textureInfo.frame); + if (!frame) { + return { + dx: 0, + dy: 0 + }; + } + let customData = frame.customData || {}; + if (customData.gjSpriteOffset) { + return { + dx: customData.gjSpriteOffset.x || 0, + dy: -(customData.gjSpriteOffset.y || 0) + }; + } + let realWidth = frame.realWidth; + let realHeight = frame.realHeight; + let frameWidth = frame.width; + let frameHeight = frame.height; + let sourceX = 0; + let sourceY = 0; + if (customData.spriteSourceSize) { + sourceX = customData.spriteSourceSize.x || 0; + sourceY = customData.spriteSourceSize.y || 0; + } + return { + dx: realWidth / 2 - (sourceX + frameWidth / 2), + dy: realHeight / 2 - (sourceY + frameHeight / 2) + }; + }(scene, frameName); + if (objectData.flipX) { + sprite.setFlipX(true); + offsetX = -offsetX; + } + if (objectData.flipY) { + sprite.setFlipY(true); + offsetY = -offsetY; + } + let totalRotation = (sprite.getData("gjBaseRotationDeg") || 0) + objectData.rot; + if (totalRotation !== 0) { + sprite.setAngle(totalRotation); + let rad = totalRotation * Math.PI / 180; + let cosR = Math.cos(rad); + let sinR = Math.sin(rad); + let rx = offsetX * cosR - offsetY * sinR; + let ry = offsetX * sinR + offsetY * cosR; + offsetX = rx; + offsetY = ry; + } + sprite.x += offsetX; + sprite.y += offsetY; + if (objectData.scale !== 1) { + sprite.setScale(objectData.scale); + } + if (colorData) { + if (colorData.tint !== undefined) { + sprite.setTint(colorData.tint); + } else if (colorData.black) { + sprite.setTint(0); + } + } + } + _addVisualSprite(sprite, objectData = null) { + if (sprite) { + if (objectData && objectData.blend === "additive") { + sprite.setBlendMode(S); + sprite._eeLayer = 0; + } else if (objectData && objectData._portalFront) { + sprite._eeLayer = 2; + } else if (objectData && objectData.z !== undefined && objectData.z < 0) { + sprite._eeLayer = 0; + } else { + sprite._eeLayer = 1; + } + } + } + _getGlowFrameName(frameName) { + if (frameName && frameName.endsWith("_001.png")) { + return frameName.replace("_001.png", "_glow_001.png"); + } else { + return null; + } + } + _updateGlowVisibility = () => { + if (!this._glowSprites) return; + for (const glow of this._glowSprites) { + glow.setVisible(!window.isEditor || window.showEditorGlow); + } + }; + _addGlowSprite(scene, x, y, frameName, objectData, worldX) { + let glowFrameName = this._getGlowFrameName(frameName); + if (!glowFrameName) { + return; + } + if (!getAtlasFrame(scene, glowFrameName) && !scene.textures.exists(glowFrameName)) { + return; + } + let glowSprite = addImageToScene(scene, x, y, glowFrameName); + if (glowSprite) { + this._applyVisualProps(scene, glowSprite, glowFrameName, objectData); + glowSprite.setBlendMode(S); + glowSprite._eeLayer = 0; + if (!this._glowSprites) { + this._glowSprites = []; + } + this._glowSprites.push(glowSprite); + glowSprite.setVisible(!window.isEditor || window.showEditorGlow); + if (worldX !== undefined) { + glowSprite._eeWorldX = worldX; + glowSprite._eeBaseY = y; + this._addToSection(glowSprite); + } + return glowSprite; + } + return null; + } + _spawnObject(levelObj) { + this.objectSprites = this.objectSprites || []; + + const scene = this._scene; + const objectDef = getObjectFromId(levelObj.id); + + if (objectDef && objectDef.type === triggerType) { + if (levelObj.id === 29 || levelObj.id === 30) { + this._colorTriggers.push({ + x: levelObj.x * 2, + index: levelObj.id === 29 ? 1000 : 1001, + color: { + r: parseInt(levelObj._raw[7] ?? 255, 10), + g: parseInt(levelObj._raw[8] ?? 255, 10), + b: parseInt(levelObj._raw[9] ?? 255, 10) + }, + duration: parseFloat(levelObj._raw[10] ?? 0), + tintGround: levelObj._raw[14] === "1" + }); + } + + if (objectDef.enterEffect) { + this._enterEffectTriggers.push({ + x: levelObj.x * 2, + effect: objectDef.enterEffect + }); + } + + if (levelObj.id === 901) { + const _raw = levelObj._raw; + this._moveTriggers.push({ + x: levelObj.x * 2, + duration: parseFloat(_raw[10] ?? 0), + easingType: parseInt(_raw[30] ?? 0, 10), + easingRate: parseFloat(_raw[85] ?? 2), + targetGroup: parseInt(_raw[51] ?? 0, 10), + offsetX: parseFloat(_raw[28] ?? 0) * 2, + offsetY: parseFloat(_raw[29] ?? 0) * 2, + lockX: _raw[58] === "1", + lockY: _raw[59] === "1" + }); + } + + if (levelObj.id === 1007) { + const _raw = levelObj._raw; + this._alphaTriggers.push({ + x: levelObj.x * 2, + duration: parseFloat(_raw[10] ?? 0), + targetGroup: parseInt(_raw[51] ?? 0, 10), + targetOpacity: Math.max(0, Math.min(1, parseFloat(_raw[35] ?? 1))) + }); + } + + if (levelObj.id === 899) { + const _raw = levelObj._raw; + const targetChannel = parseInt(_raw[23] ?? 0, 10); + if (targetChannel > 0) { + this._colorTriggers.push({ + x: levelObj.x * 2, + index: targetChannel, + color: { + r: parseInt(_raw[7] ?? 255, 10), + g: parseInt(_raw[8] ?? 255, 10), + b: parseInt(_raw[9] ?? 255, 10) + }, + duration: parseFloat(_raw[10] ?? 0), + tintGround: _raw[14] === "1", + opacity: parseFloat(_raw[35] ?? 1) + }); + } + } + + if (levelObj.id === 1346) { + const _raw = levelObj._raw; + this._rotateTriggers.push({ + x: levelObj.x * 2, + targetGroup: parseInt(_raw[51] ?? 0, 10), + degrees: parseFloat(_raw[68] ?? 0), + duration: parseFloat(_raw[10] ?? 0), + easingType: parseInt(_raw[30] ?? 0, 10), + easingRate: parseFloat(_raw[85] ?? 2), + lockRotation: _raw[70] === "1", + times360: parseInt(_raw[69] ?? 0, 10), + centerGroup: parseInt(_raw[71] ?? 0, 10) + }); + } + + if (levelObj.id === 1006) { + const _raw = levelObj._raw; + const targetType = parseInt(_raw[52] ?? 0, 10); + this._pulseTriggers.push({ + x: levelObj.x * 2, + targetGroup: targetType === 1 ? parseInt(_raw[51] ?? 0, 10) : 0, + targetChannel: targetType === 0 ? parseInt(_raw[51] ?? 0, 10) : 0, + targetType: targetType, + color: { + r: parseInt(_raw[7] ?? 255, 10), + g: parseInt(_raw[8] ?? 255, 10), + b: parseInt(_raw[9] ?? 255, 10) + }, + fadeIn: parseFloat(_raw[45] ?? 0), + hold: parseFloat(_raw[46] ?? 0), + fadeOut: parseFloat(_raw[47] ?? 0) + }); + } + + if (levelObj.id === 31) { + this._startPositions.push({ + x: 2 * levelObj.x, + y: 2 * levelObj.y, + gameMode: levelObj.gameMode, + miniMode: levelObj.miniMode, + speed: levelObj.speed, + mirrored: levelObj.mirrored, + gravityFlipped: levelObj.flipGravity + }); + } + + return objectDef; + } + + if (this._nextObjectId === undefined) { + this._nextObjectId = 0; + } + const linkedObjectId = this._nextObjectId++; + let hasCollisionEntry = false; + + const worldX = levelObj.x * 2; + const worldY = levelObj.y * 2; + + if (worldX > this._lastObjectX) { + this._lastObjectX = worldX; + } + + let frameName = objectDef ? objectDef.frame : null; + if (objectDef && objectDef.randomFrames) { + frameName = objectDef.randomFrames[Math.floor(Math.random() * objectDef.randomFrames.length)]; + } + + const registerObjectSprite = (spr) => { + if (!spr) return; + spr._eeObjectId = linkedObjectId; + if (!this.objectSprites[linkedObjectId]) this.objectSprites[linkedObjectId] = []; + this.objectSprites[linkedObjectId].push(spr); + }; + + if (frameName) { + const spriteWorldX = worldX; + const baseY = b(worldY); + const isPortalFront = + (objectDef.type === portalType || objectDef.type === speedType) && + frameName.includes("_front_"); + + // define portalsub to stop reference errors + const portalSub = objectDef.sub || { + 10: "gravity_flip", + 11: "gravity_normal", + 12: "cube", + 13: "fly", + 45: "mirrora", + 46: "mirrorb", + 47: "ball", + 660: "wave", + 111: "ufo", + 747: "teleport_in", + 749: "teleport_out", + 1331: "spider", + 286: "dual_on", + 287: "dual_off" + }[levelObj.id]; + + const zLayer = + levelObj.zLayer || (objectDef.default_z_layer !== undefined ? objectDef.default_z_layer : 0); + const zOrd = + levelObj.zOrder || (objectDef.default_z_order !== undefined ? objectDef.default_z_order : 0); + const depthBase = { "-3": -6, "-1": -3, 0: 0, 1: 3, 3: 6, 5: 9 }; + const objZDepth = (depthBase[zLayer] !== undefined ? depthBase[zLayer] : 0) + zOrd * 0.01; + + let col1 = levelObj.color1 || (objectDef.default_base_color_channel !== undefined ? objectDef.default_base_color_channel : 0); + if (col1 === 0 && (objectDef.type === solidType || objectDef.type === hazardType)) col1 = 1; + + const col2 = levelObj.color2 || (objectDef.default_detail_color_channel !== undefined ? objectDef.default_detail_color_channel : -1); + const canColor = objectDef.can_color !== false; + + const registerColor = (spr, ch) => { + if (ch > 0 && canColor && spr && !spr._isSaw) { + spr._eeColorChannel = ch; + if (!this._colorChannelSprites[ch]) this._colorChannelSprites[ch] = []; + this._colorChannelSprites[ch].push(spr); + } + }; + + const objGids = levelObj.groups + ? levelObj.groups.split(".").map(Number).filter(n => n > 0) + : null; + + const registerToGroups = (spr, baseWorldX, baseBaseY) => { + if (!objGids || !objGids.length || !spr) return; + spr._origWorldX = baseWorldX; + spr._origBaseY = baseBaseY; + for (const gid of objGids) { + if (!this._groupSprites[gid]) this._groupSprites[gid] = []; + this._groupSprites[gid].push(spr); + } + }; + + let portalBackSprite = null; + if (isPortalFront) { + const backFrame = frameName.replace("_front_", "_back_"); + portalBackSprite = addImageToScene(scene, spriteWorldX, baseY, backFrame); + if (portalBackSprite) { + this._applyVisualProps(scene, portalBackSprite, backFrame, levelObj); + portalBackSprite._eeLayer = 1; + portalBackSprite._eeWorldX = worldX; + portalBackSprite._eeBaseY = baseY; + portalBackSprite._eeZDepth = objZDepth - 0.005; + portalBackSprite._eeOrigAlpha = 1; + this._addToSection(portalBackSprite); + registerToGroups(portalBackSprite, worldX, baseY); + registerColor(portalBackSprite, col1); + registerObjectSprite(portalBackSprite); + } + } + + let orbGlow = null; + if (objectDef.glow) { + orbGlow = this._addGlowSprite(scene, spriteWorldX, baseY, frameName, levelObj, worldX); + if (orbGlow) { + orbGlow._eeZDepth = objZDepth - 0.003; + orbGlow._eeOrigAlpha = 1; + registerToGroups(orbGlow, worldX, baseY); + registerObjectSprite(orbGlow); + } + } + + const visualDef = isPortalFront ? { ...objectDef, _portalFront: true } : objectDef; + const sprite = addImageToScene(scene, spriteWorldX, baseY, frameName); + + if (sprite) { + this._applyVisualProps(scene, sprite, frameName, levelObj, objectDef); + if (portalBackSprite) { + portalBackSprite.x = sprite.x; + portalBackSprite.y = sprite.y; + } + this._addVisualSprite(sprite, visualDef); + sprite._eeWorldX = worldX; + sprite._eeBaseY = baseY; + sprite._eeZDepth = objZDepth; + sprite._eeOrigAlpha = 1; + registerColor(sprite, col1); + this._addToSection(sprite); + registerObjectSprite(sprite); + + if (objGids && objGids.length) { + sprite._eeGroups = objGids; + registerToGroups(sprite, sprite._eeWorldX, sprite._eeBaseY); + } + + if (objectDef && objectDef.animFrames) { + sprite._animFrames = objectDef.animFrames; + sprite._animInterval = objectDef.animInterval || 100; + sprite._animIdx = 0; + sprite._animScene = scene; + window._animatedSprites.push(sprite); + } + + if (objectDef && objectDef.type === ringType) { + sprite.setScale(0.75); + sprite._eeAudioScale = true; + sprite._orbId = levelObj.id; + this._orbSprites.push(sprite); + + if (orbGlow) { + orbGlow.setScale(0.75); + orbGlow._eeAudioScale = true; + orbGlow._orbId = levelObj.id; + this._orbSprites.push(orbGlow); + } + } + + if (objectDef && objectDef.type === coinType) { + sprite._coinWorldX = worldX; + sprite._coinWorldY = worldY; + sprite._coinBaseScale = sprite.scaleX || 1; + this._coinSprites.push(sprite); + } + + if (frameName.indexOf("sawblade") >= 0) { + sprite.setTint(0x000000); + sprite._isSaw = true; + this._sawSprites.push(sprite); + + const sawMirror = addImageToScene(scene, spriteWorldX, baseY, frameName); + if (sawMirror) { + this._applyVisualProps(scene, sawMirror, frameName, levelObj, objectDef); + sawMirror.setTint(0x000000); + sawMirror.rotation = sprite.rotation + Math.PI; + sawMirror._isSaw = true; + sawMirror._eeWorldX = worldX; + sawMirror._eeBaseY = baseY; + this._addToSection(sawMirror); + this._addVisualSprite(sawMirror); + this._sawSprites.push(sawMirror); + registerToGroups(sawMirror, worldX, baseY); + registerObjectSprite(sawMirror); + } + } + } + + if (objectDef && (objectDef.type === solidType || objectDef.type === hazardType)) { + const overlayFrame = frameName.replace("_001.png", "_2_001.png"); + const overlaySprite = getAtlasFrame(scene, overlayFrame) ? addImageToScene(scene, spriteWorldX, baseY, overlayFrame) : null; + + if (overlaySprite) { + this._applyVisualProps(scene, overlaySprite, overlayFrame, levelObj); + this._addVisualSprite(overlaySprite); + overlaySprite._eeWorldX = worldX; + overlaySprite._eeBaseY = baseY; + overlaySprite._eeZDepth = objZDepth + 0.002; + overlaySprite._eeOrigAlpha = 1; + + let oc2 = col2; + if (oc2 <= 0) oc2 = 2; + registerColor(overlaySprite, oc2); + + this._addToSection(overlaySprite); + registerToGroups(overlaySprite, worldX, baseY); + registerObjectSprite(overlaySprite); + } + } + + if (objectDef.children) { + for (const childDef of objectDef.children) { + let childDx = childDef.dx || 0; + let childDy = childDef.dy || 0; + + if (childDef.localDx !== undefined || childDef.localDy !== undefined) { + let localDx = childDef.localDx || 0; + let localDy = childDef.localDy || 0; + + if (levelObj.flipX) { + localDx = -localDx; + } + if (levelObj.flipY) { + localDy = -localDy; + } + + const rot = (levelObj.rot || 0) * Math.PI / 180; + childDx = localDx * Math.cos(rot) - localDy * Math.sin(rot); + childDy = localDx * Math.sin(rot) + localDy * Math.cos(rot); + } + + const childWorldX = worldX + childDx; + const childBaseY = baseY + childDy; + const childSprite = addImageToScene(scene, spriteWorldX + childDx, baseY + childDy, childDef.frame); + + if (childSprite) { + this._applyVisualProps(scene, childSprite, childDef.frame, levelObj, childDef); + + if (childDef.audioScale) { + childSprite.setScale(0.1); + childSprite.setAlpha(0.9); + childSprite._eeAudioScale = true; + this._audioScaleSprites.push(childSprite); + } + + if ((childDef.z !== undefined ? childDef.z : -1) < 0) { + childSprite._eeLayer = 1; + childSprite._eeBehindParent = true; + } else { + this._addVisualSprite(childSprite, childDef); + } + + childSprite._eeWorldX = childWorldX; + childSprite._eeBaseY = childBaseY; + childSprite._eeZDepth = objZDepth + ((childDef.z !== undefined ? childDef.z : -1) < 0 ? -0.003 : 0.001); + childSprite._eeOrigAlpha = 1; + registerColor(childSprite, col1); + this._addToSection(childSprite); + registerToGroups(childSprite, childWorldX, childBaseY); + registerObjectSprite(childSprite); + + if (frameName.indexOf("sawblade") >= 0) { + childSprite.setTint(0x000000); + childSprite._isSaw = true; + this._sawSprites.push(childSprite); + + const childMirror = addImageToScene(scene, spriteWorldX + childDx, baseY + childDy, childDef.frame); + if (childMirror) { + this._applyVisualProps(scene, childMirror, childDef.frame, levelObj, childDef); + childMirror.setTint(0x000000); + childMirror.rotation = childSprite.rotation + Math.PI; + childMirror._isSaw = true; + childMirror._eeWorldX = childWorldX; + childMirror._eeBaseY = childBaseY; + this._addToSection(childMirror); + this._sawSprites.push(childMirror); + registerToGroups(childMirror, childWorldX, childBaseY); + registerObjectSprite(childMirror); + } + } + } + } + } + } else if (objectDef && objectDef.portalParticle && frameName) { + const particleWorldX = worldX; + const particleWorldY = b(worldY); + const radiusFactor = 2; + const particleX = particleWorldX - radiusFactor * 5; + const particleY = particleWorldY; + const portalRot = (levelObj.rot || 0) * Math.PI / 180; + + const source = { + getRandomPoint: p => { + const angle = (Math.random() * 190 + 85) * Math.PI / 180; + const dist = radiusFactor * 20 + Math.random() * 40 * radiusFactor; + const rx = Math.cos(angle) * dist; + const ry = Math.sin(angle) * dist; + p.x = rx * Math.cos(portalRot) - ry * Math.sin(portalRot); + p.y = rx * Math.sin(portalRot) + ry * Math.cos(portalRot); + return p; + } + }; + + const maxDistance = 20; + const particles = scene.add.particles(particleX, particleY, "GJ_WebSheet", { + frame: "square.png", + lifespan: { + min: 200, + max: 1000 + }, + speed: 0, + scale: { + start: 0.75, + end: 0.125 + }, + alpha: { + start: 0.5, + end: 0 + }, + tint: objectDef.portalParticleColor, + blendMode: Phaser.BlendModes.ADD, + frequency: 20, + maxParticles: 0, + emitting: true, + emitZone: { + type: "random", + source: source + }, + emitCallback: particle => { + const vx = -particle.x; + const vy = -particle.y; + const len = Math.sqrt(vx * vx + vy * vy) || 1; + const lifeSeconds = particle.life / 1000; + const speed = (len - maxDistance) / (lifeSeconds || 0.3); + particle.velocityX = vx / len * speed; + particle.velocityY = vy / len * speed; + } + }); + + particles.setDepth(14); + particles._eeLayer = 2; + particles._eeWorldX = worldX; + particles._eeBaseY = particleY; + this._addToSection(particles); + } + + if (objectDef) { + const registerCollider = col => { + col._baseX = col.x; + col._baseY = col.y; + col._origBaseX = col.x; + col._origBaseY = col.y; + col._eeObjectId = linkedObjectId; + + if (!this.objectSprites[linkedObjectId]) { + this.objectSprites[linkedObjectId] = []; + } + + if (levelObj.groups) { + const cgids = levelObj.groups.split(".").map(Number).filter(n => n > 0); + col._eeGroups = cgids; + for (const cgid of cgids) { + if (!this._groupColliders[cgid]) this._groupColliders[cgid] = []; + this._groupColliders[cgid].push(col); + } + } + }; + + if (objectDef.type === solidType && objectDef.gridW > 0 && objectDef.gridH > 0) { + const w = objectDef.gridW * a; + const h = objectDef.gridH * a; + const collider = new Collider(solidType, worldX, worldY, w, h, levelObj.rot || 0); + collider.objid = levelObj.id; + registerCollider(collider); + this.objects.push(collider); + hasCollisionEntry = true; + this._addCollisionToSection(collider); + } else if (objectDef.type === hazardType) { + let hitW = 0; + let hitH = 0; + + if ( + objectDef.spriteW > 0 && + objectDef.spriteH > 0 && + objectDef.hitboxScaleX !== undefined && + objectDef.hitboxScaleY !== undefined + ) { + hitW = objectDef.spriteW * objectDef.hitboxScaleX * 2; + hitH = objectDef.spriteH * objectDef.hitboxScaleY * 2; + } else if (objectDef.gridW > 0 && objectDef.gridH > 0) { + hitW = objectDef.gridW * 12; + hitH = objectDef.gridH * 24; + } + + const hasHitboxRadius = objectDef.hitbox_radius !== undefined && objectDef.hitbox_radius !== null; + const worldHitboxRadius = hasHitboxRadius ? objectDef.hitbox_radius * 2 : 0; + + if (hasHitboxRadius && hitW === 0) { + hitW = worldHitboxRadius * 2; + hitH = worldHitboxRadius * 2; + } + + if (hitW > 0 && hitH > 0) { + const collider = new Collider(hazardType, worldX, worldY, hitW, hitH, levelObj.rot || 0); + if (hasHitboxRadius) collider.hitbox_radius = worldHitboxRadius; + registerCollider(collider); + this.objects.push(collider); + hasCollisionEntry = true; + this._addCollisionToSection(collider); + } + } else if (objectDef.type === portalType) { + const portalW = objectDef.gridW * a; + const portalH = objectDef.gridH * a; + const portalSub = objectDef.sub || { + 10: "gravity_flip", + 11: "gravity_normal", + 12: "cube", + 13: "fly", + 45: "mirrora", + 46: "mirrorb", + 47: "ball", + 660: "wave", + 111: "ufo", + 747: "teleport_in", + 749: "teleport_out", + 1331: "spider", + 286: "dual_on", + 287: "dual_off" + }[levelObj.id]; + + const portalColliderType = { + gravity_flip: "portal_gravity_down", + gravity_normal: "portal_gravity_up", + gravity_toggle: "portal_gravity_toggle", + [flyPortal]: "portal_fly", + fly: "portal_fly", + [cubePortal]: "portal_cube", + cube: "portal_cube", + ball: "portal_ball", + wave: portalWaveType, + ufo: portalUfoType, + spider: "portal_spider", + mirrora: "portal_mirror_on", + mirrorb: "portal_mirror_off", + shrink: "portal_mini_on", + grow: "portal_mini_off", + teleport_in: "portal_teleport_in", + teleport_out: "portal_teleport_out", + dual_on: "portal_dual_on", + dual_off: "portal_dual_off" + }[portalSub] || null; + + if (portalColliderType) { + const collider = new Collider(portalColliderType, worldX, worldY, portalW, portalH, levelObj.rot || 0); + // store portal Y for both portals + collider.portalY = worldY; + collider.portalObjId = levelObj.id; + registerCollider(collider); + this.objects.push(collider); + hasCollisionEntry = true; + this._addCollisionToSection(collider); + } + } else if (objectDef.type === padType) { + const padW = objectDef.gridW * a; + const padH = objectDef.gridH * a; + const padObj = new Collider(jumpPadType, worldX, worldY, padW, padH, levelObj.rot || 0); + padObj.padId = levelObj.id; + registerCollider(padObj); + this.objects.push(padObj); + hasCollisionEntry = true; + this._addCollisionToSection(padObj); + } else if (objectDef.type === ringType) { + const orbW = objectDef.gridW * a; + const orbH = objectDef.gridH * a; + const orbObj = new Collider(jumpRingType, worldX, worldY, orbW, orbH, levelObj.rot || 0); + orbObj.orbId = levelObj.id; + orbObj.orbRotation = levelObj.rot || 0; + orbObj._dashHoldTicks = 0; + registerCollider(orbObj); + this.objects.push(orbObj); + hasCollisionEntry = true; + this._addCollisionToSection(orbObj); + } else if (objectDef.type === coinType) { + const coinW = (objectDef.gridW || 1) * a; + const coinH = (objectDef.gridH || 1) * a; + const coinObj = new Collider(coinType, worldX, worldY, coinW, coinH, levelObj.rot || 0); + coinObj.coinId = levelObj.id; + registerCollider(coinObj); + this.objects.push(coinObj); + hasCollisionEntry = true; + this._addCollisionToSection(coinObj); + } else if (objectDef.type === speedType) { + const speedW = (objectDef.gridW || 1) * a; + const speedH = (objectDef.gridH || 1) * a; + const speedObj = new Collider(speedType, worldX, worldY, speedW, speedH, levelObj.rot || 0); + speedObj.portalY = worldY; + + const speedMap = { + 200: SpeedPortal.HALF, + 201: SpeedPortal.ONE_TIMES, + 202: SpeedPortal.TWO_TIMES, + 203: SpeedPortal.THREE_TIMES, + 1334: SpeedPortal.FOUR_TIMES + }; + + speedObj.speedValue = speedMap[levelObj.id] ?? SpeedPortal.ONE_TIMES; + speedObj.speedId = levelObj.id; + registerCollider(speedObj); + this.objects.push(speedObj); + hasCollisionEntry = true; + this._addCollisionToSection(speedObj); + } + + if (!hasCollisionEntry) { + this.objects.push({ + type: objectDef.type || decoType, + activated: false, + x: 0, + y: 0 + }); + } + } + + return objectDef; +} + + _spawnLevelObjects(_0x35f1ae) { + const unknownObjectIds = new Set(); + this._lastObjectX = 0; + this._nextObjectId = 0; + + for (const levelObj of _0x35f1ae) { + const objectDef = this._spawnObject(levelObj); + if (!objectDef) { + unknownObjectIds.add(levelObj.id); + } + } + + if (unknownObjectIds.size > 0) { + console.log("[Level] Unknown object IDs skipped:", [...unknownObjectIds]); + } + + // portal logic once again + + const _tpInList = this.objects.filter(o => o.type === "portal_teleport_in"); + const _tpOutList = this.objects.filter(o => o.type === "portal_teleport_out"); + + // check if we need to create orange portals from blue portals key 54 offsets + if (_tpInList.length > 0 && _tpOutList.length === 0) { + let possibleOrangePortals = []; + for (const levelObj of _0x35f1ae) { + if (levelObj && levelObj.id === 749) { + possibleOrangePortals.push(levelObj); + } + } + + if (possibleOrangePortals.length > 0) { + for (const orangeObj of possibleOrangePortals) { + this._spawnObject(orangeObj); + } + } else { + // ONLy create orange portal offsets if a blue teleport portal exists, with the raw data + + for (const _tpIn of _tpInList) { + let rawBluePortal = null; + let key54Value = 0; + + for (const rawObj of _0x35f1ae) { + if (rawObj && rawObj.id === 747) { + const rawWorldX = rawObj.x * 2; + const rawWorldY = rawObj.y * 2; + + if (Math.abs(rawWorldX - _tpIn.x) < 5 && Math.abs(rawWorldY - _tpIn.y) < 5) { + rawBluePortal = rawObj; + key54Value = rawObj._raw && rawObj._raw["54"] ? parseFloat(rawObj._raw["54"]) : 0; + break; + } + } + } + + const _orangeWorldY = (_tpIn.y || _tpIn.portalY || 0) + (key54Value * 2); + + // orange portal should use its rotation on raw data + // will fix later + let orangeRotation = 0; + + for (const rawObj749 of _0x35f1ae) { + if (rawObj749 && rawObj749.id === 749) { + const raw749WorldX = rawObj749.x * 2; + const raw749WorldY = rawObj749.y * 2; + + if (Math.abs(raw749WorldX - _tpIn.x) < 5 && Math.abs(raw749WorldY - _orangeWorldY) < 5) { + orangeRotation = rawObj749._raw && rawObj749._raw["6"] ? parseFloat(rawObj749._raw["6"]) : (rawBluePortal._raw && rawBluePortal._raw["6"] ? parseFloat(rawBluePortal._raw["6"]) : 0); + break; + } + } + } + + if (orangeRotation === 0) { + orangeRotation = rawBluePortal._raw && rawBluePortal._raw["6"] ? parseFloat(rawBluePortal._raw["6"]) : 0; + } + + const _syntheticObj = { + id: 749, + x: _tpIn.x / 2, + y: _orangeWorldY / 2, + flipX: rawBluePortal.flipX || false, + flipY: rawBluePortal.flipY || false, + rot: orangeRotation, + scale: 1, + zLayer: 5, + zOrder: 10, + groups: "", + color1: 0, + color2: -1, + gameMode: 0, + miniMode: 0, + speed: 0, + mirrored: 0, + flipGravity: false, + _raw: {} + }; + + this._spawnObject(_syntheticObj); + } + } + } + + const colTypeCounts = {}; + for (const obj of this.objects) { + colTypeCounts[obj.type] = (colTypeCounts[obj.type] || 0) + 1; + } + + this._colorTriggers.sort((a, b) => a.x - b.x); + this._enterEffectTriggers.sort((a, b) => a.x - b.x); + this._moveTriggers.sort((a, b) => a.x - b.x); + this._alphaTriggers.sort((a, b) => a.x - b.x); + this._rotateTriggers.sort((a, b) => a.x - b.x); + this._pulseTriggers.sort((a, b) => a.x - b.x); + + for (let si = 0; si < this._sectionContainers.length; si++) { + const sc = this._sectionContainers[si]; + if (sc) { + if (sc.normal && sc.normal.list && sc.normal.list.length > 1) sc.normal.sort("depth"); + if (sc.additive && sc.additive.list && sc.additive.list.length > 1) sc.additive.sort("depth"); + } + } + + this.endXPos = Math.max(screenWidth + 1200, this._lastObjectX + 680); + + if (window.createObjectIds) { + const scene = this._scene; + const worldContainer = this.container || this._container; + + if (worldContainer) { + this._debugIdTextsList = []; + + _0x35f1ae.forEach((levelObj, index) => { + if (!levelObj || levelObj.id === undefined) return; + + const worldX = levelObj.x * 2; + const textY = typeof b === 'function' ? b(levelObj.y * 2) : levelObj.y * 2; + + const idText = scene.add.text(worldX, textY, String(levelObj.id), { + fontFamily: 'monospace', + fontSize: '30px', + fill: '#00ff00', + stroke: '#000000', + strokeThickness: 3 + }); + idText.setOrigin(0.5); + idText.setDepth(999); + idText.setVisible(window.showObjectIds); + + worldContainer.add(idText); + + idText.preUpdate = () => { + idText.x = worldX; + idText.y = textY; + }; + + scene.sys.updateList.add(idText); + this._debugIdTextsList.push(idText); + + if (!this.objectSprites[index]) this.objectSprites[index] = []; + this.objectSprites[index].push(idText); + }); + } + } + } + createEndPortal(_0x41fbdb) { + if (window.isEditor) return; // not dealing with ts rn + var _0x400605; + if (this.endXPos <= 0) { + return; + } + const _0x3b56d4 = this.endXPos; + const _0x1c3aea = b(240); + const _0x46064b = Math.round(16); + this._endPortalContainer = _0x41fbdb.add.container(_0x3b56d4, _0x1c3aea); + for (let _0x2a327c = 0; _0x2a327c < _0x46064b; _0x2a327c++) { + const _0xacf7ef = _0x41fbdb.add.image(0, (_0x2a327c - Math.floor(_0x46064b / 2)) * a, "GJ_WebSheet", "square_02_001.png").setAngle(-90); + this._endPortalContainer.add(_0xacf7ef); + } + this.container.add(this._endPortalContainer); + this._endPortalShine = _0x41fbdb.add.image(_0x3b56d4 - 58, _0x1c3aea, "GJ_WebSheet", "gradientBar.png"); + const _0x3e25a9 = ((_0x400605 = _0x41fbdb.textures.getFrame("GJ_WebSheet", "gradientBar.png")) == null ? undefined : _0x400605.height) || 64; + this._endPortalShine.setBlendMode(S); + this._endPortalShine.setTint(window.mainColor); + this._endPortalShine.setScale(1, 960 / _0x3e25a9); + this.additiveContainer.add(this._endPortalShine); + const _0x58cedb = _0x3b56d4 - 30; + const _0x4f52b7 = { + getRandomPoint: _0x4f04dd => { + const _0x53ec71 = (85 + Math.random() * 190) * Math.PI / 180; + const _0x42e60c = 320 + (Math.random() * 2 - 1) * 80; + _0x4f04dd.x = Math.cos(_0x53ec71) * _0x42e60c; + _0x4f04dd.y = Math.sin(_0x53ec71) * _0x42e60c; + return _0x4f04dd; + } + }; + this._endPortalEmitter = _0x41fbdb.add.particles(_0x58cedb, _0x1c3aea, "GJ_WebSheet", { + frame: "square.png", + lifespan: { + min: 200, + max: 1000 + }, + speed: 0, + scale: { + start: 0.75, + end: 0.125 + }, + alpha: { + start: 1, + end: 0 + }, + tint: window.mainColor, + blendMode: Phaser.BlendModes.ADD, + frequency: 10, + maxParticles: 100, + emitting: true, + emitZone: { + type: "random", + source: _0x4f52b7 + }, + emitCallback: _0x2daff4 => { + const _0x5e30d8 = -_0x2daff4.x; + const _0x17ba71 = -_0x2daff4.y; + const _0x3c5c52 = Math.sqrt(_0x5e30d8 * _0x5e30d8 + _0x17ba71 * _0x17ba71) || 1; + const _0x279521 = (_0x3c5c52 - 20) / (_0x2daff4.life / 1000 || 0.3); + _0x2daff4.velocityX = _0x5e30d8 / _0x3c5c52 * _0x279521; + _0x2daff4.velocityY = _0x17ba71 / _0x3c5c52 * _0x279521; + } + }); + this._endPortalEmitter.setDepth(14); + this.topContainer.add(this._endPortalEmitter); + this._endPortalGameY = 240; + } + updateEndPortalY(_0x26f0ab, _0x43c4d1) { + if (!this._endPortalContainer) { + return; + } + const _0x50aa7d = 140 + _0x26f0ab; + let _0x1be4c3; + _0x1be4c3 = _0x43c4d1 ? _0x50aa7d : Math.max(240, _0x50aa7d); + const _0x32e645 = b(_0x1be4c3); + this._endPortalContainer.y = _0x32e645; + this._endPortalShine.y = _0x32e645; + this._endPortalEmitter.y = _0x32e645; + this._endPortalGameY = _0x1be4c3; + } + checkColorTriggers(_0x2b00ce) { + let _0x24b030 = []; + while (this._colorTriggerIdx < this._colorTriggers.length) { + let _0x39c924 = this._colorTriggers[this._colorTriggerIdx]; + if (!(_0x39c924.x <= _0x2b00ce)) { + break; + } + _0x24b030.push(_0x39c924); + this._colorTriggerIdx++; + } + return _0x24b030; + } + resetColorTriggers() { + this._colorTriggerIdx = 0; + } + _addToSection(sliderWidth) { + const _0x4ac40a = Math.max(0, Math.floor(sliderWidth._eeWorldX / 400)); + this._sections[_0x4ac40a] ||= []; + this._sections[_0x4ac40a].push(sliderWidth); + if (sliderWidth._eeZDepth !== undefined) { + sliderWidth.depth = sliderWidth._eeZDepth; + } + const _0x14d5f7 = sliderWidth._eeLayer !== undefined ? sliderWidth._eeLayer : 1; + if (_0x14d5f7 === 2) { + this.topContainer.add(sliderWidth); + return; + } + if (!this._sectionContainers[_0x4ac40a]) { + const _0xc1a93d = { + additive: this._scene.add.container(0, 0), + normal: this._scene.add.container(0, 0) + }; + this.additiveContainer.add(_0xc1a93d.additive); + this.container.add(_0xc1a93d.normal); + this._sectionContainers[_0x4ac40a] = _0xc1a93d; + } + const _0x2157d3 = this._sectionContainers[_0x4ac40a]; + if (_0x14d5f7 === 0) { + _0x2157d3.additive.add(sliderWidth); + } else if (sliderWidth._eeBehindParent) { + _0x2157d3.normal.addAt(sliderWidth, 0); + } else { + _0x2157d3.normal.add(sliderWidth); + } + } + _addCollisionToSection(_0x3dce4b) { + const _0x5cad3c = Math.max(0, Math.floor(_0x3dce4b.x / 400)); + this._collisionSections[_0x5cad3c] ||= []; + this._collisionSections[_0x5cad3c].push(_0x3dce4b); + } + _setSectionVisible(_0x2b0fa1, _0x488507) { + const _0x141e9c = this._sectionContainers[_0x2b0fa1]; + if (_0x141e9c) { + _0x141e9c.additive.visible = _0x488507; + _0x141e9c.normal.visible = _0x488507; + } + } + updateVisibility(_0xa5f1e1) { + const _0x1dce22 = this._sectionContainers.length - 1; + if (_0x1dce22 < 0) { + return; + } + const particleScale = Math.max(0, Math.floor((_0xa5f1e1 - 200) / 400)); + const sliderHeight = Math.min(_0x1dce22, Math.floor((_0xa5f1e1 + screenWidth + 200) / 400)); + const _0x1800fc = this._visMinSec; + const _0xc31046 = this._visMaxSec; + if (_0x1800fc < 0) { + for (let _0x47dbe1 = 0; _0x47dbe1 <= _0x1dce22; _0x47dbe1++) { + this._setSectionVisible(_0x47dbe1, _0x47dbe1 >= particleScale && _0x47dbe1 <= sliderHeight); + } + this._visMinSec = particleScale; + this._visMaxSec = sliderHeight; + return; + } + if (particleScale !== _0x1800fc || sliderHeight !== _0xc31046) { + if (particleScale > _0x1800fc) { + for (let _0x7da5df = _0x1800fc; _0x7da5df <= Math.min(particleScale - 1, _0xc31046); _0x7da5df++) { + this._setSectionVisible(_0x7da5df, false); + } + } + if (sliderHeight < _0xc31046) { + for (let _0x5b2d47 = Math.max(sliderHeight + 1, _0x1800fc); _0x5b2d47 <= _0xc31046; _0x5b2d47++) { + this._setSectionVisible(_0x5b2d47, false); + } + } + if (particleScale < _0x1800fc) { + for (let _0x3caab6 = particleScale; _0x3caab6 <= Math.min(_0x1800fc - 1, sliderHeight); _0x3caab6++) { + this._setSectionVisible(_0x3caab6, true); + } + } + if (sliderHeight > _0xc31046) { + for (let _0x347412 = Math.max(_0xc31046 + 1, particleScale); _0x347412 <= sliderHeight; _0x347412++) { + this._setSectionVisible(_0x347412, true); + } + } + this._visMinSec = particleScale; + this._visMaxSec = sliderHeight; + } + } + updateObjectDebugIds() { + if (window.showObjectIds) { + if (this._debugIdTextsList && this._debugIdTextsList.length > 0) { + for (const idText of this._debugIdTextsList) { + if (idText) idText.setVisible(true); + } + } + } else { + if (this._debugIdTextsList && this._debugIdTextsList.length > 0 ) { + for (const idText of this._debugIdTextsList) { + if (idText) idText.setVisible(false); + } + } + } + } + getNearbySectionObjects(_0x2e85c7) { + const _0x55d1b7 = Math.max(0, Math.floor(_0x2e85c7 / 400)); + const _0x31c345 = Math.max(0, _0x55d1b7 - 1); + const _0x5f1907 = Math.min(this._collisionSections.length - 1, _0x55d1b7 + 1); + const _0x28a7c0 = this._nearbyBuffer; + _0x28a7c0.length = 0; + for (let _0xe2cbfa = _0x31c345; _0xe2cbfa <= _0x5f1907; _0xe2cbfa++) { + const _0x2171db = this._collisionSections[_0xe2cbfa]; + if (_0x2171db) { + for (let _0x5cdca9 = 0; _0x5cdca9 < _0x2171db.length; _0x5cdca9++) { + _0x28a7c0.push(_0x2171db[_0x5cdca9]); + } + } + } + return _0x28a7c0; + } + checkEnterEffectTriggers(_0x5d0838) { + while (this._enterEffectTriggerIdx < this._enterEffectTriggers.length) { + let _0x937c72 = this._enterEffectTriggers[this._enterEffectTriggerIdx]; + if (!(_0x937c72.x <= _0x5d0838)) { + break; + } + this._activeEnterEffect = _0x937c72.effect; + this._activeExitEffect = _0x937c72.effect; + this._enterEffectTriggerIdx++; + } + } + checkMoveTriggers(playerX) { + while (this._moveTriggerIdx < this._moveTriggers.length) { + const trig = this._moveTriggers[this._moveTriggerIdx]; + if (trig.x > playerX) break; + this._activeMoveTweens.push({ + trig, + elapsed: 0, + prevProgress: 0, + }); + if (!this._groupOffsets[trig.targetGroup]) { + this._groupOffsets[trig.targetGroup] = { x: 0, y: 0 }; + } + this._moveTriggerIdx++; + } + } + + stepMoveTriggers(dt) { + let i = 0; + while (i < this._activeMoveTweens.length) { + const anim = this._activeMoveTweens[i]; + const { trig } = anim; + const dur = trig.duration > 0 ? trig.duration : 0; + + anim.elapsed += dt; + const progress = dur > 0 ? Math.min(anim.elapsed / dur, 1) : 1; + const prevProgress = anim.prevProgress; + + const curSample = Easing.sample(trig.easingType, trig.easingRate, progress); + const prevSample = Easing.sample(trig.easingType, trig.easingRate, prevProgress); + const amount = curSample - prevSample; + + anim.prevProgress = progress; + + const deltaX = trig.offsetX * amount; + const deltaY = -(trig.offsetY * amount); + + const sprites = this._groupSprites[trig.targetGroup]; + const colliders = this._groupColliders[trig.targetGroup]; + if (sprites || colliders) { + const off = this._groupOffsets[trig.targetGroup]; + off.x += deltaX; + off.y += deltaY; + if (sprites) { + for (const spr of sprites) { + if (!spr || !spr.active) continue; + spr.x = spr._origWorldX + off.x; + spr.y = spr._origBaseY + off.y; + spr._eeWorldX = spr.x; + spr._eeBaseY = spr.y; + if (spr._coinWorldX !== undefined) { + spr._coinWorldX = (spr._origWorldX + off.x) / 2; + } + if (spr._coinWorldY !== undefined) { + spr._coinWorldY = (460 - (spr._origBaseY + off.y)) / 2; + } + } + } + if (colliders) { + for (const col of colliders) { + col.x = col._origBaseX + off.x; + col.y = col._origBaseY - off.y; + col._baseX = col.x; + col._baseY = col.y; + } + } + } + + if (progress >= 1) { + this._activeMoveTweens.splice(i, 1); + } else { + i++; + } + } + } + + resetMoveTriggers() { + this._moveTriggerIdx = 0; + this._activeMoveTweens = []; + this._groupOffsets = {}; + for (const gid in this._groupSprites) { + for (const spr of this._groupSprites[gid]) { + if (!spr || !spr.active) continue; + spr.x = spr._origWorldX; + spr.y = spr._origBaseY; + spr._eeWorldX = spr._origWorldX; + spr._eeBaseY = spr._origBaseY; + } + } + for (const gid in this._groupColliders) { + for (const col of this._groupColliders[gid]) { + col.x = col._origBaseX; + col.y = col._origBaseY; + col._baseX = col._origBaseX; + col._baseY = col._origBaseY; + } + } + } + + checkAlphaTriggers(playerX) { + while (this._alphaTriggerIdx < this._alphaTriggers.length) { + const trig = this._alphaTriggers[this._alphaTriggerIdx]; + if (trig.x > playerX) break; + const currentOpacity = this._groupOpacity[trig.targetGroup] ?? 1; + this._activeAlphaTweens.push({ + trig, + elapsed: 0, + startOpacity: currentOpacity, + }); + this._alphaTriggerIdx++; + } + } + + stepAlphaTriggers(dt) { + let i = 0; + while (i < this._activeAlphaTweens.length) { + const anim = this._activeAlphaTweens[i]; + const { trig } = anim; + const dur = trig.duration > 0 ? trig.duration : 0; + + anim.elapsed += dt; + const progress = dur > 0 ? Math.min(anim.elapsed / dur, 1) : 1; + + const newOpacity = anim.startOpacity + (trig.targetOpacity - anim.startOpacity) * progress; + this._groupOpacity[trig.targetGroup] = Math.max(0, Math.min(1, newOpacity)); + + if (progress >= 1) { + this._activeAlphaTweens.splice(i, 1); + } else { + i++; + } + } + + for (const gid in this._groupOpacity) { + const sprites = this._groupSprites[gid]; + if (!sprites) continue; + const op = this._groupOpacity[gid]; + for (const spr of sprites) { + if (!spr || !spr.active) continue; + if (spr._eeActive) continue; + spr.setAlpha(op); + } + } + } + + resetAlphaTriggers() { + this._alphaTriggerIdx = 0; + this._activeAlphaTweens = []; + this._groupOpacity = {}; + for (const gid in this._groupSprites) { + for (const spr of this._groupSprites[gid]) { + if (!spr || !spr.active) continue; + if (spr._eeActive) continue; + spr.setAlpha(1); + spr._eeOrigAlpha = 1; + } + } + } + + checkRotateTriggers(playerX) { + while (this._rotateTriggerIdx < this._rotateTriggers.length) { + const trig = this._rotateTriggers[this._rotateTriggerIdx]; + if (trig.x > playerX) break; + const totalDeg = trig.degrees + (trig.times360 * 360); + this._activeRotateTweens.push({ + trig, + elapsed: 0, + prevProgress: 0, + totalRad: totalDeg * Math.PI / 180, + }); + this._rotateTriggerIdx++; + } + } + stepRotateTriggers(dt) { + let i = 0; + while (i < this._activeRotateTweens.length) { + const anim = this._activeRotateTweens[i]; + const { trig } = anim; + const dur = trig.duration > 0 ? trig.duration : 0; + anim.elapsed += dt; + const progress = dur > 0 ? Math.min(anim.elapsed / dur, 1) : 1; + const curSample = Easing.sample(trig.easingType, trig.easingRate, progress); + const prevSample = Easing.sample(trig.easingType, trig.easingRate, anim.prevProgress); + const deltaRot = (curSample - prevSample) * anim.totalRad; + anim.prevProgress = progress; + const sprites = this._groupSprites[trig.targetGroup]; + const colliders = this._groupColliders[trig.targetGroup]; + if (trig.centerGroup > 0) { + const centerSprites = this._groupSprites[trig.centerGroup]; + if (centerSprites && centerSprites.length > 0) { + let cx = 0, cy = 0, cn = 0; + for (const cs of centerSprites) { + if (!cs || !cs.active) continue; + cx += cs.x; cy += cs.y; cn++; + } + if (cn > 0) { + cx /= cn; cy /= cn; + const cosD = Math.cos(deltaRot), sinD = Math.sin(deltaRot); + if (sprites) { + for (const spr of sprites) { + if (!spr || !spr.active) continue; + const dx = spr.x - cx, dy = spr.y - cy; + spr.x = cx + dx * cosD - dy * sinD; + spr.y = cy + dx * sinD + dy * cosD; + spr._eeWorldX = spr.x; + spr._eeBaseY = spr.y; + if (spr._origWorldX !== undefined) { spr._origWorldX = spr.x; spr._origBaseY = spr.y; } + if (!trig.lockRotation) spr.rotation += deltaRot; + } + } + if (colliders) { + for (const col of colliders) { + const dx = col.x - cx, dy = col.y - cy; + col.x = cx + dx * cosD - dy * sinD; + col.y = cy + dx * sinD + dy * cosD; + col._baseX = col.x; col._baseY = col.y; + if (col._origBaseX !== undefined) { col._origBaseX = col.x; col._origBaseY = col.y; } + } + } + } + } + } else { + if (sprites) { + for (const spr of sprites) { + if (!spr || !spr.active) continue; + spr.rotation += deltaRot; + } + } + } + if (progress >= 1) { this._activeRotateTweens.splice(i, 1); } else { i++; } + } + } + resetRotateTriggers() { + this._rotateTriggerIdx = 0; + this._activeRotateTweens = []; + } + + checkPulseTriggers(playerX) { + while (this._pulseTriggerIdx < this._pulseTriggers.length) { + const trig = this._pulseTriggers[this._pulseTriggerIdx]; + if (trig.x > playerX) break; + const totalDur = trig.fadeIn + trig.hold + trig.fadeOut; + this._activePulses.push({ trig, elapsed: 0, totalDuration: totalDur > 0 ? totalDur : 0.01 }); + this._pulseTriggerIdx++; + } + } + stepPulseTriggers(dt, colorManager) { + let i = 0; + while (i < this._activePulses.length) { + const pulse = this._activePulses[i]; + const { trig } = pulse; + pulse.elapsed += dt; + const { fadeIn, hold, fadeOut } = trig; + let intensity = 0; + const t = pulse.elapsed; + if (t < fadeIn) { intensity = fadeIn > 0 ? t / fadeIn : 1; } + else if (t < fadeIn + hold) { intensity = 1; } + else if (t < fadeIn + hold + fadeOut) { intensity = fadeOut > 0 ? 1 - (t - fadeIn - hold) / fadeOut : 0; } + if (trig.targetType === 1 && trig.targetGroup > 0) { + const sprites = this._groupSprites[trig.targetGroup]; + if (sprites) { + const pr = Math.round(trig.color.r * intensity); + const pg = Math.round(trig.color.g * intensity); + const pb = Math.round(trig.color.b * intensity); + const pulseHex = (pr << 16) | (pg << 8) | pb; + for (const spr of sprites) { + if (!spr || !spr.active) continue; + if (intensity > 0.01) { spr.setTint(pulseHex); spr._eePulsed = true; } + else { spr.clearTint(); spr._eePulsed = false; } + } + } + } else if (trig.targetType === 0 && trig.targetChannel > 0 && colorManager) { + if (intensity > 0.01) { + const baseColor = colorManager.getColor(trig.targetChannel); + const pulsed = { + r: Math.min(255, Math.round(baseColor.r + (trig.color.r - baseColor.r) * intensity)), + g: Math.min(255, Math.round(baseColor.g + (trig.color.g - baseColor.g) * intensity)), + b: Math.min(255, Math.round(baseColor.b + (trig.color.b - baseColor.b) * intensity)), + }; + const pulseHex = (pulsed.r << 16) | (pulsed.g << 8) | pulsed.b; + const chSprites = this._colorChannelSprites[trig.targetChannel]; + if (chSprites) { + for (const spr of chSprites) { + if (!spr || !spr.active) continue; + spr.setTint(pulseHex); spr._eePulsed = true; + } + } + } + } + if (pulse.elapsed >= pulse.totalDuration) { + if (trig.targetType === 1 && trig.targetGroup > 0) { + const sprites = this._groupSprites[trig.targetGroup]; + if (sprites) for (const spr of sprites) { if (spr && spr.active) { spr.clearTint(); spr._eePulsed = false; } } + } + if (trig.targetType === 0 && trig.targetChannel > 0) { + const chSprites = this._colorChannelSprites[trig.targetChannel]; + if (chSprites) for (const spr of chSprites) { if (spr && spr.active) spr._eePulsed = false; } + } + this._activePulses.splice(i, 1); + } else { i++; } + } + } + resetPulseTriggers() { + this._pulseTriggerIdx = 0; + this._activePulses = []; + } + + applyColorChannels(colorManager) { + for (const chId in this._colorChannelSprites) { + const sprites = this._colorChannelSprites[chId]; + if (!sprites || !sprites.length) continue; + const hex = colorManager.getHex(parseInt(chId, 10)); + for (const spr of sprites) { + if (!spr || !spr.active) continue; + if (spr._eePulsed) continue; + if (spr._isSaw) continue; + if (spr._eeAudioScale) continue; + spr.setTint(hex); + } + } + } + + resetEnterEffectTriggers() { + this._enterEffectTriggerIdx = 0; + this._activeEnterEffect = 0; + this._activeExitEffect = 0; + for (let _0x17a21d = 0; _0x17a21d < this._sections.length; _0x17a21d++) { + this._setSectionVisible(_0x17a21d, true); + const _0x14a035 = this._sections[_0x17a21d]; + if (_0x14a035) { + for (let _0x13e116 = 0; _0x13e116 < _0x14a035.length; _0x13e116++) { + const visMinSection = _0x14a035[_0x13e116]; + visMinSection._eeActive = false; + visMinSection.visible = true; + visMinSection.x = visMinSection._eeWorldX; + visMinSection.y = visMinSection._eeBaseY; + if (!visMinSection._eeAudioScale) { + visMinSection.setScale(1); + } + visMinSection.setAlpha(this._getGroupOpacityForSprite(visMinSection)); + } + } + } + } + _getGroupOpacityForSprite(spr) { + const groups = spr && spr._eeGroups; + if (!groups || !groups.length) return 1; + let op = 1; + for (const gid of groups) { + const g = this._groupOpacity[gid]; + if (g !== undefined && g < op) op = g; + } + return op; + } + + applyEnterEffects(_0x2f36ed) { + const _0x221c93 = 400; + const _0xa24372 = 140; + const _0x5e9f2a = 200; + const _0x29a51b = _0x2f36ed; + const _0x548004 = _0x2f36ed + screenWidth; + const _0x49c6d8 = _0x2f36ed + screenWidth / 2; + const _0x2d8f53 = Math.max(0, Math.floor((_0x29a51b - _0xa24372) / _0x221c93)); + const _0x2b19db = Math.min(this._sections.length - 1, Math.floor((_0x548004 + _0xa24372) / _0x221c93)); + for (let _0x1bd44f = _0x2d8f53; _0x1bd44f <= _0x2b19db; _0x1bd44f++) { + const _0x2cff29 = this._sections[_0x1bd44f]; + if (!_0x2cff29) { + continue; + } + const _0x20a3bb = _0x1bd44f * _0x221c93; + const _0x8f9d56 = _0x20a3bb >= _0x29a51b + _0xa24372 && _0x20a3bb + _0x221c93 <= _0x548004 - _0xa24372; + for (let _0x54aba7 = 0; _0x54aba7 < _0x2cff29.length; _0x54aba7++) { + const effectSprite = _0x2cff29[_0x54aba7]; + if (_0x8f9d56) { + if (effectSprite._eeActive) { + effectSprite._eeActive = false; + effectSprite.y = effectSprite._eeBaseY; + effectSprite.x = effectSprite._eeWorldX; + if (!effectSprite._eeAudioScale) { + effectSprite.setScale(1); + } + effectSprite.setAlpha(this._getGroupOpacityForSprite(effectSprite)); + } + continue; + } + const _0xeded99 = effectSprite._eeWorldX; + const _0x1b2883 = _0xeded99 > _0x49c6d8; + let _0x289aa2; + _0x289aa2 = _0x1b2883 ? Math.max(0, Math.min(1, (_0x548004 - _0xeded99) / _0xa24372)) : Math.max(0, Math.min(1, (_0xeded99 - _0x29a51b) / _0xa24372)); + if (_0x289aa2 >= 1) { + if (effectSprite._eeActive) { + effectSprite._eeActive = false; + effectSprite.y = effectSprite._eeBaseY; + effectSprite.x = effectSprite._eeWorldX; + if (!effectSprite._eeAudioScale) { + effectSprite.setScale(1); + } + effectSprite.setAlpha(this._getGroupOpacityForSprite(effectSprite)); + } + continue; + } + effectSprite._eeActive = true; + const _0x453353 = _0x1b2883 ? this._activeEnterEffect : this._activeExitEffect; + const _0x20804e = 1 - _0x289aa2; + let _0x50e6d9 = effectSprite._eeBaseY; + let _0x17437c = effectSprite._eeWorldX; + let _0x2128bf = _0x289aa2; + let _0x127ace = 1; + switch (_0x453353) { + case 0: + break; + case 1: + _0x50e6d9 = effectSprite._eeBaseY + _0x5e9f2a * _0x20804e; + break; + case 2: + _0x50e6d9 = effectSprite._eeBaseY - _0x5e9f2a * _0x20804e; + break; + case 3: + _0x17437c = effectSprite._eeWorldX - _0x5e9f2a * _0x20804e; + break; + case 4: + _0x17437c = effectSprite._eeWorldX + _0x5e9f2a * _0x20804e; + break; + case 5: + if (!effectSprite._eeAudioScale) { + _0x127ace = _0x289aa2; + } + break; + case 6: + if (!effectSprite._eeAudioScale) { + _0x127ace = 1 + _0x20804e * 0.75; + } + } + if (effectSprite.x !== _0x17437c) { + effectSprite.x = _0x17437c; + } + if (effectSprite.y !== _0x50e6d9) { + effectSprite.y = _0x50e6d9; + } + const _eeFinalAlpha = _0x2128bf * this._getGroupOpacityForSprite(effectSprite); + if (effectSprite.alpha !== _eeFinalAlpha) { + effectSprite.alpha = _eeFinalAlpha; + } + if (!effectSprite._eeAudioScale && effectSprite.scaleX !== _0x127ace) { + effectSprite.setScale(_0x127ace); + } + } + } + } + setGroundColor(_0x3958eb) { + if (window.isEditor) return; // not dealing with ts rn + for (let _0x46c21a of this._groundTiles) { + _0x46c21a.setTint(_0x3958eb); + } + for (let _0x251562 of this._ceilingTiles) { + _0x251562.setTint(_0x3958eb); + } + } + updateAudioScale(_0x337bf7) { + for (let _0x24afdb of this._audioScaleSprites) { + _0x24afdb.setScale(_0x337bf7); + } + const _now = Date.now(); + const _clickMult = window.orbClickScale || 2.0; + const _shrinkMs = window.orbClickShrinkTime || 250; + for (let _0xOrbSpr of this._orbSprites) { + const _baseScale = 0.75 + _0x337bf7 * 0.15; + if (_0xOrbSpr._hitTime) { + const _elapsed = _now - _0xOrbSpr._hitTime; + if (_elapsed < 80) { + const _t = _elapsed / 80; + _0xOrbSpr.setScale(_baseScale + (_baseScale * (_clickMult - 1)) * _t); + } else if (_elapsed < 80 + _shrinkMs) { + const _t = (_elapsed - 80) / _shrinkMs; + const _peak = _baseScale * _clickMult; + _0xOrbSpr.setScale(_peak + (_baseScale - _peak) * _t); + } else { + _0xOrbSpr._hitTime = null; + _0xOrbSpr.setScale(_baseScale); + } + } else { + _0xOrbSpr.setScale(_baseScale); + } + } + } + resetVisibility() { + this._visMinSec = -1; + this._visMaxSec = -1; + } + resetObjects() { + for (let _0x3d473e of this.objects) { + if (!_0x3d473e) { + continue; + } + _0x3d473e.activated = false; + if (_0x3d473e._dashHoldTicks !== undefined) { + _0x3d473e._dashHoldTicks = 0; + } + } + for (let _0x5c5d9a of this._audioScaleSprites) { + _0x5c5d9a.setScale(0.1); + } + for (let _cs of this._coinSprites) { + if (_cs) { + _cs.setVisible(true); + _cs.setAlpha(1); + _cs.setScale(_cs._coinBaseScale || 1); + if (_cs._coinWorldY !== undefined) { + _cs.y = b(_cs._coinWorldY); + } + } + } + } +} diff --git a/assets/scripts/core/player.js b/assets/scripts/core/player.js index 03278d3..81273f6 100644 --- a/assets/scripts/core/player.js +++ b/assets/scripts/core/player.js @@ -1,2880 +1,2950 @@ -class PlayerState { - constructor() { - this.reset(); - } - reset() { - this.y = 30; - this.lastY = 30; - this.lastGroundPosY = 30; - this.yVelocity = 0; - this.onGround = true; - this.canJump = true; - this.isJumping = false; - this.gravityFlipped = false; - this.isFlying = false; - this.isBall = false; - this.isWave = false; - this.isUfo = false; - this.isSpider = false; - this.isBird = false; - this.isDart = false; - this.isRobot = false; - this.isSwing = false; - this.isJetpack = false; - this.isMini = false; - this.wasBoosted = false; - this.pendingVelocity = null; - this.collideTop = 0; - this.collideBottom = 0; - this.onCeiling = false; - this.upKeyDown = false; - this.upKeyPressed = false; - this.queuedHold = false; - this.isDead = false; - this.mirrored = false; - this.isDashing = false; - this.dashYVelocity = 0; - this.isDual = false; - this.ignorePortals = false; - } -} - -class StreakManager { - constructor(_0x9c2356, _0x171c7f, _0x49d49a, _0xb01616, _0x5aac4b, _0x293ce3, _0x5c7bc5 = 16777215, _0x5a3e29 = 1) { - this._color = _0x5c7bc5; - this._opacity = _0x5a3e29; - this._fadeDelta = 1 / _0x49d49a; - this._minSegSq = _0xb01616 * _0xb01616; - this._maxSeg = _0x293ce3; - this._maxPoints = Math.floor(_0x49d49a * 60 + 2) * 5; - this._stroke = _0x5aac4b; - this._pts = []; - this._posR = { - x: 0, - y: 0 - }; - this._posInit = false; - this._active = false; - const graphicsSettings = window.performanceOptimizer ? window.performanceOptimizer.getGraphicsSettings() : { - enableGlow: true, - blendMode: Phaser.BlendModes.ADD - }; - - this._gfx = _0x9c2356.add.graphics(); - this._gfx.setBlendMode(graphicsSettings.blendMode); - } - addToContainer(_0xa23240, _0x4b05db) { - _0xa23240.add(this._gfx); - this._gfx.setDepth(_0x4b05db); - } - setColor(newColor) { - this._color = newColor - } - setPosition(_0x388397, _0x292e79) { - this._posR.x = _0x388397; - this._posR.y = _0x292e79; - this._posInit = true; - } - start() { - this._active = true; - } - stop() { - this._active = false; - } - reset() { - this._pts = []; - this._posInit = false; - this._gfx.clear(); - } - update(_0x2acf4c) { - if (!this._posInit) { - this._gfx.clear(); - return; - } - const _0x1817b7 = _0x2acf4c * this._fadeDelta; - let _0x56ab0b = 0; - for (let _0x3ca060 = 0; _0x3ca060 < this._pts.length; _0x3ca060++) { - this._pts[_0x3ca060].state -= _0x1817b7; - if (this._pts[_0x3ca060].state > 0) { - if (_0x56ab0b !== _0x3ca060) { - this._pts[_0x56ab0b] = this._pts[_0x3ca060]; - } - _0x56ab0b++; - } - } - this._pts.length = _0x56ab0b; - if (this._active && this._pts.length < this._maxPoints) { - const _0x89a79d = this._pts.length; - let _0x3d12ca = true; - if (_0x89a79d > 0) { - const _0x2748e4 = this._pts[_0x89a79d - 1]; - const _0x3a1a00 = this._posR.x - _0x2748e4.x; - const _0x4c247a = this._posR.y - _0x2748e4.y; - const _0x1f9fea = _0x3a1a00 * _0x3a1a00 + _0x4c247a * _0x4c247a; - if (this._maxSeg > 0 && Math.sqrt(_0x1f9fea) > this._maxSeg) { - this._pts.length = 0; - } else if (_0x1f9fea < this._minSegSq) { - _0x3d12ca = false; - } else if (_0x89a79d > 1) { - const _0x375c40 = this._pts[_0x89a79d - 2]; - const _0x14c0c1 = this._posR.x - _0x375c40.x; - const _0x2d01f0 = this._posR.y - _0x375c40.y; - if (_0x14c0c1 * _0x14c0c1 + _0x2d01f0 * _0x2d01f0 < this._minSegSq * 2) { - _0x3d12ca = false; - } - } - } - if (_0x3d12ca) { - this._pts.push({ - x: this._posR.x, - y: this._posR.y, - state: 1 - }); - } - } - this._gfx.clear(); - const _0x49dac5 = this._pts.length; - if (!(_0x49dac5 < 2)) { - for (let _0x27c164 = 0; _0x27c164 < _0x49dac5 - 1; _0x27c164++) { - const _0x398b7b = this._pts[_0x27c164]; - const _0x3b4326 = this._pts[_0x27c164 + 1]; - const _0x1c4c9d = (_0x398b7b.state + _0x3b4326.state) * 0.5 * this._opacity; - this._gfx.lineStyle(this._stroke, this._color, _0x1c4c9d); - this._gfx.lineBetween(_0x398b7b.x, _0x398b7b.y, _0x3b4326.x, _0x3b4326.y); - } - } - } -} -class WaveTrail { - constructor(scene, color, glowColor) { - this._color = color; - this._glowColor = glowColor; - this._pts = []; - this._active = false; - this._posInit = false; - this._pos = { x: 0, y: 0 }; - this._maxAge = 0.6; - this._minSegSq = 1.5 * 1.5; - this._halfW = 7; - this._glowHalfW = 14; - this._gfx = scene.add.graphics(); - this._gfx.setBlendMode(Phaser.BlendModes.NORMAL); - this._glowGfx = scene.add.graphics(); - this._glowGfx.setBlendMode(Phaser.BlendModes.ADD); - } - addToContainer(container, depth) { - container.add(this._glowGfx); - this._glowGfx.setDepth(depth - 1); - container.add(this._gfx); - this._gfx.setDepth(depth); - } - setPosition(x, y) { this._pos.x = x; this._pos.y = y; this._posInit = true; } - start() { this._active = true; } - stop() { this._active = false; } - reset() { this._pts = []; this._posInit = false; this._gfx.clear(); this._glowGfx.clear(); } - - _intersect(p1, p2, p3, p4) { - const d1x = p2.x - p1.x, d1y = p2.y - p1.y; - const d2x = p4.x - p3.x, d2y = p4.y - p3.y; - const denom = d1x * d2y - d1y * d2x; - if (Math.abs(denom) < 1e-6) return { x: p2.x, y: p2.y }; - const t = ((p3.x - p1.x) * d2y - (p3.y - p1.y) * d2x) / denom; - const tc = Math.max(-3, Math.min(3, t)); - return { x: p1.x + d1x * tc, y: p1.y + d1y * tc }; - } - - _buildEdges(pts, halfW) { - const n = pts.length; - const upper = new Array(n); - const lower = new Array(n); - - // precompute per-segment normals - const segNx = new Array(n - 1); - const segNy = new Array(n - 1); - for (let i = 0; i < n - 1; i++) { - const dx = pts[i + 1].x - pts[i].x; - const dy = pts[i + 1].y - pts[i].y; - const len = Math.sqrt(dx * dx + dy * dy) || 1; - segNx[i] = -dy / len; - segNy[i] = dx / len; - } - - for (let i = 0; i < n; i++) { - const p = pts[i]; - let nx, ny; - - if (i === 0) { - nx = segNx[0]; ny = segNy[0]; - } else if (i === n - 1) { - nx = segNx[n - 2]; ny = segNy[n - 2]; - } else { - // miter: intersect the two offset edge lines for a sharp corner - const n1x = segNx[i - 1], n1y = segNy[i - 1]; - const n2x = segNx[i], n2y = segNy[i]; - - // upper edge intersection - const u1 = { x: pts[i - 1].x + n1x * halfW, y: pts[i - 1].y + n1y * halfW }; - const u2 = { x: p.x + n1x * halfW, y: p.y + n1y * halfW }; - const u3 = { x: p.x + n2x * halfW, y: p.y + n2y * halfW }; - const u4 = { x: pts[i + 1].x + n2x * halfW, y: pts[i + 1].y + n2y * halfW }; - const mu = this._intersect(u1, u2, u3, u4); - - // lower edge intersection - const l1 = { x: pts[i - 1].x - n1x * halfW, y: pts[i - 1].y - n1y * halfW }; - const l2 = { x: p.x - n1x * halfW, y: p.y - n1y * halfW }; - const l3 = { x: p.x - n2x * halfW, y: p.y - n2y * halfW }; - const l4 = { x: pts[i + 1].x - n2x * halfW, y: pts[i + 1].y - n2y * halfW }; - const ml = this._intersect(l1, l2, l3, l4); - - upper[i] = mu; - lower[i] = ml; - continue; - } - - upper[i] = { x: p.x + nx * halfW, y: p.y + ny * halfW }; - lower[i] = { x: p.x - nx * halfW, y: p.y - ny * halfW }; - } - return { upper, lower }; - } - - _drawRibbon(gfx, pts, halfW, color, baseAlpha, antialias = false) { - const n = pts.length; - if (n < 2) return; - - const { upper, lower } = this._buildEdges(pts, halfW); - if (antialias) { - this._drawRibbon(gfx, pts, halfW + 0.5, color, baseAlpha * 0.5, false); - } - - for (let i = 0; i < n - 1; i++) { - const alpha = Math.max(0, (1 - (pts[i].age + pts[i+1].age) * 0.5)) * baseAlpha; - if (alpha <= 0.01) continue; - - gfx.fillStyle(color, alpha); - - gfx.fillTriangle( - upper[i].x, upper[i].y, - upper[i+1].x, upper[i+1].y, - lower[i].x, lower[i].y - ); - gfx.fillTriangle( - upper[i+1].x, upper[i+1].y, - lower[i+1].x, lower[i+1].y, - lower[i].x, lower[i].y - ); - } - } - - update(delta) { - if (!this._posInit) { this._gfx.clear(); this._glowGfx.clear(); return; } - const decay = (delta / 1000) / this._maxAge; - - let alive = 0; - for (let i = 0; i < this._pts.length; i++) { - this._pts[i].age += decay; - if (this._pts[i].age < 1) this._pts[alive++] = this._pts[i]; - } - this._pts.length = alive; - - if (this._active) { - const n = this._pts.length; - let add = true; - if (n > 0) { - const last = this._pts[n - 1]; - const dx = this._pos.x - last.x, dy = this._pos.y - last.y; - if (dx*dx + dy*dy < this._minSegSq) add = false; - } - if (add) this._pts.push({ x: this._pos.x, y: this._pos.y, age: 0 }); - } - - this._gfx.clear(); - this._glowGfx.clear(); - if (this._pts.length < 2) return; - - const solid = window.solidWave === true; - if (solid) { - this._drawRibbon(this._gfx, this._pts, this._halfW, window.mainColor, 1.0); - } else { - this._drawRibbon(this._glowGfx, this._pts, this._glowHalfW, this._glowColor, 0.22); - this._drawRibbon(this._gfx, this._pts, this._halfW, this._color, 0.95); - this._drawRibbon(this._gfx, this._pts, Math.round(this._halfW * 0.32), 0xffffff, 0.5); - } - } -} -function ds(scene, x, y, frameName, depth, isVisible) { - let atlasData = getAtlasFrame(scene, frameName); - if (!atlasData) { - return null; - } - let image = scene.add.image(x, y, atlasData.atlas, atlasData.frame); - image.setDepth(depth); - image.setVisible(isVisible); - return { - sprite: image - }; -} - -class PlayerObject { - constructor(scene, _0x3f50cc, _0x2811e1) { - this._scene = scene; - this.p = _0x3f50cc; - this._gameLayer = _0x2811e1; - this._rotation = 0; - this.rotateActionActive = false; - this.rotateActionTime = 0; - this.rotateActionDuration = 0; - this.rotateActionStart = 0; - this.rotateActionTotal = 0; - this._lastLandObject = null; - this._lastXOffset = 0; - this._lastCameraX = 0; - this._lastCameraY = 0; - this._dashAnimationFrame = 0; - this._dashAnimationTimer = 0; - this._dashAnimationSprite = null; - this._createSprites(); - this._hitboxGraphics = scene.add.graphics().setScrollFactor(0).setDepth(20); - this._initParticles(scene); - scene.events.on("shutdown", () => this._cleanupExplosion()); - this.noclipStats = { - totalFrames: 0, - deathFrames: 0, - accuracy: 100, - deaths: 0 - }; - } - _createSprites() { - const spriteY = this._scene; - const spriteX = b(this.p.y); - const particleY = centerX; - this._playerGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentPlayer}_glow_001.png`, 9, false); - this._playerSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentPlayer}_001.png`, 10, true); - this._playerOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentPlayer}_2_001.png`, 8, true); - this._playerExtraLayer = ds(spriteY, particleY, spriteX, `${window.currentPlayer}_extra_001.png`, 12, true); - if (this._playerGlowLayer) { - this._playerGlowLayer.sprite.setTint(window.secondaryColor); - this._playerGlowLayer.sprite._glowEnabled = false; - } - if (this._playerSpriteLayer) { - this._playerSpriteLayer.sprite.setTint(window.mainColor); - } else { - let _0x3aecd9 = spriteY.add.rectangle(particleY, spriteX, g, g, window.mainColor); - _0x3aecd9.setDepth(10); - this._playerSpriteLayer = { - sprite: _0x3aecd9 - }; - } - if (this._playerOverlayLayer) { - this._playerOverlayLayer.sprite.setTint(window.secondaryColor); - } - this._shipGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentShip}_glow_001.png`, 9, false); - this._shipSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentShip}_001.png`, 10, false); - this._shipOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentShip}_2_001.png`, 8, false); - this._shipExtraLayer = ds(spriteY, particleY, spriteX, `${window.currentShip}_extra_001.png`, 12, false); - if (this._shipGlowLayer) { - this._shipGlowLayer.sprite.setTint(window.secondaryColor); - this._shipGlowLayer.sprite._glowEnabled = false; - } - if (this._shipSpriteLayer) { - this._shipSpriteLayer.sprite.setTint(window.mainColor); - } else { - let _0x100643 = spriteY.add.polygon(particleY, spriteX, [{ - x: -72, - y: 40 - }, { - x: 72, - y: 0 - }, { - x: -72, - y: -40 - }, { - x: -40, - y: 0 - }], window.mainColor); - _0x100643.setDepth(10).setVisible(false); - this._shipSpriteLayer = { - sprite: _0x100643 - }; - } - if (this._shipOverlayLayer) { - this._shipOverlayLayer.sprite.setTint(window.secondaryColor); - } - this._ballGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentBall}_glow_001.png`, 9, false); - this._ballSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentBall}_001.png`, 10, false); - this._ballOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentBall}_2_001.png`, 8, false); - if (this._ballGlowLayer) { - this._ballGlowLayer.sprite.setTint(window.secondaryColor); - this._ballGlowLayer.sprite._glowEnabled = false; - } - if (this._ballSpriteLayer) { - this._ballSpriteLayer.sprite.setTint(window.mainColor); - } - if (this._ballOverlayLayer) { - this._ballOverlayLayer.sprite.setTint(window.secondaryColor); - } - this._waveGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentWave}_glow_001.png`, 9, false); - this._waveOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentWave}_2_001.png`, 8, false); - this._waveExtraLayer = null; - this._waveSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentWave}_001.png`, 10, false); - if (this._waveGlowLayer) { - this._waveGlowLayer.sprite.setTint(window.secondaryColor); - this._waveGlowLayer.sprite._glowEnabled = false; - } - if (this._waveSpriteLayer) { - this._waveSpriteLayer.sprite.setTint(window.mainColor); - } - if (this._waveOverlayLayer) { - this._waveOverlayLayer.sprite.setTint(window.secondaryColor); - } - this.playerSprite = this._playerSpriteLayer.sprite; - this.shipSprite = this._shipSpriteLayer.sprite; - this._playerLayers = [this._playerSpriteLayer, this._playerGlowLayer, this._playerOverlayLayer, this._playerExtraLayer]; - this._shipLayers = [this._shipSpriteLayer, this._shipGlowLayer, this._shipOverlayLayer, this._shipExtraLayer]; - this._ballLayers = [this._ballSpriteLayer, this._ballGlowLayer, this._ballOverlayLayer].filter(_0x37ad93 => !!_0x37ad93); - this._waveLayers = [this._waveSpriteLayer, this._waveOverlayLayer, this._waveExtraLayer, this._waveGlowLayer].filter(_0x37ad93 => !!_0x37ad93); - const _spiderBase = `${window.currentSpider}_01`; - this._spiderSpriteLayer = ds(spriteY, particleY, spriteX, `${_spiderBase}_001.png`, 10, false); - this._spiderGlowLayer = ds(spriteY, particleY, spriteX, `${_spiderBase}_glow_001.png`, 9, false); - this._spiderOverlayLayer = ds(spriteY, particleY, spriteX, `${_spiderBase}_2_001.png`, 8, false); - this._spiderExtraLayer = ds(spriteY, particleY, spriteX, `${_spiderBase}_extra_001.png`, 12, false); - if (this._spiderSpriteLayer) this._spiderSpriteLayer.sprite.setTint(window.mainColor); - if (this._spiderOverlayLayer) this._spiderOverlayLayer.sprite.setTint(window.secondaryColor); - if (this._spiderGlowLayer) { this._spiderGlowLayer.sprite.setTint(window.secondaryColor); this._spiderGlowLayer.sprite._glowEnabled = false; } - this._spiderLayers = [this._spiderSpriteLayer, this._spiderGlowLayer, this._spiderOverlayLayer, this._spiderExtraLayer].filter(x => !!x); - this._birdSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentBird}_001.png`, 10, false); - this._birdGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentBird}_2_001.png`, 9, false); - this._birdOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentBird}_3_001.png`, 8, false); - this._birdExtraLayer = ds(spriteY, particleY, spriteX, `${window.currentBird}_extra_001.png`, 12, false); - if (this._birdSpriteLayer) { - this._birdSpriteLayer.sprite.setTint(window.mainColor); - } - if (this._birdGlowLayer) { - this._birdGlowLayer.sprite.setTint(window.secondaryColor); - this._birdGlowLayer.sprite._glowEnabled = false; - } - if (this._birdOverlayLayer) { - this._birdOverlayLayer.sprite.setTint(window.secondaryColor); - } - this._birdLayers = [this._birdSpriteLayer, this._birdGlowLayer, this._birdOverlayLayer, this._birdExtraLayer].filter(x => !!x); - - this._allLayers = [...this._playerLayers, ...this._ballLayers, ...this._waveLayers, ...this._shipLayers, ...this._spiderLayers, ...this._birdLayers]; - - this._dashAnimationSprite = spriteY.add.image(particleY, spriteX, "GJ_GameSheetGlow", "playerDash2_001.png"); - this._dashAnimationSprite.setDepth(7); - this._dashAnimationSprite.setVisible(false); - this._dashAnimationSprite.setTint(0xffffff); - this._dashAnimationSprite.setBlendMode('ADD'); - } - _updateDashAnimation(deltaTime) { - if (!this._dashAnimationSprite) return; - if (this.p.isDashing) { - this._dashAnimationSprite.setVisible(true); - this._dashAnimationTimer += deltaTime; - if (this._dashAnimationTimer >= 16.67) { - this._dashAnimationTimer = 0; - this._dashAnimationFrame = (this._dashAnimationFrame % 12) + 1; - const frameName = `playerDash2_${String(this._dashAnimationFrame).padStart(3, '0')}.png`; - this._dashAnimationSprite.setFrame(frameName); - } - } else { - this._dashAnimationSprite.setVisible(false); - this._dashAnimationFrame = 0; - this._dashAnimationTimer = 0; - } - } - _initParticles(scene) { - this._particleEmitter = scene.add.particles(0, 0, "GJ_WebSheet", { - frame: "square.png", - speed: { - min: 110, - max: 190 - }, - angle: { - min: 225, - max: 315 - }, - lifespan: { - min: 150, - max: 450 - }, - scale: { - start: 0.5, - end: 0 - }, - gravityY: 600, - frequency: 1000 / 30, - blendMode: "ADD", - alpha: { - start: 1, - end: 0 - }, - tint: window.mainColor - }); - this._particleEmitter.stop(); - this._particleEmitter.setDepth(9); - this._gameLayer.container.add(this._particleEmitter); - this._flyParticleEmitter = scene.add.particles(0, 0, "GJ_WebSheet", { - frame: "square.png", - speed: { - min: 22, - max: 38 - }, - angle: { - min: 225, - max: 315 - }, - lifespan: { - min: 150, - max: 450 - }, - scale: { - start: 0.5, - end: 0 - }, - gravityY: 600, - frequency: 1000 / 30, - blendMode: "ADD", - tint: { - start: 16737280, - end: 16711680 - }, - alpha: { - start: 1, - end: 0 - } - }); - this._flyParticleEmitter.stop(); - this._flyParticleEmitter.setDepth(9); - this._gameLayer.container.add(this._flyParticleEmitter); - this._flyParticle2Emitter = scene.add.particles(0, 0, "GJ_WebSheet", { - frame: "square.png", - speed: { - min: 220, - max: 380 - }, - angle: { - min: 180, - max: 360 - }, - lifespan: { - min: 150, - max: 450 - }, - scale: { - start: 0.75, - end: 0 - }, - gravityY: 600, - frequency: 1000 / 30, - blendMode: "ADD", - tint: { - start: 16760320, - end: 16711680 - }, - alpha: { - start: 1, - end: 0 - } - }); - this._flyParticle2Emitter.stop(); - this._flyParticle2Emitter.setDepth(9); - this._gameLayer.container.add(this._flyParticle2Emitter); - this._shipDragEmitter = scene.add.particles(0, 0, "GJ_WebSheet", { - frame: "square.png", - x: { - min: -18, - max: 18 - }, - speed: { - min: 223.79999999999998, - max: 343.79999999999995 - }, - angle: { - min: 205, - max: 295 - }, - lifespan: { - min: 80, - max: 220 - }, - scale: { - start: 0.375, - end: 0 - }, - gravityX: -700, - gravityY: 600, - frequency: 25, - blendMode: "ADD", - alpha: { - start: 1, - end: 0 - } - }); - this._shipDragEmitter.stop(); - this._shipDragEmitter.setDepth(22); - this._shipDragActive = false; - this._particleActive = false; - this._flyParticle2Active = false; - this._flyParticleActive = false; - const _0x57911a = { - frame: "square.png", - speed: { - min: 250, - max: 350 - }, - angle: { - min: 210, - max: 330 - }, - lifespan: { - min: 50, - max: 600 - }, - scale: { - start: 0.625, - end: 0 - }, - gravityY: 1000, - blendMode: "ADD", - alpha: { - start: 1, - end: 0 - }, - tint: window.mainColor, - emitting: false - }; - this._landEmitter1 = scene.add.particles(0, 0, "GJ_WebSheet", { - ..._0x57911a - }); - this._landEmitter2 = scene.add.particles(0, 0, "GJ_WebSheet", { - ..._0x57911a - }); - this._aboveContainer = scene.add.container(0, 0); - this._aboveContainer.setDepth(13); - this._gameLayer.topContainer.add(this._landEmitter1); - this._gameLayer.topContainer.add(this._landEmitter2); - this._landIdx = false; - this._streak = new StreakManager(this._scene, "streak_01", 0.231, 10, 8, 100, window.secondaryColor, 0.7); - this._streak.addToContainer(this._gameLayer.container, 8); - this._waveTrail = new WaveTrail(this._scene, window.secondaryColor, window.secondaryColor); - this._waveTrail.addToContainer(this._gameLayer.container, 9); - } - _updateParticles(_0xc43238, _0x52b718, _0x5af874) { - if (this.p.isDead) { - return; - } - const _0x119eb7 = this._scene._playerWorldX; - const _0x519d38 = b(this.p.y); - this._particleEmitter.particleX = _0x119eb7 - 20; - this._particleEmitter.particleY = _0x519d38 + (this.p.gravityFlipped ? (-26 + (this.p.isUfo ? -5 : 0)) : (26 + (this.p.isUfo ? 5 : 0))); - const _0x4436ac = this.p.onGround && !this.p.isFlying && !this.p.isWave && !this.p.isSpider; - if (_0x4436ac && !this._particleActive) { - this._particleEmitter.start(); - this._particleActive = true; - } else if (!_0x4436ac && this._particleActive) { - this._particleEmitter.stop(); - this._particleActive = false; - } - { - const _0xe76a85 = Math.cos(this._rotation); - const _0x26ec65 = Math.sin(this._rotation); - const _0x216018 = this.p.isWave ? 0 : (this.p.isUfo ? 0 : -24); - const _0x2baeac = (this.p.isWave ? 4 : (this.p.isUfo ? 5 : 18)) * (this.p.gravityFlipped ? -1 : 1); - const _0x75c380 = _0x119eb7 + _0x216018 * _0xe76a85 - _0x2baeac * _0x26ec65; - const _0x2b31d7 = _0x519d38 + _0x216018 * _0x26ec65 + _0x2baeac * _0xe76a85; - const _0x5d66f4 = (Math.random() * 2 - 1) * 2 * 2; - this._flyParticleEmitter.particleX = _0x75c380; - this._flyParticleEmitter.particleY = _0x2b31d7 + _0x5d66f4; - this._flyParticle2Emitter.particleX = _0x75c380; - this._flyParticle2Emitter.particleY = _0x2b31d7 + _0x5d66f4; - this._streak.setPosition(this.p.isWave ? _0x75c380 : (this.p.isUfo ? _0x75c380 : _0x75c380 + 8), _0x2b31d7); - this._waveTrail.setPosition(_0x119eb7, _0x519d38); - } - this._streak.update(_0x5af874); - this._waveTrail.update(_0x5af874); - const _0x3d69d2 = this.p.isFlying || this.p.isUfo; - if (_0x3d69d2 && !this._flyParticleActive) { - this._flyParticleEmitter.start(); - this._flyParticleActive = true; - } else if (!_0x3d69d2 && this._flyParticleActive) { - this._flyParticleEmitter.stop(); - this._flyParticleActive = false; - } - const _0x169e30 = (this.p.isFlying && this.p.upKeyDown) || (this.p.isUfo && this.p.isJumping); - if (_0x169e30 && !this._flyParticle2Active) { - this._flyParticle2Emitter.start(); - this._flyParticle2Active = true; - } else if (!_0x169e30 && this._flyParticle2Active) { - this._flyParticle2Emitter.stop(); - this._flyParticle2Active = false; - } - const _0x2e5643 = _0xc43238 + this._scene._getMirrorXOffset(_0x119eb7 - _0xc43238); - this._shipDragEmitter.x = _0x2e5643; - this._shipDragEmitter.particleY = this.p.gravityFlipped ? b(this.p.y) + _0x52b718 + 10 : b(this.p.y) + _0x52b718 + 30; - this._shipDragEmitter.setAngle(this.p.mirrored ? { - min: 245, - max: 335 - } : { - min: 205, - max: 295 - }); - this._shipDragEmitter.gravityX = this.p.mirrored ? 700 : -700; - this._shipDragEmitter.setScale(this.p.gravityFlipped ? { x: -1, y: 1 } : { x: 1, y: 1 }); - const _0x2ac9d0 = this.p.isFlying && this.p.onGround && (this.p.gravityFlipped ? this.p.onCeiling : !this.p.onCeiling); - if (_0x2ac9d0 && !this._shipDragActive) { - this._shipDragEmitter.start(); - this._shipDragActive = true; - } else if (!_0x2ac9d0 && this._shipDragActive) { - this._shipDragEmitter.stop(); - this._shipDragActive = false; - } - } - setCubeVisible(_0x411813) { - this._playerSpriteLayer.sprite.setVisible(_0x411813); - if (this._playerGlowLayer) { - this._playerGlowLayer.sprite.setVisible(_0x411813 && this._playerGlowLayer.sprite._glowEnabled); - } - if (this._playerOverlayLayer) { - this._playerOverlayLayer.sprite.setVisible(_0x411813); - } - if (this._playerExtraLayer) { - this._playerExtraLayer.sprite.setVisible(_0x411813); - } - } - setShipVisible(_0x1c5620) { - this._shipSpriteLayer.sprite.setVisible(_0x1c5620); - if (this._shipGlowLayer) { - this._shipGlowLayer.sprite.setVisible(_0x1c5620 && this._shipGlowLayer.sprite._glowEnabled); - } - if (this._shipOverlayLayer) { - this._shipOverlayLayer.sprite.setVisible(_0x1c5620); - } - if (this._shipExtraLayer) { - this._shipExtraLayer.sprite.setVisible(_0x1c5620); - } - } - setBirdVisible(v) { - for (const layer of (this._birdLayers || [])) { - if (layer === this._birdGlowLayer) { - layer.sprite.setVisible(v && layer.sprite._glowEnabled); - } else { - layer.sprite.setVisible(v); - } - } - } - setBallVisible(_0x5685cf) { - if (this._ballSpriteLayer) { - this._ballSpriteLayer.sprite.setVisible(_0x5685cf); - } - if (this._ballGlowLayer) { - this._ballGlowLayer.sprite.setVisible(_0x5685cf && this._ballGlowLayer.sprite._glowEnabled); - } - if (this._ballOverlayLayer) { - this._ballOverlayLayer.sprite.setVisible(_0x5685cf); - } - } - setWaveVisible(_0x2d078b) { - if (this._waveSpriteLayer) { - this._waveSpriteLayer.sprite.setVisible(_0x2d078b); - } - if (this._waveOverlayLayer) { - this._waveOverlayLayer.sprite.setVisible(_0x2d078b); - } - if (this._waveExtraLayer) { - this._waveExtraLayer.sprite.setVisible(_0x2d078b); - } - if (this._waveGlowLayer) { - this._waveGlowLayer.sprite.setVisible(_0x2d078b && this._waveGlowLayer.sprite._glowEnabled); - } - } - setSpiderVisible(v) { - for (const layer of (this._spiderLayers || [])) { - if (layer === this._spiderGlowLayer) { - layer.sprite.setVisible(v && layer.sprite._glowEnabled); - } else { - layer.sprite.setVisible(v); - } - } - } - syncSprites(cameraX, cameraY, _0x3afedf, mirrorOffset) { - if (this._endAnimating) { - return; - } - const _0x7f0705 = mirrorOffset !== undefined ? mirrorOffset : centerX; - const _0x1a433c = b(this.p.y) + cameraY; - const playerRotation = this._rotation; - this._lastCameraX = cameraX; - this._lastCameraY = cameraY; - this._aboveContainer.x = -cameraX; - this._aboveContainer.y = cameraY; -if (this.p.isFlying || this.p.isUfo) { - const _0x3904f8 = 10; - const _miniS = this.p.isMini ? 0.6 : 1; - const playerOffset = this.p.gravityFlipped ? (-30 * _miniS) : (10 * _miniS); - const cosRotation = Math.cos(playerRotation); - const sinRotation = Math.sin(playerRotation); - const mirrored = this.p.mirrored ? -1 : 1; - const _0x1b1d28 = -_0x3904f8 * sinRotation * mirrored; - const _0x185f91 = _0x3904f8 * cosRotation; - const _0x562424 = playerOffset * sinRotation * mirrored; - const _0x3011c9 = -playerOffset * cosRotation; - const _ufoMode = this.p.isUfo && !this.p.isFlying; - if (this.p.isFlying) { - for (const layer of this._shipLayers) { - if (layer) { - const _miniS = this.p.isMini ? 0.6 : 1; - layer.sprite.x = _0x7f0705 + _0x1b1d28; - layer.sprite.y = _0x1a433c + _0x185f91 + (this.p.gravityFlipped ? (-20 * _miniS) : 0) - layer.sprite.rotation = this.p.mirrored ? -playerRotation : playerRotation; - layer.sprite.scaleY = this.p.gravityFlipped ? -_miniS : _miniS; - layer.sprite.scaleX = this.p.mirrored ? -_miniS : _miniS; - } - } - } - if (this.p.isUfo && !this.p.isDead) { - for (const layer of this._birdLayers) { - if (layer) { - layer.sprite.setVisible(true); - layer.sprite.x = _0x7f0705 + _0x1b1d28; - layer.sprite.y = _0x1a433c + _0x185f91 + (this.p.gravityFlipped ? -15 : 5); - layer.sprite.rotation = this.p.mirrored ? -playerRotation : playerRotation; - const _miniS = this.p.isMini ? 0.6 : 1; - layer.sprite.scaleY = this.p.gravityFlipped ? -_miniS : _miniS; - layer.sprite.scaleX = this.p.mirrored ? -_miniS : _miniS; - } - } - } - - for (const playerLayerItem of this._playerLayers) { - if (playerLayerItem) { - const _miniS = this.p.isMini ? 0.6 : 1; - playerLayerItem.sprite.x = _0x7f0705 + _0x562424; - playerLayerItem.sprite.y = (_0x1a433c + _0x3011c9) + (this.p.isMini ? (8 * _miniS) : 0) + (this.p.gravityFlipped ? (-20 * _miniS) : 0); - playerLayerItem.sprite.rotation = this.p.mirrored ? -playerRotation : playerRotation; - const _shipCubeS = _miniS * 0.55; - playerLayerItem.sprite.scaleY = this.p.gravityFlipped ? -_shipCubeS : _shipCubeS; - playerLayerItem.sprite.scaleX = this.p.mirrored ? -_shipCubeS : _shipCubeS; - } - } - if (_ufoMode) { - const _ufoTilt = Math.max(-0.05, Math.min(0.05, -(this.p.y - this.p.lastY) * 0.008)); - for (const layer of this._birdLayers) { - if (layer) { - layer.sprite.rotation = this.p.mirrored ? -_ufoTilt : _ufoTilt; - } - } - for (const playerLayerItem of this._playerLayers) { - if (playerLayerItem) { - playerLayerItem.sprite.rotation = this.p.mirrored ? -_ufoTilt : _ufoTilt; - } - } - } - } else { - for (const layer of this._spiderLayers) { - if (layer) { - layer.sprite.setVisible(false); - } - } - - for (const playerLayer of this._allLayers) { - if (playerLayer) { - playerLayer.sprite.x = _0x7f0705; - playerLayer.sprite.y = _0x1a433c; - const isBallLayer = this._ballLayers.includes(playerLayer); - playerLayer.sprite.rotation = isBallLayer ? playerRotation : (this.p.mirrored ? -playerRotation : playerRotation); - let _miniS = this.p.isMini ? 0.6 : 1; - if (this.p.isWave && this._waveLayers.includes(playerLayer)) { - _miniS *= 0.94; //fix wave size - } - playerLayer.sprite.scaleY = (this.p.gravityFlipped ? -_miniS : _miniS); - playerLayer.sprite.scaleX = (this.p.mirrored ? -_miniS : _miniS); - } - } - for (const layer of this._spiderLayers) { - if (layer) { - layer.sprite.setVisible(false); - } - } - - for (const playerLayer of this._allLayers) { - if (playerLayer) { - playerLayer.sprite.x = _0x7f0705; - playerLayer.sprite.y = _0x1a433c; - const isBallLayer = this._ballLayers.includes(playerLayer); - playerLayer.sprite.rotation = isBallLayer ? playerRotation : (this.p.mirrored ? -playerRotation : playerRotation); - let _miniS = this.p.isMini ? 0.6 : 1; - if (this.p.isWave && this._waveLayers.includes(playerLayer)) { - _miniS *= 0.94; //fix wave size - } - playerLayer.sprite.scaleY = (this.p.gravityFlipped ? -_miniS : _miniS); - playerLayer.sprite.scaleX = (this.p.mirrored ? -_miniS : _miniS); - } - } - } - if (this.p.isWave && this._waveSpriteLayer) { - const _0x3f036a = this.p.mirrored ? 1 : -1; - this._waveSpriteLayer.sprite.x += 1.5 * _0x3f036a; - this._waveSpriteLayer.sprite.y -= 1; - } - this._updateParticles(cameraX, cameraY, _0x3afedf); - - this._updateDashAnimation(_0x3afedf * 1000); - if (this._dashAnimationSprite && this._dashAnimationSprite.visible) { - this._dashAnimationSprite.x = _0x7f0705; - this._dashAnimationSprite.y = _0x1a433c; - const _miniS = this.p.isMini ? 0.6 : 1; - this._dashAnimationSprite.scaleY = this.p.gravityFlipped ? -_miniS : _miniS; - this._dashAnimationSprite.scaleX = _miniS; - } - - if (!this._scene._slideIn){ - if (window.showHitboxes || this.p.isDead && window.hitboxesOnDeath) { - this.drawHitboxes(this._hitboxGraphics, cameraX, cameraY); - } else if (this._hitboxGraphics) { - this._hitboxGraphics.clear(); - } - } - } - enterShipMode(_0xeb37c6 = null, fromCheckpoint = false) { - if (this.p.isFlying) { - return; - } - this.exitBallMode(); - this.exitWaveMode(); - this.p.isFlying = true; - this._scene.toggleGlitter(true); - if (!fromCheckpoint){ // dont mess with y velocity if ur loading a checkpoint - this.p.yVelocity *= 0.5; - } - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.stopRotation(); - this._rotation = 0; - this._particleEmitter.stop(); - this._flyParticle2Active = false; - this._streak.reset(); - this._streak.start(); - this.setWaveVisible(false); - this.setShipVisible(true); - for (const layer of this._playerLayers) { - if (layer) { - layer.sprite.setScale(0.55); - } - } - let spawnY = this.p.y; - if (_0xeb37c6) { - spawnY = _0xeb37c6.portalY !== undefined ? _0xeb37c6.portalY : _0xeb37c6.y; - } - this._gameLayer.setFlyMode(true, spawnY, f, false); - } - exitShipMode() { - if (this.p.isFlying) { - this.p.isFlying = false; - this._scene.toggleGlitter(false); - this.p.yVelocity *= 0.5; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.stopRotation(); - this._rotation = 0; - this._flyParticleEmitter.stop(); - this._flyParticleActive = false; - this._flyParticle2Emitter.stop(); - this._flyParticle2Active = false; - this._shipDragEmitter.stop(); - this._shipDragActive = false; - this._particleActive = false; - this._streak.stop(); - this._streak.reset(); - this.setShipVisible(false); - this.setCubeVisible(!this.p.isBall && !this.p.isWave); - this.setBallVisible(this.p.isBall); - this.setWaveVisible(this.p.isWave); - this.setSpiderVisible(false); - for (const layer of this._playerLayers) { - if (layer) { - layer.sprite.setScale(1); - } - } - this._gameLayer.setFlyMode(false, 0); - } - } - enterBallMode(_0x36bb3d = null) { - if (this.p.isBall) { - return; - } - this.exitWaveMode(); - this.p.isBall = true; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.stopRotation(); - this._rotation = 0; - this.setCubeVisible(false); - this.setWaveVisible(false); - this.setBallVisible(true); - let _0x18df19 = this.p.y; - if (_0x36bb3d) { - _0x18df19 = _0x36bb3d.portalY !== undefined ? _0x36bb3d.portalY : _0x36bb3d.y; - } - this._gameLayer.setFlyMode(true, _0x18df19 + a, f - a * 2, true); - } - exitBallMode() { - if (!this.p.isBall) { - return; - } - this.p.isBall = false; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.stopRotation(); - this._rotation = 0; - this.setBallVisible(false); - this.setWaveVisible(false); - this.setCubeVisible(true); - this._gameLayer.setFlyMode(false, 0); - } - enterWaveMode(_0x5a10cc = null) { - if (this.p.isWave) { - return; - } - this.exitShipMode(); - this.exitBallMode(); - this.p.isWave = true; - this.p.yVelocity = 0; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.stopRotation(); - this._rotation = 0; - this._streak.reset(); - this._streak.start(); - this._waveTrail.reset(); - this._waveTrail.start(); - this.setCubeVisible(false); - this.setBallVisible(false); - this.setShipVisible(false); - this.setWaveVisible(true); - let _0x38b484 = this.p.y; - if (_0x5a10cc) { - _0x38b484 = _0x5a10cc.portalY !== undefined ? _0x5a10cc.portalY : _0x5a10cc.y; - } - this._gameLayer.setFlyMode(true, _0x38b484, f, false); - } - exitWaveMode() { - if (!this.p.isWave) { - return; - } - this.p.isWave = false; - this.p.yVelocity = 0; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.stopRotation(); - this._rotation = 0; - this._streak.stop(); - this._streak.reset(); - this._waveTrail.stop(); - this._waveTrail.reset(); - this.setWaveVisible(false); - this.setCubeVisible(!this.p.isBall && !this.p.isFlying); - this.setBallVisible(this.p.isBall); - this.setShipVisible(this.p.isFlying); - this.setSpiderVisible(false); - this._gameLayer.setFlyMode(false, 0); - } - enterSpiderMode(portal = null) { - if (this.p.isSpider) return; - this.exitShipMode(); - this.exitBallMode(); - this.exitWaveMode(); - this.p.isSpider = true; - this.p.yVelocity = 0; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.p._spiderTeleportPending = false; - this.stopRotation(); - this._rotation = 0; - // use cube icon for spider mode (spider icon not ready yet) - this.setCubeVisible(true); - this.setBallVisible(false); - this.setShipVisible(false); - this.setWaveVisible(false); - this.setSpiderVisible(false); - let _y = this.p.y; - if (portal) _y = portal.portalY !== undefined ? portal.portalY : portal.y; - this._gameLayer.setFlyMode(true, _y + a, f - a * 2, true); - } - exitSpiderMode() { - if (!this.p.isSpider) return; - this.p.isSpider = false; - this.p.yVelocity = 0; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.p._spiderTeleportPending = false; - this.stopRotation(); - this._rotation = 0; - this.setSpiderVisible(false); - this.setCubeVisible(true); - this._gameLayer.setFlyMode(false, 0); - } - enterUfoMode(_portal = null, fromCheckpoint = false) { - if (this.p.isUfo) return; - this.exitBallMode(); - this.exitWaveMode(); - this.exitShipMode(); - this.p.isUfo = true; - this._scene.toggleGlitter(true); - if (!fromCheckpoint){ // dont mess with y velocity if ur loading a checkpoint - this.p.yVelocity *= 0.4; - } - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.stopRotation(); - this._rotation = 0; - this._particleEmitter.stop(); - this._streak.reset(); - this._streak.start(); - this.setBallVisible(false); - this.setShipVisible(false); - this.setWaveVisible(false); - this.setSpiderVisible(false); - this.setBirdVisible(true); - this.setCubeVisible(true); - for (const _layer of this._playerLayers) { - if (_layer) { - _layer.sprite.setScale(0.55); - } - } - let _spawnY = this.p.y; - if (_portal) { - _spawnY = _portal.portalY !== undefined ? _portal.portalY : _portal.y; - } - this._gameLayer.setFlyMode(true, _spawnY, f, false); - } - exitUfoMode() { - if (!this.p.isUfo) return; - this.p.isUfo = false; - this._scene.toggleGlitter(false); - this.p.yVelocity *= 0.5; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.stopRotation(); - this._rotation = 0; - this._flyParticleEmitter.stop(); - this.setCubeVisible(!this.p.isBall && !this.p.isFlying); - this.setBallVisible(this.p.isBall); - this.setShipVisible(this.p.isFlying); - this.setWaveVisible(this.p.isWave); - this.setBirdVisible(false); - this.setSpiderVisible(false); - for (const _0xe1b715 of this._playerLayers) { - if (_0xe1b715) { - _0xe1b715.sprite.setScale(1); - } - } - this._gameLayer.setFlyMode(false, 0); - } - hitGround() { - const _0x4a38a5 = !this.p.onGround; - if (!this.p.isFlying && !this.p.isWave && !this.p.isUfo) { - this.p.lastGroundY = this.p.y; - } - this.p.yVelocity = 0; - this.p.onGround = true; - this.p.canJump = true; - this.p.isJumping = false; - this.p.queuedHold = false; - if (this.p.isBall) { - if (_0x4a38a5) { - this._rotation = Math.round(this._rotation / Math.PI) * Math.PI; - } - } else if (this.p.isSpider) { - if (_0x4a38a5) { - this._rotation = Math.round(this._rotation / Math.PI) * Math.PI; - } - } else if (this.p.isWave) { - this._rotation = 0; - } - this.stopRotation(); - if (_0x4a38a5 && !this.p.isFlying && !this.p.isWave && !this.p.isSpider) { - this._landIdx = !this._landIdx; - const _0x31584b = this._landIdx ? this._landEmitter1 : this._landEmitter2; - const _0x2248d5 = this._scene._playerWorldX; - const _0x17e0bb = this.p.gravityFlipped ? b(this.p.y) - 30 : b(this.p.y) + 30; - _0x31584b.explode(10, _0x2248d5, _0x17e0bb); - } - } - killPlayer() { - if (this.p.isDead) { - return; - } - this.p.isDead = true; - this._scene.toggleGlitter(false); - this._particleEmitter.stop(); - this._particleActive = false; - this._flyParticleEmitter.stop(); - this._flyParticleActive = false; - this._flyParticle2Emitter.stop(); - this._flyParticle2Active = false; - this._shipDragEmitter.stop(); - this._shipDragActive = false; - this._streak.stop(); - this._streak.reset(); - const _0x3f4b84 = this._scene; - const _0x3f0446 = _0x3f4b84._getMirrorXOffset(_0x3f4b84._playerWorldX - _0x3f4b84._cameraX); - const _0x53ac5b = b(this.p.y) + this._lastCameraY; - const _0x281e43 = 0.9; - _0x3f4b84.add.particles(_0x3f0446, _0x53ac5b, "GJ_WebSheet", { - frame: "square.png", - speed: { - min: 200, - max: 800 - }, - angle: { - min: 0, - max: 360 - }, - scale: { - start: 18 / 32, - end: 0 - }, - alpha: { - start: 1, - end: 0 - }, - lifespan: { - min: 50, - max: 800 - }, - quantity: 100, - stopAfter: 100, - blendMode: S, - tint: window.mainColor, - x: { - min: -20, - max: 20 - }, - y: { - min: -20, - max: 20 - } - }).setScrollFactor(0).setDepth(15); - const _0x438d80 = _0x3f4b84.add.graphics().setScrollFactor(0).setDepth(15).setBlendMode(S); - const _0x4683eb = { - t: 0 - }; - _0x3f4b84.tweens.add({ - targets: _0x4683eb, - t: 1, - duration: 500, - ease: "Quad.Out", - onUpdate: () => { - const _0x39f32 = 18 + _0x4683eb.t * 144; - const _0xc8c1 = 1 - _0x4683eb.t; - _0x438d80.clear(); - _0x438d80.fillStyle(window.mainColor, _0xc8c1); - _0x438d80.fillCircle(_0x3f0446, _0x53ac5b, _0x39f32); - }, - onComplete: () => _0x438d80.destroy() - }); - this._createExplosionPieces(_0x3f0446, _0x53ac5b, _0x281e43); - this.setCubeVisible(false); - this.setShipVisible(false); - this.setBallVisible(false); - this.setWaveVisible(false); - this.setBirdVisible(false); - this.setSpiderVisible(false); - } - _createExplosionPieces(_0x49be85, _0x13b56e, _0x349a09) { - const _0x44acaf = this._scene; - const _0x4a9f23 = _0x349a09 * 40; - const sliderBar = Math.round(_0x4a9f23 * 2); - const _0x26dcbd = _0x44acaf.make.renderTexture({ - x: 0, - y: 0, - width: sliderBar, - height: sliderBar, - add: false - }); - const _0x5c571a = [this._playerGlowLayer, this._playerOverlayLayer, this._ballGlowLayer, this._ballOverlayLayer, this._waveGlowLayer, this._waveOverlayLayer, this._waveExtraLayer, this._shipGlowLayer, this._shipOverlayLayer, this._playerSpriteLayer, this._playerExtraLayer, this._ballSpriteLayer, this._waveSpriteLayer, this._shipSpriteLayer, this._shipExtraLayer, this._birdSpriteLayer, this._birdGlowLayer, this._birdOverlayLayer, this._birdExtraLayer]; - for (const _0x1f09e3 of _0x5c571a) { - if (!_0x1f09e3) { - continue; - } - if (!_0x1f09e3.sprite.visible) { - continue; - } - const _0x53102a = _0x1f09e3.sprite; - _0x26dcbd.draw(_0x53102a, sliderBar / 2 + (_0x53102a.x - _0x49be85), sliderBar / 2 + (_0x53102a.y - _0x13b56e)); - } - const _0xd0201e = "__deathRT_" + Date.now(); - _0x26dcbd.saveTexture(_0xd0201e); - const _0x5a2621 = _0x44acaf.textures.get(_0xd0201e); - let _0x28c600 = 2 + Math.round(Math.random() * 2); - let _0x247253 = 2 + Math.round(Math.random() * 2); - const _0x5b9267 = Math.random(); - if (_0x5b9267 > 0.95) { - _0x28c600 = 1; - } else if (_0x5b9267 > 0.9) { - _0x247253 = 1; - } - const _0x1e8c09 = 7.4779225920000005; - const _0x422587 = _0x1e8c09 * 0.5; - const _0x1e87b0 = _0x1e8c09 * 1; - const _0x4dd9c4 = 0.45; - const _0x5e8097 = sliderBar / _0x28c600; - const _0x5af9d3 = sliderBar / _0x247253; - const _0xe9c860 = []; - const _0x3215fa = []; - const _0x416e63 = [0]; - const _0x57d0dc = [0]; - let _0x44e1e1 = 0; - let _0x38011e = 0; - for (let _0x3f4d44 = 0; _0x3f4d44 < _0x28c600 - 1; _0x3f4d44++) { - const _0x5b2c12 = Math.round(_0x5e8097 * (0.55 + Math.random() * _0x4dd9c4 * 2)); - _0xe9c860.push(_0x5b2c12); - _0x44e1e1 += _0x5b2c12; - _0x416e63.push(_0x44e1e1); - } - _0xe9c860.push(sliderBar - _0x44e1e1); - for (let _0x325ce1 = 0; _0x325ce1 < _0x247253 - 1; _0x325ce1++) { - const _0x37f0ad = Math.round(_0x5af9d3 * (0.55 + Math.random() * _0x4dd9c4 * 2)); - _0x3215fa.push(_0x37f0ad); - _0x38011e += _0x37f0ad; - _0x57d0dc.push(_0x38011e); - } - _0x3215fa.push(sliderBar - _0x38011e); - this._explosionPieces = []; - this._explosionContainer = _0x44acaf.add.container(_0x49be85, _0x13b56e).setDepth(16); - let _0x156c8b = 0; - for (let _0x4cd06e = 0; _0x4cd06e < _0x28c600; _0x4cd06e++) { - const _0x5c6aa9 = _0xe9c860[_0x4cd06e]; - const _0x43a4e9 = _0x416e63[_0x4cd06e]; - for (let _0x5b14cf = 0; _0x5b14cf < _0x247253; _0x5b14cf++) { - const _0x20847a = _0x3215fa[_0x5b14cf]; - const _0x20396e = _0x57d0dc[_0x5b14cf]; - if (_0x5c6aa9 <= 0 || _0x20847a <= 0) { - continue; - } - _0x156c8b++; - const _0x526d03 = "piece_" + _0x4cd06e + "_" + _0x5b14cf; - _0x5a2621.add(_0x526d03, 0, _0x43a4e9, _0x20396e, _0x5c6aa9, _0x20847a); - const _0xba83f5 = _0x44acaf.add.image(0, 0, _0xd0201e, _0x526d03); - _0xba83f5.x = _0x43a4e9 + _0x5c6aa9 / 2 - sliderBar / 2; - _0xba83f5.y = -(_0x20396e + _0x20847a / 2 - sliderBar / 2); - this._explosionContainer.add(_0xba83f5); - let _0x298d34 = null; - if (_0x156c8b % 2 == 0) { - const _0x367bdb = 200 + Math.random() * 200; - const _0x5e5fa8 = _0xba83f5; - _0x298d34 = _0x44acaf.add.particles(0, 0, "GJ_WebSheet", { - frame: "square.png", - speed: 0, - scale: { - start: 0.5, - end: 0 - }, - alpha: { - start: 1, - end: 0 - }, - lifespan: _0x367bdb, - frequency: 25, - quantity: 1, - emitting: true, - blendMode: S, - tint: window.mainColor, - emitCallback: _0x2f7fc7 => { - _0x2f7fc7.x = _0x5e5fa8.x + (Math.random() * 2 - 1) * 3 * 2; - _0x2f7fc7.y = _0x5e5fa8.y + (Math.random() * 2 - 1) * 3 * 2; - } - }); - this._explosionContainer.addAt(_0x298d34, 0); - } - const _0x159cfa = { - spr: _0xba83f5, - particle: _0x298d34, - xVel: (_0x422587 + (Math.random() * 2 - 1) * _0x1e87b0) * (this.p.mirrored ? -1 : 1), - yVel: -(12 + (Math.random() * 2 - 1) * 6), - timer: 1.4, - fadeTime: 0.5, - rotDelta: (Math.random() * 2 - 1) * 360 / 60, - halfSize: Math.min(_0x5c6aa9, _0x20847a) / 2 - }; - this._explosionPieces.push(_0x159cfa); - } - } - this._explosionGroundSY = b(0) + this._lastCameraY; - this._explosionRT = _0x26dcbd; - this._explosionTexKey = _0xd0201e; - } - updateExplosionPieces(_0x1c8c6d) { - if (!this._explosionPieces || this._explosionPieces.length === 0) { - return; - } - const _0x1ed0a8 = _0x1c8c6d / 1000; - const _0x3e389c = Math.min(_0x1ed0a8 * 60 * 0.9, 2); - const _0x59eafe = _0x3e389c * 0.5 * 2; - const _0x5a7549 = this._explosionGroundSY - this._explosionContainer.y; - let _0x4284b0 = 0; - while (_0x4284b0 < this._explosionPieces.length) { - const particleX = this._explosionPieces[_0x4284b0]; - particleX.timer -= _0x1ed0a8; - if (particleX.timer > 0) { - { - particleX.yVel += _0x59eafe; - particleX.xVel *= 0.98 + (1 - _0x3e389c) * 0.02; - let _0x57034b = particleX.spr.x + particleX.xVel * _0x3e389c; - let _0x4c0481 = particleX.spr.y + particleX.yVel * _0x3e389c; - const _0x3f6377 = _0x5a7549 - particleX.halfSize; - if (_0x4c0481 > _0x3f6377 && particleX.yVel > 0) { - _0x4c0481 = _0x3f6377; - particleX.yVel *= -0.8; - if (Math.abs(particleX.yVel) < 3) { - particleX.yVel = -3; - } - } - particleX.spr.x = _0x57034b; - particleX.spr.y = _0x4c0481; - particleX.spr.angle += particleX.rotDelta * _0x3e389c; - if (particleX.timer < particleX.fadeTime) { - const _0x2d8b5f = particleX.timer / particleX.fadeTime; - particleX.spr.setAlpha(_0x2d8b5f); - if (particleX.particle) { - particleX.particle.setAlpha(_0x2d8b5f); - } - } - } - _0x4284b0++; - } else { - if (particleX.particle) { - particleX.particle.stop(); - particleX.particle.destroy(); - } - particleX.spr.destroy(); - this._explosionPieces.splice(_0x4284b0, 1); - } - } - if (this._explosionPieces.length === 0) { - this._cleanupExplosion(); - } - } - _cleanupExplosion() { - if (this._explosionPieces) { - for (const _0x59172d of this._explosionPieces) { - if (_0x59172d.particle) { - _0x59172d.particle.stop(); - _0x59172d.particle.destroy(); - } - if (_0x59172d.spr) { - _0x59172d.spr.destroy(); - } - } - } - if (this._explosionContainer) { - this._explosionContainer.destroy(); - this._explosionContainer = null; - } - if (this._explosionTexKey) { - this._scene.textures.remove(this._explosionTexKey); - this._explosionTexKey = null; - } - if (this._explosionRT) { - this._explosionRT.destroy(); - this._explosionRT = null; - } - this._explosionPieces = null; - } - _playPortalShine(_0x49e81f, type = 1) { - const _0x4ed8ff = this._scene; - const _0xf31b0d = _0x49e81f.x; - const _0x3824c0 = b(_0x49e81f.portalY); - - const typeStr = (type === 1) ? "02" : "01"; - const _0x19c6b0 = [ - `portalshine_${typeStr}_front_001.png`, - `portalshine_${typeStr}_back_001.png` - ]; - - const _0x5d636a = [this._gameLayer.topContainer, this._gameLayer.container]; - for (let _0x34fd8c = 0; _0x34fd8c < 2; _0x34fd8c++) { - const _0x4bfe30 = getAtlasFrame(_0x4ed8ff, _0x19c6b0[_0x34fd8c]); - if (!_0x4bfe30) { - continue; - } - const pieceSize = _0x4ed8ff.add.image(_0xf31b0d, _0x3824c0, _0x4bfe30.atlas, _0x4bfe30.frame); - pieceSize.setBlendMode(S); - pieceSize.setAlpha(0); - pieceSize.angle = _0x49e81f.rotationDegrees; - _0x5d636a[_0x34fd8c].add(pieceSize); - _0x4ed8ff.tweens.add({ - targets: pieceSize, - alpha: { - from: 0, - to: 1 - }, - duration: 50, - onComplete: () => { - _0x4ed8ff.tweens.add({ - targets: pieceSize, - alpha: 0, - duration: 400, - onComplete: () => pieceSize.destroy() - }); - } - }); - } - } - _checkSnapJump(_0x1f801b) { - const _0x483058 = [{ - dx: 240, - dy: 60 - }, { - dx: 300, - dy: -60 - }, { - dx: 180, - dy: 120 - }]; - const _0x2b806a = this._lastLandObject; - if (_0x2b806a && _0x2b806a !== _0x1f801b && _0x2b806a.type === solidType) { - const _0x34ef27 = _0x2b806a.x; - const _0x4652bb = _0x2b806a.y; - const _0x5de781 = _0x1f801b.x; - const _0x21ad88 = _0x1f801b.y; - const _0x1b1831 = this.p.gravityFlipped ? -1 : 1; - let _0x372d4e = false; - for (const _0x31d5e4 of _0x483058) { - if (Math.abs(_0x5de781 - (_0x34ef27 + _0x31d5e4.dx)) <= 2 && Math.abs(_0x21ad88 - (_0x4652bb + _0x31d5e4.dy * _0x1b1831)) <= 2) { - _0x372d4e = true; - break; - } - } - if (_0x372d4e) { - const _0x4ca454 = _0x1f801b.x + this._lastXOffset; - const _0x48aba3 = this._scene._playerWorldX; - let _0x5f2847; - _0x5f2847 = Math.abs(_0x4ca454 - _0x48aba3) <= 2 ? _0x4ca454 : _0x4ca454 > _0x48aba3 ? _0x48aba3 + 2 : _0x48aba3 - 2; - this._scene._playerWorldX = _0x5f2847; - } - } - this._lastLandObject = _0x1f801b; - this._lastXOffset = this._scene._playerWorldX - _0x1f801b.x; - } - _isFallingPastThreshold() { - if (this.p.gravityFlipped) { - return this.p.yVelocity > 0.25; - } else { - return this.p.yVelocity < -0.25; - } - } - flipMod() { - if (this.p.gravityFlipped) { - return -1; - } else { - return 1; - } - } - flipGravity(flipped, _0x11bbde = 0.5) { - if (this.p.gravityFlipped === flipped) { - return; - } - this.p.gravityFlipped = flipped; - this.p.yVelocity *= _0x11bbde; - this.p.onGround = false; - this.p.canJump = false; - } - runRotateAction() { - this.rotateActionActive = true; - this.rotateActionTime = 0; - const _miniDurScale = this.p.isMini ? (1 / 1.4) : 1; - this.rotateActionDuration = (0.39 / d) * _miniDurScale; - this.rotateActionStart = this._rotation; - this.rotateActionTotal = Math.PI * this.flipMod(); - } - updateDashRotation(dt) { - const spinSpeed = Math.PI * 6.0 * this.flipMod(); - this._rotation += spinSpeed * dt; - } - stopRotation() { - this.rotateActionActive = false; - } - updateRotateAction(_0x98044d) { - if (!this.rotateActionActive) { - return; - } - this.rotateActionTime += _0x98044d; - if (this.rotateActionTime >= this.rotateActionDuration) { - this.rotateActionActive = false; - } - let _0xb1cb91 = Math.min(this.rotateActionTime / this.rotateActionDuration, 1); - this._rotation = this.rotateActionStart + this.rotateActionTotal * _0xb1cb91; - } - convertToClosestRotation() { - let _0x5f531c = Math.PI / 2; - return Math.round(this._rotation / _0x5f531c) * _0x5f531c; - } - slerp2D(startAngle, endAngle, t) { - let halfStart = startAngle * 0.5; - let halfEnd = endAngle * 0.5; - let cosStart = Math.cos(halfStart); - let sinStart = Math.sin(halfStart); - let cosEnd = Math.cos(halfEnd); - let sinEnd = Math.sin(halfEnd); - let dot = (cosStart * cosEnd) + (sinStart * sinEnd); - let weightStart, weightEnd; - if (dot < 0.0) { - dot = -dot; - sinEnd = -sinEnd; - cosEnd = -cosEnd; - } - if (1.0 - dot > 0.0001) { - let theta = Math.acos(dot); - let sinTheta = Math.sin(theta); - weightStart = Math.sin(theta * (1.0 - t)) / sinTheta; - weightEnd = Math.sin(theta * t) / sinTheta; - } else { - weightStart = 1.0 - t; - weightEnd = t; - } - let interpSin = (sinStart * weightStart) + (sinEnd * weightEnd); - let interpCos = (cosStart * weightStart) + (cosEnd * weightEnd); - let out = Math.atan2(interpSin, interpCos); - return out + out; - } - updateGroundRotation(_0x5c24f7) { - if (this.p.isBall || this.p.isWave || this.p.isSpider) { - return; - } - let _0x183c2a = this.convertToClosestRotation(); - let _0x108955 = 0.47250000000000003; - let _0x17a9a6 = Math.min(_0x5c24f7 * 1, _0x108955 * _0x5c24f7); - this._rotation = this.slerp2D(this._rotation, _0x183c2a, _0x17a9a6); - } - updateBallRoll(_0x1dd8af, onSurface) { - const gravityDir = this.p.gravityFlipped ? -1 : 1; - const rollDir = this.p.mirrored ? -gravityDir : gravityDir; - const speedFactor = onSurface ? 0.5 : 0.35; - const miniRollScale = this.p.isMini ? 1 / 0.8 : 1; - this._rotation += _0x1dd8af / (g / 2) * gravityDir * speedFactor * miniRollScale; - } - updateShipRotation(_0x217ad3) { - let _0x48f422 = -(this.p.y - this.p.lastY); - let _0x58cb3a = _0x217ad3 * 10.3860036; - if (_0x58cb3a * _0x58cb3a + _0x48f422 * _0x48f422 >= _0x217ad3 * 0.6) { - let _0x5e6a2b = Math.atan2(_0x48f422, _0x58cb3a); - let _0x2371ed = 0.15; - let _0x1857d4 = Math.min(_0x217ad3 * 1, _0x2371ed * _0x217ad3); - this._rotation = this.slerp2D(this._rotation, _0x5e6a2b, _0x1857d4); - } - } - playerIsFalling() { - if (this.p.gravityFlipped) { - return this.p.yVelocity > p; - } else { - return this.p.yVelocity < p; - } - } - updateJump(_0x3d1c6f) { - if (this.p.pendingVelocity !== null) { - this.p.yVelocity = this.p.pendingVelocity; - this.p.pendingVelocity = null; - } - if (this.p.isDashing) { - if (!this.p.upKeyDown || this.p.onGround) { - this.p.isDashing = false; - this.p.dashYVelocity = 0; - } else { - this.p.yVelocity = this.p.dashYVelocity; - return; - } - } - if (this.p.isFlying) { - this._updateFlyJump(_0x3d1c6f); - } else if (this.p.isWave) { - this._updateWaveJump(); - } else if (this.p.isBall) { - this._updateBallJump(_0x3d1c6f); - } else if (this.p.isUfo) { - this._updateUfoJump(_0x3d1c6f); - } else if (this.p.isSpider) { - this._updateSpiderJump(_0x3d1c6f); - } else if (this.p.upKeyDown && this.p.canJump) { - this.p.isJumping = true; - this.p.onGround = false; - this.p.canJump = false; - this.p.upKeyPressed = false; - this.p.queuedHold = false; - this.p.yVelocity = this.flipMod() * 22.360064 * (this.p.isMini ? 0.8 : 1); - this.runRotateAction(); - } else if (this.p.isJumping) { - this.p.yVelocity -= p * _0x3d1c6f * this.flipMod(); - if (this.playerIsFalling()) { - this.p.isJumping = false; - this.p.onGround = false; - } - } else { - if (this.playerIsFalling()) { - this.p.canJump = false; - } - this.p.yVelocity -= p * _0x3d1c6f * this.flipMod(); - if (this.p.gravityFlipped) { - this.p.yVelocity = Math.min(this.p.yVelocity, 30); - } else { - this.p.yVelocity = Math.max(this.p.yVelocity, -30); - } - if (this._isFallingPastThreshold() && !this.rotateActionActive) { - this.runRotateAction(); - } - if (this.playerIsFalling()) { - let _0x47ed2a; - _0x47ed2a = this.p.gravityFlipped ? this.p.yVelocity > p * 2 : this.p.yVelocity < -(p * 2); - if (_0x47ed2a) { - this.p.onGround = false; - } - } - } - } - _updateFlyJump(_0x130c46) { - const _shipMiniScale = this.p.isMini ? 1.176470588 : 1; - let _0x203040 = 0.8; - if (this.p.upKeyDown) { - _0x203040 = -1; - } - if (!this.p.upKeyDown && !this.playerIsFalling()) { - _0x203040 = 1.2; - } - let _0x2d237f = 0.4; - if (this.p.upKeyDown && this.playerIsFalling()) { - _0x2d237f = 0.5; - } - this.p.yVelocity -= p * _0x130c46 * this.flipMod() * _0x203040 * _0x2d237f * _shipMiniScale; - if (this.p.upKeyDown) { - this.p.onGround = false; - } - if (!this.p.wasBoosted) { - if (this.p.gravityFlipped) { - this.p.yVelocity = Math.max(this.p.yVelocity, -16 * _shipMiniScale); - this.p.yVelocity = Math.min(this.p.yVelocity, 12.8 * _shipMiniScale); - } else { - this.p.yVelocity = Math.max(this.p.yVelocity, -12.8 * _shipMiniScale); - this.p.yVelocity = Math.min(this.p.yVelocity, 16 * _shipMiniScale); - } - } - } -_updateBallJump(_0x2fe319) { - const _0x144266 = p * 0.6; - if (this.p.upKeyPressed && this.p.canJump) { - const _0x47d739 = this.flipMod(); - this.p.upKeyPressed = false; - this.p.yVelocity = _0x47d739 * 22.360064 * (this.p.isMini ? 0.8 : 1); - this.flipGravity(!this.p.gravityFlipped); - this.p.onGround = false; - this.p.canJump = false; - this.p.yVelocity *= 0.6; - return; - } - if (this.playerIsFalling()) { - this.p.canJump = false; - } - this.p.yVelocity -= _0x144266 * _0x2fe319 * this.flipMod(); - if (this.p.gravityFlipped) { - this.p.yVelocity = Math.min(this.p.yVelocity, 30); - } else { - this.p.yVelocity = Math.max(this.p.yVelocity, -30); - } - if (this.playerIsFalling()) { - const _0x1439be = this.p.gravityFlipped ? this.p.yVelocity > p * 2 : this.p.yVelocity < -(p * 2); - if (_0x1439be) { - this.p.onGround = false; - } - } - } -_updateWaveJump() { - const _baseSpeed = this.p.isMini ? 22.7720072 : 11.3860036; - const _speedMod = (playerSpeed / 11.540004); - const _waveVel = _baseSpeed * _speedMod; - const isPushingUp = this.p.upKeyDown; - let _0x312a7f = (isPushingUp ? 1 : -1) * this.flipMod() * _waveVel; - - if (this.p.onGround || this.p.onCeiling) { - const movingAwayFromCeiling = this.p.onCeiling && !isPushingUp; - const movingAwayFromFloor = this.p.onGround && isPushingUp; - - if (movingAwayFromCeiling || movingAwayFromFloor) { - this.p.onGround = false; - this.p.onCeiling = false; - } else { - _0x312a7f = 0; - } - } - - this.p.yVelocity = _0x312a7f; - this.p.canJump = false; - this.p.isJumping = false; - - const _waveAngle = this.p.isMini ? Math.atan(0.5) : Math.PI / 4; - this._rotation = _0x312a7f === 0 ? 0 : _0x312a7f > 0 ? -_waveAngle : _waveAngle; -} - _updateUfoJump(_dt) { - const _ufoJump = this.p.isMini ? 13.296 : 13.742; - const _ufoThreshold = 3.832796; - const _ufoFastGrav = this.p.isMini ? 0.634524 : 0.540121; - const _ufoSlowGrav = this.p.isMini ? 0.421624 : 0.359973; - const _ufoUpVel = this.p.yVelocity * this.flipMod(); - const _ufoGrav = _ufoUpVel > _ufoThreshold ? _ufoFastGrav : _ufoSlowGrav; - this.p.yVelocity -= p * _ufoGrav * _dt * this.flipMod(); - if (this.p.upKeyPressed) { - this.p.upKeyPressed = false; - this.p.yVelocity = _ufoJump * this.flipMod(); - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = true; - try { - this._flyParticle2Emitter.explode(6, this._scene._playerWorldX, b(this.p.y) + (this.p.gravityFlipped ? -18 : 18)); - } catch(e) {} - } - if (!this.p.wasBoosted) { - const _ufoMaxUp = this.p.isMini ? 18.824 : 16; - const _ufoMaxFall = this.p.isMini ? 15.058 : 12.8; - if (this.p.gravityFlipped) { - this.p.yVelocity = Math.max(this.p.yVelocity, -_ufoMaxUp); - this.p.yVelocity = Math.min(this.p.yVelocity, _ufoMaxFall); - } else { - this.p.yVelocity = Math.max(this.p.yVelocity, -_ufoMaxFall); - this.p.yVelocity = Math.min(this.p.yVelocity, _ufoMaxUp); - } - } - if (this.p.upKeyDown) { - this.p.onGround = false; - } - if (this.p.isJumping && this.playerIsFalling()) { - this.p.isJumping = false; - } - } - _updateSpiderJump(dt) { - const playerSize = this.p.isMini ? 18 : 30; - const _miniGrav = this.p.isMini ? 1.4 : 1; - const _gravAmt = p * 0.6 * _miniGrav; - if (this.p.upKeyPressed && this.p.canJump) { - this.p.upKeyPressed = false; - this.p.queuedHold = false; - const _floorY = this._gameLayer.getFloorY(); - const _ceilY = this._gameLayer.getCeilingY(); - let nearestSurfaceY; - if (!this.p.gravityFlipped) { - nearestSurfaceY = _ceilY !== null ? _ceilY : Infinity; - const playerWorldX = this._scene._playerWorldX; - const nearbyObjects = this._gameLayer.getNearbySectionObjects(playerWorldX); - for (const obj of nearbyObjects) { - if (obj.type === "solid" && obj.y < this.p.y) { - const objTop = obj.y - obj.h / 2; - if (objTop > nearestSurfaceY || nearestSurfaceY === null) { - nearestSurfaceY = objTop; - } - } - } - } else { - nearestSurfaceY = _floorY; - const playerWorldX = this._scene._playerWorldX; - const nearbyObjects = this._gameLayer.getNearbySectionObjects(playerWorldX); - for (const obj of nearbyObjects) { - if (obj.type === "solid" && obj.y > this.p.y) { - const objBottom = obj.y + obj.h / 2; - if (objBottom < nearestSurfaceY || nearestSurfaceY === null) { - nearestSurfaceY = objBottom; - } - } - } - } - - if (!this.p.gravityFlipped) { - if (isFinite(nearestSurfaceY)) { - this.p.y = nearestSurfaceY - playerSize; - this.flipGravity(true, 1.0); - this.p.yVelocity = 0; - } else { - this.p.yVelocity = playerSpeed; - } - } else { - if (isFinite(nearestSurfaceY)) { - this.p.y = nearestSurfaceY + playerSize; - this.flipGravity(false, 1.0); - this.p.yVelocity = 0; - } else { - this.p.yVelocity = -playerSpeed; - } - } - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.runRotateAction(); - return; - } - if (this.playerIsFalling()) { - this.p.canJump = false; - } - this.p.yVelocity -= _gravAmt * dt * this.flipMod(); - if (this.p.gravityFlipped) { - this.p.yVelocity = Math.min(this.p.yVelocity, 30); - } else { - this.p.yVelocity = Math.max(this.p.yVelocity, -30); - } - if (this.playerIsFalling()) { - const _pastThreshold = this.p.gravityFlipped - ? this.p.yVelocity > p * 2 - : this.p.yVelocity < -(p * 2); - if (_pastThreshold) { - this.p.onGround = false; - } - } - } - checkCollisions(_0x2f5078) { - this.noclipStats.totalFrames++; - this.p.diedThisFrame = false; - const playerSize = this.p.isMini ? 18 : 30; - const waveHitSize = this.p.isMini ? 6 : 9; - const pieceWidth = _0x2f5078 + centerX; - const playersY = this.p.y; - const playersLastY = this.p.lastY; - const gamemodeAddition = this.p.isFlying || this.p.isWave || this.p.isUfo ? 12 : 20; - this.p.collideTop = 0; - this.p.collideBottom = 0; - this.p.onCeiling = false; - this.p.touchingRing = false; - let _0x30410f = false; - let _boostedThisStep = false; - const _0x198534 = this._gameLayer.getNearbySectionObjects(pieceWidth); - for (let gameObj of _0x198534) { - let left = gameObj.x - gameObj.w / 2; - let right = gameObj.x + gameObj.w / 2; - let top = gameObj.y - gameObj.h / 2; - let bottom = gameObj.y + gameObj.h / 2; - const rad = gameObj.rotationDegrees * Math.PI / 180; - const cos = Math.cos(rad); - const sin = Math.sin(rad); - const halfW = gameObj.w / 2; - const halfH = gameObj.h / 2; - const rotatedHalfWidth = Math.abs(halfW * cos) + Math.abs(halfH * sin); - const rotatedHalfHeight = Math.abs(halfW * sin) + Math.abs(halfH * cos); - let rotatedLeft = gameObj.x - rotatedHalfWidth; - let rotatedRight = gameObj.x + rotatedHalfWidth; - let rotatedTop = gameObj.y - rotatedHalfHeight; - let rotatedBottom = gameObj.y + rotatedHalfHeight; - const _broadSize = this.p.isWave ? waveHitSize : playerSize; - const _hasCircleHitbox = gameObj.hitbox_radius !== undefined && gameObj.hitbox_radius !== null; - let _broadPhaseHit; - if (_hasCircleHitbox) { - const _dx = pieceWidth - gameObj.x; - const _dy = playersY - gameObj.y; - _broadPhaseHit = (_dx * _dx + _dy * _dy) <= (gameObj.hitbox_radius + _broadSize) * (gameObj.hitbox_radius + _broadSize); - } else { - _broadPhaseHit = !(pieceWidth + _broadSize <= rotatedLeft) && !(pieceWidth - _broadSize >= rotatedRight) && !(playersY + _broadSize <= rotatedTop) && !(playersY - _broadSize >= rotatedBottom); - } - if (_broadPhaseHit) { - const _colType = gameObj.type; - if (this.p.ignorePortals && (_colType.startsWith("portal_") || _colType === "speed")) { - gameObj.activated = true; - continue; - } - if (_colType === "portal_fly") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.exitBallMode(); - this.exitWaveMode(); - this.exitShipMode(); - this.exitUfoMode(); - this.enterShipMode(gameObj); - } - } else if (_colType === portalWaveType) { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.exitBallMode(); - this.exitShipMode(); - this.exitWaveMode(); - this.exitUfoMode(); - this.enterWaveMode(gameObj); - } - } else if (_colType === portalUfoType) { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.exitBallMode(); - this.exitWaveMode(); - this.exitShipMode(); - this.enterUfoMode(gameObj); - } - } else if (_colType === "portal_cube") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.exitShipMode(); - this.exitBallMode(); - this.exitWaveMode(); - this.exitUfoMode(); - } - } else if (_colType === "portal_ball") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.exitShipMode(); - this.exitWaveMode(); - this.exitUfoMode(); - this.exitBallMode(); - this.enterBallMode(gameObj); - } - } else if (_colType === "portal_spider") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.exitShipMode(); - this.exitBallMode(); - this.exitWaveMode(); - this.exitUfoMode(); - this.exitSpiderMode(); - this.enterSpiderMode(gameObj); - } - } else if (_colType === "portal_gravity_down") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj, 2); - this.flipGravity(false, 0.5); - } - } else if (_colType === "portal_gravity_up") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj, 2); - this.flipGravity(true, 0.5); - } - } else if (_colType === "portal_gravity_toggle") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj, 2); - this.flipGravity(!this.p.gravityFlipped, 0.5); - } - } else if (_colType === "portal_mirror_on") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.p.mirrored = true; - } - } else if (_colType === "portal_mirror_off") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.p.mirrored = false; - } - } else if (_colType === "portal_mini_on") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.p.isMini = true; - } - } else if (_colType === "portal_mini_off") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this.p.isMini = false; - } - } else if (_colType === "portal_dual_on") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this._scene._enableDualMode(); - } - } else if (_colType === "portal_dual_off") { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - this._scene._disableDualMode(); - } - } else if (_colType === speedType) { - if (!gameObj.activated) { - gameObj.activated = true; - this._playPortalShine(gameObj); - if (typeof gameObj.speedValue === "number") { - playerSpeed = gameObj.speedValue; - } - } - } else if (_colType === jumpPadType) { - if (!gameObj.activated) { - gameObj.activated = true; - const _padId = gameObj.padId; - if (_padId === 67) { - const now = Date.now(); - if (!window.lastbluepad) { - window.lastbluepad = 0; - } - if (now - window.lastbluepad < 20) { - continue; - } - window.lastbluepad = now; - } - const _grav = 2; - const _fm = this.flipMod(); - let _padVel = 0; - let _padFlip = false; - let _padNextTickVel = null; - if (_padId === 3005) { - const _spFloor = this._gameLayer.getFloorY(); - const _spCeil = this._gameLayer.getCeilingY() || f; - if (!this.p.gravityFlipped) { - this.p.y = _spCeil - playerSize; - } else { - this.p.y = _spFloor + playerSize; - } - this.flipGravity(!this.p.gravityFlipped, 1.0); - this.p.yVelocity = 0; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - _boostedThisStep = true; - } else { - if (this.p.isFlying) { - if (_padId === 35) { _padVel = 16 * _grav; _padNextTickVel = _fm * 8 * _grav; } - else if (_padId === 140) { _padVel = 5.6 * _grav; } - else if (_padId === 1332) { _padVel = 10.08 * _grav; } - else if (_padId === 67) { _padVel = 15.0 * _grav; _padFlip = true; } - } else if (this.p.isUfo) { - if (_padId === 35) { _padVel = this.p.isMini ? 25.6 : 16; } - else if (_padId === 140) { _padVel = this.p.isMini ? 10.237037 : 12.8; } - else if (_padId === 1332) { _padVel = this.p.isMini ? 25.6 : 16; } - else if (_padId === 67) { _padVel = this.p.isMini ? 20.48 : 25.6; _padFlip = true; } - } else if (this.p.isBall) { - if (_padId === 35) { _padVel = 9.6 * _grav; } - else if (_padId === 140) { _padVel = 6.72 * _grav; } - else if (_padId === 1332) { _padVel = 12 * _grav; } - else if (_padId === 67) { _padVel = 10.0 * _grav; _padFlip = true; } - if (this.p.isMini) { - _padVel *= 0.8; - } - } else { - if (_padId === 35) { _padVel = 16 * _grav; } - else if (_padId === 140) { _padVel = 10.4 * _grav; } - else if (_padId === 1332) { _padVel = 20 * _grav; } - else if (_padId === 67) { _padVel = 15.0 * _grav; _padFlip = true; } - if (!this.p.isUfo && !this.p.isSpider && !this.p.isRobot && this.p.isMini) { - _padVel *= 0.8; - } - } - this.p.isJumping = true; - this.p.onGround = false; - this.p.canJump = false; - this.p.yVelocity = _fm * _padVel; - if (_padFlip) { - this.flipGravity(!this.p.gravityFlipped); - } - if (_padNextTickVel !== null) { - this.p.pendingVelocity = _padNextTickVel; - } - this.runRotateAction(); - _boostedThisStep = true; - } - } - } else if (_colType === jumpRingType) { - const _orbId = gameObj.orbId; - const _isDash = (_orbId === 1704 || _orbId === 1751); - const justPressed = this.p.upKeyDown && !this.p.wasUpKeyDown; - const _needsClick = (this.p.isFlying || this.p.isUfo) ? justPressed : (justPressed || (this.p.queuedHold && this.p.upKeyDown)); - this.p.touchingRing = true; - if (!gameObj.activated && _needsClick) { - if (_isDash) { - gameObj._dashHoldTicks = (gameObj._dashHoldTicks || 0) + 1; - if (gameObj._dashHoldTicks < 2) { - gameObj.activated = true; - const _dashAngleDeg = gameObj.orbRotation || 0; - const _dashRad = _dashAngleDeg * Math.PI / 180; - const _maxSin = Math.sin(70 * Math.PI / 180); - const _rawSin = -Math.sin(_dashRad); - const _dashSin = Math.max(-_maxSin, Math.min(_maxSin, _rawSin)); - const _dashSpeed = 18; - const _dashVelY = _dashSin * _dashSpeed * this.flipMod(); - if (_orbId === 1751) { - this.flipGravity(!this.p.gravityFlipped); - } - this.p.isDashing = true; - this.p.dashYVelocity = _dashVelY; - this.p.yVelocity = _dashVelY; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.p.upKeyPressed = false; - this.p.queuedHold = false; - this.runRotateAction(); - _boostedThisStep = true; - try { - for (let _orbSpr of (this._gameLayer._orbSprites || [])) { - if (_orbSpr && _orbSpr._eeWorldX !== undefined && Math.abs(_orbSpr._eeWorldX - gameObj.x) < 10) { - _orbSpr._hitTime = Date.now(); - } - } - } catch(e) {} - } - } else { - gameObj.activated = true; - const _fm = this.flipMod(); - const _cubeJump = 22.360064; - let _orbVel = 0; - let _flipBefore = false; - let _flipAfter = false; - if (_orbId === 1594) { - this.flipGravity(!this.p.gravityFlipped); - this.p.upKeyPressed = false; - this.p.queuedHold = false; - _boostedThisStep = true; - } else if (_orbId === 444) { - const _spPlayerSize = this.p.isMini ? 18 : 30; - const _spFloorY = this._gameLayer.getFloorY(); - const _spCeilY = this._gameLayer.getCeilingY() || f; - this.p.upKeyPressed = false; - this.p.queuedHold = false; - if (!this.p.gravityFlipped) { - this.p.y = _spCeilY - _spPlayerSize; - this.flipGravity(true, 1.0); - } else { - this.p.y = _spFloorY + _spPlayerSize; - this.flipGravity(false, 1.0); - } - this.p.yVelocity = 0; - this.p.onGround = false; - this.p.canJump = false; - this.p.isJumping = false; - this.runRotateAction(); - _boostedThisStep = true; - try { - for (let _orbSpr of (this._gameLayer._orbSprites || [])) { - if (_orbSpr && _orbSpr._eeWorldX !== undefined && Math.abs(_orbSpr._eeWorldX - gameObj.x) < 10) { - _orbSpr._hitTime = Date.now(); - } - } - } catch(e) {} - } else if (this.p.isWave) { - if (_orbId === 84 || _orbId === 1022) { - this.flipGravity(!this.p.gravityFlipped); - this.p.upKeyPressed = false; - this.p.queuedHold = false; - _boostedThisStep = true; - try { - for (let _orbSpr of (this._gameLayer._orbSprites || [])) { - if (_orbSpr && _orbSpr._eeWorldX !== undefined && Math.abs(_orbSpr._eeWorldX - gameObj.x) < 10) { - _orbSpr._hitTime = Date.now(); - } - } - } catch(e) {} - } - } else { - if (this.p.isFlying) { - if (_orbId === 36){ _orbVel = 16; } - else if (_orbId === 141) { _orbVel = _cubeJump * 0.37; } - else if (_orbId === 1333) { _orbVel = _cubeJump; } - else if (_orbId === 84) { _orbVel = _cubeJump * 0.4; _flipAfter = true; } - else if (_orbId === 1022) { _orbVel = _cubeJump * -0.7; _flipAfter = true; } - else if (_orbId === 1330) { _orbVel = -28; } - } else if (this.p.isSwing) { - const _swingBase = _cubeJump * 0.6; - const _spiderBase = _cubeJump * 0.7; - if (_orbId === 36) { _orbVel = _swingBase; } - else if (_orbId === 141) { _orbVel = _swingBase * 0.72; } - else if (_orbId === 1333) { _orbVel = _swingBase * 1.38; } - else if (_orbId === 84) { _orbVel = _swingBase * 0.4; _flipAfter = true; } - else if (_orbId === 1022) { _orbVel = _spiderBase * -1; _flipAfter = true; } - else if (_orbId === 1330) { _orbVel = -28; } - } else if (this.p.isBall) { - const _ballBase = _cubeJump * 0.7 * (this.p.isMini ? 0.8 : 1); - if (_orbId === 36) { _orbVel = _ballBase; } - else if (_orbId === 141) { _orbVel = _ballBase * 0.77; } - else if (_orbId === 1333) { _orbVel = _ballBase * 1.34; } - else if (_orbId === 84) { _orbVel = _ballBase * 0.4; _flipAfter = true; } - else if (_orbId === 1022) { _orbVel = _ballBase * -1; _flipAfter = true; } - else if (_orbId === 1330) { _orbVel = -30; } - } else if (this.p.isUfo) { - const _ufoYellowOrb = this.p.isMini ? 17.888 : 22.36; - const _ufoPinkOrb = this.p.isMini ? 7.674 : 9.592; - const _ufoBlueOrb = (this.p.isMini ? -7.155 : -8.944) * 2; - if (_orbId === 36) { _orbVel = _ufoYellowOrb; } - else if (_orbId === 141) { _orbVel = _ufoPinkOrb; } - else if (_orbId === 1333) { _orbVel = _cubeJump * 1.02; } - else if (_orbId === 84) { _orbVel = _ufoBlueOrb; _flipAfter = true; } - else if (_orbId === 1022) { _orbVel = -_ufoYellowOrb * 2; _flipAfter = true; } - else if (_orbId === 1330) { _orbVel = -22.4; } - } else if (this.p.isRobot) { - if (_orbId === 36) { _orbVel = _cubeJump * 0.9; } - else if (_orbId === 141) { _orbVel = _cubeJump * 0.72; } - else if (_orbId === 1333) { _orbVel = _cubeJump * 1.28; } - else if (_orbId === 84) { _orbVel = _cubeJump * 0.4; _flipAfter = true; } - else if (_orbId === 1022) { _orbVel = _cubeJump * -1; _flipAfter = true; } - else if (_orbId === 1330) { _orbVel = -30; } - } else if (this.p.isSpider) { - const _spiderBase = _cubeJump * 0.7; - if (_orbId === 36) { _orbVel = _spiderBase; } - else if (_orbId === 141) { _orbVel = _spiderBase * 0.77; } - else if (_orbId === 1333) { _orbVel = _spiderBase * 1.34; } - else if (_orbId === 84) { _orbVel = _spiderBase * 0.4; _flipAfter = true; } - else if (_orbId === 1022) { _orbVel = _spiderBase * -1; _flipAfter = true; } - else if (_orbId === 1330) { _orbVel = -30; } - } else { - const _cubeOrbJump = _cubeJump * (this.p.isMini ? 0.8 : 1); - if (_orbId === 36) { _orbVel = _cubeOrbJump; } - else if (_orbId === 141) { _orbVel = _cubeOrbJump * 0.72; } - else if (_orbId === 1333) { _orbVel = _cubeOrbJump * 1.38; } - else if (_orbId === 84) { _orbVel = _cubeOrbJump; _flipAfter = true; } - else if (_orbId === 1022) { _orbVel = _cubeOrbJump * 1; _flipBefore = true; } - else if (_orbId === 1330) { _orbVel = -18; } - } - this.p.isJumping = true; - this.p.onGround = false; - this.p.canJump = false; - this.p.upKeyPressed = false; - this.p.queuedHold = false; - if (_flipBefore) { - this.flipGravity(!this.p.gravityFlipped); - this.p.yVelocity = this.flipMod() * _orbVel; - } else { - this.p.yVelocity = _fm * _orbVel; - } - if (_orbId === 1330) { - this.p.wasBoosted = false; - } - this.runRotateAction(); - _boostedThisStep = true; - if (_flipAfter) { - this.flipGravity(!this.p.gravityFlipped); - } - try { - for (let _orbSpr of (this._gameLayer._orbSprites || [])) { - if (_orbSpr && _orbSpr._eeWorldX !== undefined && Math.abs(_orbSpr._eeWorldX - gameObj.x) < 10) { - _orbSpr._hitTime = Date.now(); - } - } - } catch(e) {} - } - } - } else if (_isDash && !this.p.upKeyDown) { - gameObj._dashHoldTicks = 0; - } - } else if (_colType === coinType) { - if (!gameObj.activated) { - gameObj.activated = true; - try { - const _coinSpr = this._gameLayer._coinSprites.find(s => s && s.active && Math.abs(s._coinWorldX - gameObj.x) < 2 && Math.abs(s._coinWorldY - gameObj.y) < 2); - if (_coinSpr && _coinSpr.scene) { - const _startY = _coinSpr.y; - _coinSpr.scene.tweens.add({ - targets: _coinSpr, - y: _startY - 70, - scaleX: (_coinSpr.scaleX || 1) * 1.3, - scaleY: (_coinSpr.scaleY || 1) * 1.3, - duration: 180, - ease: 'Quad.Out', - onComplete: () => { - if (!_coinSpr.scene) return; - _coinSpr.scene.tweens.add({ - targets: _coinSpr, - y: _startY + 600, - alpha: 0, - duration: 1200, - ease: 'Quad.In', - onComplete: () => { - try { _coinSpr.setVisible(false); } catch(e) {} - } - }); - } - }); - } - } catch(e) {} - } - } else if (_colType === hazardType) { - if (window.noClip) { - this.p.diedThisFrame = true; - continue; - } - if (_hasCircleHitbox) { - const _hdx = pieceWidth - gameObj.x; - const _hdy = playersY - gameObj.y; - const _hDistSq = _hdx * _hdx + _hdy * _hdy; - const _hMinDist = gameObj.hitbox_radius + (this.p.isWave ? waveHitSize : playerSize); - if (_hDistSq > _hMinDist * _hMinDist) continue; - } - this.killPlayer(); - return; - } else if (_colType === solidType) { - let _0x146a97 = playersY - playerSize + gamemodeAddition; - let _0x869e42 = playersLastY - playerSize + gamemodeAddition; - let _0x3e7199 = playersY + playerSize - gamemodeAddition; - let _0x135a9d = playersLastY + playerSize - gamemodeAddition; - const _0x55559d = 9; - let iscolliding; - if (_hasCircleHitbox) { - const _sdx = pieceWidth - gameObj.x; - const _sdy = playersY - gameObj.y; - const _sDistSq = _sdx * _sdx + _sdy * _sdy; - const _sTightRadius = gameObj.hitbox_radius + _0x55559d; - iscolliding = _sDistSq <= _sTightRadius * _sTightRadius; - left = gameObj.x - gameObj.hitbox_radius; - right = gameObj.x + gameObj.hitbox_radius; - top = gameObj.y - gameObj.hitbox_radius; - bottom = gameObj.y + gameObj.hitbox_radius; - } else { - iscolliding = pieceWidth + _0x55559d > left && pieceWidth - _0x55559d < right && playersY + _0x55559d > top && playersY - _0x55559d < bottom; - } - const _0xLandBot = (this.p.yVelocity <= 0 || this.p.onGround) && (_0x146a97 >= bottom || _0x869e42 >= bottom); - const _0xLandTop = (this.p.yVelocity >= 0 || this.p.onGround) && (_0x3e7199 <= top || _0x135a9d <= top); - const isstandingOnAPlatform = this.p.gravityFlipped ? _0xLandTop : _0xLandBot; - if (iscolliding && !isstandingOnAPlatform) { - if (window.noClip) this.p.diedThisFrame = true; - if (window.noClip || gameObj.objid === 143) continue - this.killPlayer(); - return; - } - if (pieceWidth + playerSize - 5 > left && pieceWidth - playerSize + 5 < right) { - if (!this.p.gravityFlipped && (_0x146a97 >= bottom || _0x869e42 >= bottom) && (this.p.yVelocity <= 0 || this.p.onGround)) { - this.p.y = bottom + playerSize; - this.hitGround(); - _0x30410f = true; - this.p.collideBottom = bottom; - if (!this.p.isFlying) { - this._checkSnapJump(gameObj); - } - continue; - } - if (this.p.gravityFlipped && !this.p.isFlying && (_0x3e7199 <= top || _0x135a9d <= top) && (this.p.yVelocity >= 0 || this.p.onGround)) { - this.p.y = top - playerSize; - this.hitGround(); - _0x30410f = true; - this.p.onCeiling = true; - this.p.collideTop = top; - if (!this.p.isFlying) { - this._checkSnapJump(gameObj); - } - continue; - } - if (this.p.isUfo) { - if (!this.p.gravityFlipped && (_0x3e7199 <= top || _0x135a9d <= top) && (this.p.yVelocity >= 0 || this.p.onGround)) { - this.p.y = top - playerSize; - this.hitGround(); - this.p.onCeiling = true; - this.p.collideTop = top; - continue; - } - if (this.p.gravityFlipped && (_0x146a97 >= bottom || _0x869e42 >= bottom) && (this.p.yVelocity <= 0 || this.p.onGround)) { - this.p.y = bottom + playerSize; - this.hitGround(); - _0x30410f = true; - this.p.onCeiling = true; - this.p.collideTop = bottom; - continue; - } - continue; - } - if ((_0x3e7199 <= top || _0x135a9d <= top) && (this.p.yVelocity >= 0 || this.p.onGround) && this.p.isFlying) { - this.p.y = top - playerSize; - this.hitGround(); - this.p.onCeiling = true; - this.p.collideTop = top; - continue; - } - if (!this.p.gravityFlipped && (_0x3e7199 <= top || _0x135a9d <= top) && this.p.yVelocity >= 0) { - if (iscolliding) { - if (window.noClip) this.p.diedThisFrame = true; - if (window.noClip || gameObj.objid === 143) continue; - this.killPlayer(); - return; - } - continue; - } - if (this.p.gravityFlipped && (_0x146a97 >= bottom || _0x869e42 >= bottom) && (this.p.yVelocity <= 0 || this.p.onGround) && this.p.isFlying) { - this.p.y = bottom + playerSize; - this.hitGround(); - _0x30410f = true; - this.p.onCeiling = true; - this.p.collideTop = bottom; - continue; - } - } - } - } - } - if (this.p.collideTop !== 0 && this.p.collideBottom !== 0) { - if (Math.abs(this.p.collideTop - this.p.collideBottom) < 48) { - if (window.noClip) this.p.diedThisFrame = true; - if (!window.noClip) { - this.killPlayer(); - return; - } - } - } - let _0x3020c8 = this._gameLayer.getFloorY(); - const iscube = !this.p.isFlying && !this.p.isBall && !this.p.isWave && !this.p.isUfo && !this.p.isSpider; - const _effectiveSize = this.p.isWave ? waveHitSize : playerSize; - if (!_0x30410f && !_boostedThisStep) { - let gravCeilY = this._gameLayer.getCeilingY(); - - if (!_0x30410f && !_boostedThisStep) { - if (this.p.y <= _0x3020c8 + _effectiveSize) { - if (!this.p.gravityFlipped || !iscube) { - this.p.y = _0x3020c8 + _effectiveSize; - this.hitGround(); - if (this.p.gravityFlipped) this.p.onCeiling = true; - } else if (this.p.gravityFlipped && iscube && this.p.yVelocity < -0.5) { - if (window.noClip) { - this.p.diedThisFrame = true; - } else { - this.killPlayer(); - return; - } - } - } - - if (gravCeilY !== null) { - if (this.p.y >= gravCeilY - _effectiveSize) { - if (this.p.gravityFlipped) { - this.p.y = gravCeilY - _effectiveSize; - this.hitGround(); - this.p.onCeiling = true; - } - } - } - } - if (!this.p.gravityFlipped && !window.noClip && this.p.y < _0x3020c8 - 30) { - this.p.y = _0x3020c8 + _effectiveSize; - this.p.yVelocity = 0; - this.hitGround(); - } - if (this.p.gravityFlipped) { - let gravCeilY = this._gameLayer.getCeilingY(); - if (gravCeilY !== null) { - if (this.p.y >= gravCeilY - _effectiveSize) { - this.p.y = gravCeilY - _effectiveSize; - this.hitGround(); - this.p.onCeiling = true; - } - if (!window.noClip && this.p.y > gravCeilY + 30) { - this.p.y = gravCeilY - _effectiveSize; - this.p.yVelocity = 0; - this.hitGround(); - this.p.onCeiling = true; - } - } - } - } - let _0x496456 = this._gameLayer.getCeilingY(); - if (_0x496456 !== null && this.p.y >= _0x496456 - _effectiveSize && !iscube) { - this.p.y = _0x496456 - _effectiveSize; - this.hitGround(); - this.p.onCeiling = true; - } - if (this.p.y > 1890*4) { - this.killPlayer(); - return; - } - if (this.p.isFlying || this.p.isWave || this.p.isUfo || this.p.isSpider) { - const _0x354b7c = this.p.y <= _0x3020c8 + _effectiveSize; - const _0xdc296 = _0x496456 !== null && this.p.y >= _0x496456 - _effectiveSize; - if (!_0x30410f && !_0x354b7c && this.p.collideTop === 0 && !_0xdc296) { - this.p.onGround = false; - } - } - this.p.wasUpKeyDown = this.p.upKeyDown; - if (this.p.diedThisFrame == true && window.noClipAccuracy){ - this.noclipStats.deathFrames++; - this._scene.tweens.killTweensOf(this._scene.noclipFlash); - this._scene.tweens.add({ - targets: this._scene.noclipFlash, - alpha: { from: 0.5, to: 0 }, - duration: 400, - ease: 'Cubic.easeOut' - }); - if (this.p.diedLastFrame == false){ - this.noclipStats.deaths++; - } - } - if (this.noclipStats.totalFrames > 0) { - const safeFrames = this.noclipStats.totalFrames - this.noclipStats.deathFrames; - this.noclipStats.accuracy = (safeFrames / this.noclipStats.totalFrames) * 100; - } - this.p.diedLastFrame = this.p.diedThisFrame; - } - drawHitboxes(graphics, camX, camY) { - graphics.clear(); - const playerSize = this.p.isMini ? 18 : 30; - const hitboxsize = playerSize*2; - const isFlipped = this.p.mirrored; - const camXCenter = camX + centerX; - const playerY = this.p.y; - const nearbyObjects = this._gameLayer.getNearbySectionObjects(camXCenter); - for (let nearObject of nearbyObjects) { - let objXCenter = nearObject.x - camX; - let objYCenter = b(nearObject.y) + camY; - let hitboxColor = 65280; - if (nearObject.type === hazardType) { - hitboxColor = 16729156; - } else if (nearObject.type === "portal_fly" || nearObject.type === "portal_cube" || nearObject.type === "portal_ball" || nearObject.type === portalWaveType || nearObject.type === portalUfoType) { - hitboxColor = 4491519; - } else if (nearObject.type === "portal_gravity_down" || nearObject.type === "portal_gravity_up" || nearObject.type === "portal_gravity_toggle") { - hitboxColor = 16776960; - } else if (nearObject.type === "portal_mirror_on" || nearObject.type === "portal_mirror_off") { - hitboxColor = 16744448; - } else if (nearObject.type === "portal_mini_on" || nearObject.type === "portal_mini_off") { - hitboxColor = 16711935; - } else if (nearObject.type === jumpPadType) { - hitboxColor = 16744192; - } else if (nearObject.type === jumpRingType) { - hitboxColor = 16711935; - } - const xPos = isFlipped ? screenWidth - objXCenter : objXCenter; - graphics.lineStyle(2, hitboxColor, 0.7); - if (nearObject.hitbox_radius !== undefined && nearObject.hitbox_radius !== null) { - graphics.strokeCircle(xPos, objYCenter, nearObject.hitbox_radius); - } else { - let rot = Phaser.Math.DegToRad(nearObject.rotationDegrees); - let cos = Math.cos(rot); - let sin = Math.sin(rot); - let negWidth = -nearObject.w / 2; - let negHeight = -nearObject.h / 2; - let posWidth = nearObject.w / 2; - let posHeight = nearObject.h / 2; - let points = [ - { x: negWidth, y: negHeight }, - { x: posWidth, y: negHeight }, - { x: posWidth, y: posHeight }, - { x: negWidth, y: posHeight } - ]; - let rotations = points.map(p => ({ - x: xPos + (isFlipped ? -(p.x * cos - p.y * sin) : (p.x * cos - p.y * sin)), - y: objYCenter + (isFlipped ? -(p.x * sin + p.y * cos) : (p.x * sin + p.y * cos)) - })); - graphics.beginPath(); - graphics.moveTo(rotations[0].x, rotations[0].y); - graphics.lineTo(rotations[1].x, rotations[1].y); - graphics.lineTo(rotations[2].x, rotations[2].y); - graphics.lineTo(rotations[3].x, rotations[3].y); - graphics.closePath(); - graphics.strokePath(); - } - } - - if (window.showHitboxTrail) { - this._hitboxTrail.forEach((pos, index) => { - const trailXRaw = pos.x - camX; - const trailX = isFlipped ? screenWidth - trailXRaw : trailXRaw; - const trailY = b(pos.y) + camY; - graphics.lineStyle(1, hexToHexadecimal("ff0000"), 1); - - if (!this.p.isWave){ - // outer box (red) - graphics.lineStyle(1, hexToHexadecimal("ff0000"), 0.5); - graphics.strokeRect(trailX - playerSize, trailY - playerSize, hitboxsize, hitboxsize); - - // inner circle (dark red) - graphics.lineStyle(1, hexToHexadecimal("b30001"), 0.5); - graphics.strokeCircle((trailX - playerSize) + hitboxsize / 2, (trailY - playerSize) + hitboxsize / 2, hitboxsize / 2); - - // box that rotates with the player (dark red) - graphics.lineStyle(1, hexToHexadecimal("b30001"), 0.5); - { - const cx = (trailX - playerSize) + hitboxsize / 2; - const cy = (trailY - playerSize) + hitboxsize / 2; - const hw = hitboxsize / 2; - const cos = Math.cos(pos.rotation ?? 0); - const sin = Math.sin(pos.rotation ?? 0); - const corners = [ - { x: cx - hw * cos + hw * sin, y: cy - hw * sin - hw * cos }, - { x: cx + hw * cos + hw * sin, y: cy + hw * sin - hw * cos }, - { x: cx + hw * cos - hw * sin, y: cy + hw * sin + hw * cos }, - { x: cx - hw * cos - hw * sin, y: cy - hw * sin + hw * cos }, - ]; - graphics.beginPath(); - graphics.moveTo(corners[0].x, corners[0].y); - graphics.lineTo(corners[1].x, corners[1].y); - graphics.lineTo(corners[2].x, corners[2].y); - graphics.lineTo(corners[3].x, corners[3].y); - graphics.closePath(); - graphics.strokePath(); - } - - graphics.lineStyle(1, hexToHexadecimal("0000ff"), 1); - } - - // inner hitbox - graphics.strokeRect(trailX - 9, trailY - 9, 18, 18); - }); - } - - // comments so its easier for other people to read ts - const _0x1e788a = b(playerY) + camY; - const _playerDrawX = isFlipped ? screenWidth - centerX : centerX; - graphics.lineStyle(1, hexToHexadecimal("ff0000"), 1); - if (!this.p.isWave){ - // outer box (red) - graphics.lineStyle(2, hexToHexadecimal("ff0000"), 0.8); - graphics.strokeRect(_playerDrawX - playerSize, _0x1e788a - playerSize, hitboxsize, hitboxsize); - // inner circle (dark red) - graphics.lineStyle(2, hexToHexadecimal("b30001"), 0.8); - graphics.strokeCircle((_playerDrawX - playerSize)+hitboxsize/2, (_0x1e788a - playerSize)+hitboxsize/2, hitboxsize/2); - - // box that rotates with the player (dark red) - graphics.lineStyle(2, hexToHexadecimal("b30001"), 0.8); - { - const cx = (_playerDrawX - playerSize) + hitboxsize / 2; - const cy = (_0x1e788a - playerSize) + hitboxsize / 2; - const hw = hitboxsize / 2; - const cos = Math.cos(this._rotation); - const sin = Math.sin(this._rotation); - const corners = [ - { x: cx - hw * cos + hw * sin, y: cy - hw * sin - hw * cos }, - { x: cx + hw * cos + hw * sin, y: cy + hw * sin - hw * cos }, - { x: cx + hw * cos - hw * sin, y: cy + hw * sin + hw * cos }, - { x: cx - hw * cos - hw * sin, y: cy - hw * sin + hw * cos }, - ]; - graphics.beginPath(); - graphics.moveTo(corners[0].x, corners[0].y); - graphics.lineTo(corners[1].x, corners[1].y); - graphics.lineTo(corners[2].x, corners[2].y); - graphics.lineTo(corners[3].x, corners[3].y); - graphics.closePath(); - graphics.strokePath(); - } - - graphics.lineStyle(2, hexToHexadecimal("0000ff"), 1); - } - // inner hitbox - graphics.strokeRect(_playerDrawX - 9, _0x1e788a - 9, 18, 18); - } - playEndAnimation(_0x24408e, _0x281588, _0x54bbf4) { - this._endAnimating = true; - this._hitboxTrail = []; - this._hitboxGraphics.clear(); - const _0x3729ef = this._scene; - const _0x568b25 = _0x54bbf4 || 240; - const _0x4a45d7 = _0x3729ef._playerWorldX; - const _0x501b73 = this.p.y; - const _0x457676 = _0x24408e + 100; - const _0x3ade39 = _0x568b25 - 40; - const _0x1295ea = _0x4a45d7; - const _0x47ae60 = _0x501b73; - const _0x1f2e19 = _0x4a45d7 + 80; - const _0x8bc9f4 = _0x568b25 + 300; - const _0x11b580 = [this._playerSpriteLayer, this._playerGlowLayer, this._playerOverlayLayer, this._playerExtraLayer, this._ballSpriteLayer, this._ballGlowLayer, this._ballOverlayLayer, this._waveSpriteLayer, this._waveOverlayLayer, this._waveExtraLayer, this._waveGlowLayer, this._shipSpriteLayer, this._shipGlowLayer, this._shipOverlayLayer, this._shipExtraLayer].filter(_0x3e9c62 => _0x3e9c62 && _0x3e9c62.sprite.visible).map(_0x5cedeb => _0x5cedeb.sprite); - this._startPercent = (this._scene._playerWorldX / this._scene._level.endXPos) * 100; - this._particleEmitter.stop(); - this._flyParticleEmitter.stop(); - this._flyParticle2Emitter.stop(); - this._shipDragEmitter.stop(); - const _0x154798 = this.p.isFlying; - const _0x3793a4 = [this._shipSpriteLayer, this._shipGlowLayer, this._shipOverlayLayer, this._shipExtraLayer]; - const _0xbd676f = [this._playerSpriteLayer, this._playerGlowLayer, this._playerOverlayLayer, this._playerExtraLayer]; - const _0x3fc5a5 = _0x11b580.map(_0x5c0e81 => { - let _0x5cbb0a = 0; - if (_0x154798) { - const _0xff16eb = _0x3793a4.some(_0x40ef1e => _0x40ef1e && _0x40ef1e.sprite === _0x5c0e81); - const _0x4fdb53 = _0xbd676f.some(_0x4ef5b5 => _0x4ef5b5 && _0x4ef5b5.sprite === _0x5c0e81); - if (_0xff16eb) { - _0x5cbb0a = 10; - } else if (_0x4fdb53) { - _0x5cbb0a = -10; - } - } - return { - spr: _0x5c0e81, - localY: _0x5cbb0a - }; - }); - const _0x3e35e7 = this._streak; - const _0x51c4a8 = { - val: 0 - }; - _0x3729ef.tweens.add({ - targets: _0x51c4a8, - val: 1, - duration: 1000, - ease: _0x23df59 => Math.pow(_0x23df59, 1.2), - onUpdate: () => { - const spriteWidth = _0x51c4a8.val; - const _0x2478d6 = (1 - spriteWidth) ** 3 * _0x1295ea + (1 - spriteWidth) ** 2 * 3 * spriteWidth * _0x1295ea + (1 - spriteWidth) * 3 * spriteWidth ** 2 * _0x1f2e19 + spriteWidth ** 3 * _0x457676; - const _0x148e69 = (1 - spriteWidth) ** 3 * _0x47ae60 + (1 - spriteWidth) ** 2 * 3 * spriteWidth * _0x47ae60 + (1 - spriteWidth) * 3 * spriteWidth ** 2 * _0x8bc9f4 + spriteWidth ** 3 * _0x3ade39; - const _0x3d0365 = _0x2478d6 - _0x3729ef._cameraX; - const _0x3790a9 = b(_0x148e69) + _0x3729ef._cameraY; - const _0x1cb4d3 = 1 - spriteWidth * spriteWidth; - const _0x1d2e2f = _0x3fc5a5[0].spr.rotation; - const _0xd3cb2a = Math.cos(_0x1d2e2f); - const _0x2f86c2 = Math.sin(_0x1d2e2f); - this._scene._interpolatedPercent = this._startPercent + (100 - this._startPercent) * spriteWidth; - for (const _0x2b394a of _0x3fc5a5) { - const _0xbd4f26 = -_0x2b394a.localY * _0x2f86c2; - const _0x5b67fe = _0x2b394a.localY * _0xd3cb2a; - _0x2b394a.spr.setPosition(_0x3d0365 + _0xbd4f26, _0x3790a9 + _0x5b67fe); - _0x2b394a.spr.setAlpha(_0x1cb4d3); - } - _0x3e35e7.setPosition(_0x2478d6, b(_0x148e69)); - _0x3e35e7.update(_0x3729ef.game.loop.delta / 1000); - }, - onComplete: () => { - this._scene._interpolatedPercent = 100; - for (const _0x4fce42 of _0x3fc5a5) { - _0x4fce42.spr.setVisible(false); - } - _0x3e35e7.stop(); - _0x3e35e7.reset(); - _0x281588(); - } - }); - for (const _0x25f8c5 of _0x11b580) { - _0x3729ef.tweens.add({ - targets: _0x25f8c5, - angle: _0x25f8c5.angle + 360, - duration: 1000, - ease: _0x228c03 => Math.pow(_0x228c03, 1.5) - }); - } - } - reset() { - this._cleanupExplosion(); - this._endAnimating = false; - this._lastLandObject = null; - this._lastXOffset = 0; - this.stopRotation(); - this.rotateActionTime = 0; - this._rotation = 0; - this._lastCameraX = 0; - this._lastCameraY = 0; - this.setCubeVisible(true); - this.setShipVisible(false); - this.setBallVisible(false); - this.setWaveVisible(false); - this.setBirdVisible(false); - this.setSpiderVisible(false); - for (const _0x5a0fa9 of this._allLayers) { - if (_0x5a0fa9) { - _0x5a0fa9.sprite.setAlpha(1); - if (_0x5a0fa9.sprite.scaleY < 0) { - _0x5a0fa9.sprite.scaleY = Math.abs(_0x5a0fa9.sprite.scaleY); - } - } - } - for (const _0x1e656c of this._playerLayers) { - if (_0x1e656c) { - _0x1e656c.sprite.setScale(1); - } - } - this._particleEmitter.stop(); - this._particleActive = false; - this._flyParticleEmitter.stop(); - this._flyParticleActive = false; - this._flyParticle2Emitter.stop(); - this._flyParticle2Active = false; - this._shipDragEmitter.stop(); - this._shipDragActive = false; - this._streak.stop(); - this._streak.reset(); - this._waveTrail.stop(); - this._waveTrail.reset(); - } -} +class PlayerState { + constructor() { + this.reset(); + } + reset() { + this.y = 30; + this.lastY = 30; + this.lastGroundPosY = 30; + this.yVelocity = 0; + this.onGround = true; + this.canJump = true; + this.isJumping = false; + this.gravityFlipped = false; + this.isFlying = false; + this.isBall = false; + this.isWave = false; + this.isUfo = false; + this.isSpider = false; + this.isBird = false; + this.isDart = false; + this.isRobot = false; + this.isSwing = false; + this.isJetpack = false; + this.isMini = false; + this.wasBoosted = false; + this.pendingVelocity = null; + this.collideTop = 0; + this.collideBottom = 0; + this.onCeiling = false; + this.upKeyDown = false; + this.upKeyPressed = false; + this.queuedHold = false; + this.isDead = false; + this.mirrored = false; + this.isDashing = false; + this.dashYVelocity = 0; + this.isDual = false; + this.ignorePortals = false; + } +} + +class StreakManager { + constructor(_0x9c2356, _0x171c7f, _0x49d49a, _0xb01616, _0x5aac4b, _0x293ce3, _0x5c7bc5 = 16777215, _0x5a3e29 = 1) { + this._color = _0x5c7bc5; + this._opacity = _0x5a3e29; + this._fadeDelta = 1 / _0x49d49a; + this._minSegSq = _0xb01616 * _0xb01616; + this._maxSeg = _0x293ce3; + this._maxPoints = Math.floor(_0x49d49a * 60 + 2) * 5; + this._stroke = _0x5aac4b; + this._pts = []; + this._posR = { + x: 0, + y: 0 + }; + this._posInit = false; + this._active = false; + const graphicsSettings = window.performanceOptimizer ? window.performanceOptimizer.getGraphicsSettings() : { + enableGlow: true, + blendMode: Phaser.BlendModes.ADD + }; + + this._gfx = _0x9c2356.add.graphics(); + this._gfx.setBlendMode(graphicsSettings.blendMode); + } + addToContainer(_0xa23240, _0x4b05db) { + _0xa23240.add(this._gfx); + this._gfx.setDepth(_0x4b05db); + } + setColor(newColor) { + this._color = newColor + } + setPosition(_0x388397, _0x292e79) { + this._posR.x = _0x388397; + this._posR.y = _0x292e79; + this._posInit = true; + } + start() { + this._active = true; + } + stop() { + this._active = false; + } + reset() { + this._pts = []; + this._posInit = false; + this._gfx.clear(); + } + update(_0x2acf4c) { + if (!this._posInit) { + this._gfx.clear(); + return; + } + const _0x1817b7 = _0x2acf4c * this._fadeDelta; + let _0x56ab0b = 0; + for (let _0x3ca060 = 0; _0x3ca060 < this._pts.length; _0x3ca060++) { + this._pts[_0x3ca060].state -= _0x1817b7; + if (this._pts[_0x3ca060].state > 0) { + if (_0x56ab0b !== _0x3ca060) { + this._pts[_0x56ab0b] = this._pts[_0x3ca060]; + } + _0x56ab0b++; + } + } + this._pts.length = _0x56ab0b; + if (this._active && this._pts.length < this._maxPoints) { + const _0x89a79d = this._pts.length; + let _0x3d12ca = true; + if (_0x89a79d > 0) { + const _0x2748e4 = this._pts[_0x89a79d - 1]; + const _0x3a1a00 = this._posR.x - _0x2748e4.x; + const _0x4c247a = this._posR.y - _0x2748e4.y; + const _0x1f9fea = _0x3a1a00 * _0x3a1a00 + _0x4c247a * _0x4c247a; + if (this._maxSeg > 0 && Math.sqrt(_0x1f9fea) > this._maxSeg) { + this._pts.length = 0; + } else if (_0x1f9fea < this._minSegSq) { + _0x3d12ca = false; + } else if (_0x89a79d > 1) { + const _0x375c40 = this._pts[_0x89a79d - 2]; + const _0x14c0c1 = this._posR.x - _0x375c40.x; + const _0x2d01f0 = this._posR.y - _0x375c40.y; + if (_0x14c0c1 * _0x14c0c1 + _0x2d01f0 * _0x2d01f0 < this._minSegSq * 2) { + _0x3d12ca = false; + } + } + } + if (_0x3d12ca) { + this._pts.push({ + x: this._posR.x, + y: this._posR.y, + state: 1 + }); + } + } + this._gfx.clear(); + const _0x49dac5 = this._pts.length; + if (!(_0x49dac5 < 2)) { + for (let _0x27c164 = 0; _0x27c164 < _0x49dac5 - 1; _0x27c164++) { + const _0x398b7b = this._pts[_0x27c164]; + const _0x3b4326 = this._pts[_0x27c164 + 1]; + const _0x1c4c9d = (_0x398b7b.state + _0x3b4326.state) * 0.5 * this._opacity; + this._gfx.lineStyle(this._stroke, this._color, _0x1c4c9d); + this._gfx.lineBetween(_0x398b7b.x, _0x398b7b.y, _0x3b4326.x, _0x3b4326.y); + } + } + } +} +class WaveTrail { + constructor(scene, color, glowColor) { + this._color = color; + this._glowColor = glowColor; + this._pts = []; + this._active = false; + this._posInit = false; + this._pos = { x: 0, y: 0 }; + this._maxAge = 0.6; + this._minSegSq = 1.5 * 1.5; + this._halfW = 7; + this._glowHalfW = 14; + this._gfx = scene.add.graphics(); + this._gfx.setBlendMode(Phaser.BlendModes.NORMAL); + this._glowGfx = scene.add.graphics(); + this._glowGfx.setBlendMode(Phaser.BlendModes.ADD); + } + addToContainer(container, depth) { + container.add(this._glowGfx); + this._glowGfx.setDepth(depth - 1); + container.add(this._gfx); + this._gfx.setDepth(depth); + } + setPosition(x, y) { this._pos.x = x; this._pos.y = y; this._posInit = true; } + start() { this._active = true; } + stop() { this._active = false; } + reset() { this._pts = []; this._posInit = false; this._gfx.clear(); this._glowGfx.clear(); } + + _intersect(p1, p2, p3, p4) { + const d1x = p2.x - p1.x, d1y = p2.y - p1.y; + const d2x = p4.x - p3.x, d2y = p4.y - p3.y; + const denom = d1x * d2y - d1y * d2x; + if (Math.abs(denom) < 1e-6) return { x: p2.x, y: p2.y }; + const t = ((p3.x - p1.x) * d2y - (p3.y - p1.y) * d2x) / denom; + const tc = Math.max(-3, Math.min(3, t)); + return { x: p1.x + d1x * tc, y: p1.y + d1y * tc }; + } + + _buildEdges(pts, halfW) { + const n = pts.length; + const upper = new Array(n); + const lower = new Array(n); + + // precompute per-segment normals + const segNx = new Array(n - 1); + const segNy = new Array(n - 1); + for (let i = 0; i < n - 1; i++) { + const dx = pts[i + 1].x - pts[i].x; + const dy = pts[i + 1].y - pts[i].y; + const len = Math.sqrt(dx * dx + dy * dy) || 1; + segNx[i] = -dy / len; + segNy[i] = dx / len; + } + + for (let i = 0; i < n; i++) { + const p = pts[i]; + let nx, ny; + + if (i === 0) { + nx = segNx[0]; ny = segNy[0]; + } else if (i === n - 1) { + nx = segNx[n - 2]; ny = segNy[n - 2]; + } else { + // miter: intersect the two offset edge lines for a sharp corner + const n1x = segNx[i - 1], n1y = segNy[i - 1]; + const n2x = segNx[i], n2y = segNy[i]; + + // upper edge intersection + const u1 = { x: pts[i - 1].x + n1x * halfW, y: pts[i - 1].y + n1y * halfW }; + const u2 = { x: p.x + n1x * halfW, y: p.y + n1y * halfW }; + const u3 = { x: p.x + n2x * halfW, y: p.y + n2y * halfW }; + const u4 = { x: pts[i + 1].x + n2x * halfW, y: pts[i + 1].y + n2y * halfW }; + const mu = this._intersect(u1, u2, u3, u4); + + // lower edge intersection + const l1 = { x: pts[i - 1].x - n1x * halfW, y: pts[i - 1].y - n1y * halfW }; + const l2 = { x: p.x - n1x * halfW, y: p.y - n1y * halfW }; + const l3 = { x: p.x - n2x * halfW, y: p.y - n2y * halfW }; + const l4 = { x: pts[i + 1].x - n2x * halfW, y: pts[i + 1].y - n2y * halfW }; + const ml = this._intersect(l1, l2, l3, l4); + + upper[i] = mu; + lower[i] = ml; + continue; + } + + upper[i] = { x: p.x + nx * halfW, y: p.y + ny * halfW }; + lower[i] = { x: p.x - nx * halfW, y: p.y - ny * halfW }; + } + return { upper, lower }; + } + + _drawRibbon(gfx, pts, halfW, color, baseAlpha, antialias = false) { + const n = pts.length; + if (n < 2) return; + + const { upper, lower } = this._buildEdges(pts, halfW); + if (antialias) { + this._drawRibbon(gfx, pts, halfW + 0.5, color, baseAlpha * 0.5, false); + } + + for (let i = 0; i < n - 1; i++) { + const alpha = Math.max(0, (1 - (pts[i].age + pts[i+1].age) * 0.5)) * baseAlpha; + if (alpha <= 0.01) continue; + + gfx.fillStyle(color, alpha); + + gfx.fillTriangle( + upper[i].x, upper[i].y, + upper[i+1].x, upper[i+1].y, + lower[i].x, lower[i].y + ); + gfx.fillTriangle( + upper[i+1].x, upper[i+1].y, + lower[i+1].x, lower[i+1].y, + lower[i].x, lower[i].y + ); + } + } + + update(delta) { + if (!this._posInit) { this._gfx.clear(); this._glowGfx.clear(); return; } + const decay = (delta / 1000) / this._maxAge; + + let alive = 0; + for (let i = 0; i < this._pts.length; i++) { + this._pts[i].age += decay; + if (this._pts[i].age < 1) this._pts[alive++] = this._pts[i]; + } + this._pts.length = alive; + + if (this._active) { + const n = this._pts.length; + let add = true; + if (n > 0) { + const last = this._pts[n - 1]; + const dx = this._pos.x - last.x, dy = this._pos.y - last.y; + if (dx*dx + dy*dy < this._minSegSq) add = false; + } + if (add) this._pts.push({ x: this._pos.x, y: this._pos.y, age: 0 }); + } + + this._gfx.clear(); + this._glowGfx.clear(); + if (this._pts.length < 2) return; + + const solid = window.solidWave === true; + if (solid) { + this._drawRibbon(this._gfx, this._pts, this._halfW, window.mainColor, 1.0); + } else { + this._drawRibbon(this._glowGfx, this._pts, this._glowHalfW, this._glowColor, 0.22); + this._drawRibbon(this._gfx, this._pts, this._halfW, this._color, 0.95); + this._drawRibbon(this._gfx, this._pts, Math.round(this._halfW * 0.32), 0xffffff, 0.5); + } + } +} +function ds(scene, x, y, frameName, depth, isVisible) { + let atlasData = getAtlasFrame(scene, frameName); + if (!atlasData) { + return null; + } + let image = scene.add.image(x, y, atlasData.atlas, atlasData.frame); + image.setDepth(depth); + image.setVisible(isVisible); + return { + sprite: image + }; +} + +class PlayerObject { + constructor(scene, _0x3f50cc, _0x2811e1) { + this._scene = scene; + this.p = _0x3f50cc; + this._gameLayer = _0x2811e1; + this._rotation = 0; + this.rotateActionActive = false; + this.rotateActionTime = 0; + this.rotateActionDuration = 0; + this.rotateActionStart = 0; + this.rotateActionTotal = 0; + this._lastLandObject = null; + this._lastXOffset = 0; + this._lastCameraX = 0; + this._lastCameraY = 0; + this._dashAnimationFrame = 0; + this._dashAnimationTimer = 0; + this._dashAnimationSprite = null; + this._createSprites(); + this._hitboxGraphics = scene.add.graphics().setScrollFactor(0).setDepth(20); + this._initParticles(scene); + scene.events.on("shutdown", () => this._cleanupExplosion()); + this.noclipStats = { + totalFrames: 0, + deathFrames: 0, + accuracy: 100, + deaths: 0 + }; + } + _createSprites() { + const spriteY = this._scene; + const spriteX = b(this.p.y); + const particleY = centerX; + this._playerGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentPlayer}_glow_001.png`, 9, false); + this._playerSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentPlayer}_001.png`, 10, true); + this._playerOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentPlayer}_2_001.png`, 8, true); + this._playerExtraLayer = ds(spriteY, particleY, spriteX, `${window.currentPlayer}_extra_001.png`, 12, true); + if (this._playerGlowLayer) { + this._playerGlowLayer.sprite.setTint(window.secondaryColor); + this._playerGlowLayer.sprite._glowEnabled = false; + } + if (this._playerSpriteLayer) { + this._playerSpriteLayer.sprite.setTint(window.mainColor); + } else { + let _0x3aecd9 = spriteY.add.rectangle(particleY, spriteX, g, g, window.mainColor); + _0x3aecd9.setDepth(10); + this._playerSpriteLayer = { + sprite: _0x3aecd9 + }; + } + if (this._playerOverlayLayer) { + this._playerOverlayLayer.sprite.setTint(window.secondaryColor); + } + this._shipGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentShip}_glow_001.png`, 9, false); + this._shipSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentShip}_001.png`, 10, false); + this._shipOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentShip}_2_001.png`, 8, false); + this._shipExtraLayer = ds(spriteY, particleY, spriteX, `${window.currentShip}_extra_001.png`, 12, false); + if (this._shipGlowLayer) { + this._shipGlowLayer.sprite.setTint(window.secondaryColor); + this._shipGlowLayer.sprite._glowEnabled = false; + } + if (this._shipSpriteLayer) { + this._shipSpriteLayer.sprite.setTint(window.mainColor); + } else { + let _0x100643 = spriteY.add.polygon(particleY, spriteX, [{ + x: -72, + y: 40 + }, { + x: 72, + y: 0 + }, { + x: -72, + y: -40 + }, { + x: -40, + y: 0 + }], window.mainColor); + _0x100643.setDepth(10).setVisible(false); + this._shipSpriteLayer = { + sprite: _0x100643 + }; + } + if (this._shipOverlayLayer) { + this._shipOverlayLayer.sprite.setTint(window.secondaryColor); + } + this._ballGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentBall}_glow_001.png`, 9, false); + this._ballSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentBall}_001.png`, 10, false); + this._ballOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentBall}_2_001.png`, 8, false); + if (this._ballGlowLayer) { + this._ballGlowLayer.sprite.setTint(window.secondaryColor); + this._ballGlowLayer.sprite._glowEnabled = false; + } + if (this._ballSpriteLayer) { + this._ballSpriteLayer.sprite.setTint(window.mainColor); + } + if (this._ballOverlayLayer) { + this._ballOverlayLayer.sprite.setTint(window.secondaryColor); + } + this._waveGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentWave}_glow_001.png`, 9, false); + this._waveOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentWave}_2_001.png`, 8, false); + this._waveExtraLayer = null; + this._waveSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentWave}_001.png`, 10, false); + if (this._waveGlowLayer) { + this._waveGlowLayer.sprite.setTint(window.secondaryColor); + this._waveGlowLayer.sprite._glowEnabled = false; + } + if (this._waveSpriteLayer) { + this._waveSpriteLayer.sprite.setTint(window.mainColor); + } + if (this._waveOverlayLayer) { + this._waveOverlayLayer.sprite.setTint(window.secondaryColor); + } + this.playerSprite = this._playerSpriteLayer.sprite; + this.shipSprite = this._shipSpriteLayer.sprite; + this._playerLayers = [this._playerSpriteLayer, this._playerGlowLayer, this._playerOverlayLayer, this._playerExtraLayer]; + this._shipLayers = [this._shipSpriteLayer, this._shipGlowLayer, this._shipOverlayLayer, this._shipExtraLayer]; + this._ballLayers = [this._ballSpriteLayer, this._ballGlowLayer, this._ballOverlayLayer].filter(_0x37ad93 => !!_0x37ad93); + this._waveLayers = [this._waveSpriteLayer, this._waveOverlayLayer, this._waveExtraLayer, this._waveGlowLayer].filter(_0x37ad93 => !!_0x37ad93); + const _spiderBase = `${window.currentSpider}_01`; + this._spiderSpriteLayer = ds(spriteY, particleY, spriteX, `${_spiderBase}_001.png`, 10, false); + this._spiderGlowLayer = ds(spriteY, particleY, spriteX, `${_spiderBase}_glow_001.png`, 9, false); + this._spiderOverlayLayer = ds(spriteY, particleY, spriteX, `${_spiderBase}_2_001.png`, 8, false); + this._spiderExtraLayer = ds(spriteY, particleY, spriteX, `${_spiderBase}_extra_001.png`, 12, false); + if (this._spiderSpriteLayer) this._spiderSpriteLayer.sprite.setTint(window.mainColor); + if (this._spiderOverlayLayer) this._spiderOverlayLayer.sprite.setTint(window.secondaryColor); + if (this._spiderGlowLayer) { this._spiderGlowLayer.sprite.setTint(window.secondaryColor); this._spiderGlowLayer.sprite._glowEnabled = false; } + this._spiderLayers = [this._spiderSpriteLayer, this._spiderGlowLayer, this._spiderOverlayLayer, this._spiderExtraLayer].filter(x => !!x); + this._birdSpriteLayer = ds(spriteY, particleY, spriteX, `${window.currentBird}_001.png`, 10, false); + this._birdGlowLayer = ds(spriteY, particleY, spriteX, `${window.currentBird}_2_001.png`, 9, false); + this._birdOverlayLayer = ds(spriteY, particleY, spriteX, `${window.currentBird}_3_001.png`, 8, false); + this._birdExtraLayer = ds(spriteY, particleY, spriteX, `${window.currentBird}_extra_001.png`, 12, false); + if (this._birdSpriteLayer) { + this._birdSpriteLayer.sprite.setTint(window.mainColor); + } + if (this._birdGlowLayer) { + this._birdGlowLayer.sprite.setTint(window.secondaryColor); + this._birdGlowLayer.sprite._glowEnabled = false; + } + if (this._birdOverlayLayer) { + this._birdOverlayLayer.sprite.setTint(window.secondaryColor); + } + this._birdLayers = [this._birdSpriteLayer, this._birdGlowLayer, this._birdOverlayLayer, this._birdExtraLayer].filter(x => !!x); + + this._allLayers = [...this._playerLayers, ...this._ballLayers, ...this._waveLayers, ...this._shipLayers, ...this._spiderLayers, ...this._birdLayers]; + + this._dashAnimationSprite = spriteY.add.image(particleY, spriteX, "GJ_GameSheetGlow", "playerDash2_001.png"); + this._dashAnimationSprite.setDepth(7); + this._dashAnimationSprite.setVisible(false); + this._dashAnimationSprite.setTint(0xffffff); + this._dashAnimationSprite.setBlendMode('ADD'); + } + _updateDashAnimation(deltaTime) { + if (!this._dashAnimationSprite) return; + if (this.p.isDashing) { + this._dashAnimationSprite.setVisible(true); + this._dashAnimationTimer += deltaTime; + if (this._dashAnimationTimer >= 16.67) { + this._dashAnimationTimer = 0; + this._dashAnimationFrame = (this._dashAnimationFrame % 12) + 1; + const frameName = `playerDash2_${String(this._dashAnimationFrame).padStart(3, '0')}.png`; + this._dashAnimationSprite.setFrame(frameName); + } + } else { + this._dashAnimationSprite.setVisible(false); + this._dashAnimationFrame = 0; + this._dashAnimationTimer = 0; + } + } + _initParticles(scene) { + this._particleEmitter = scene.add.particles(0, 0, "GJ_WebSheet", { + frame: "square.png", + speed: { + min: 110, + max: 190 + }, + angle: { + min: 225, + max: 315 + }, + lifespan: { + min: 150, + max: 450 + }, + scale: { + start: 0.5, + end: 0 + }, + gravityY: 600, + frequency: 1000 / 30, + blendMode: "ADD", + alpha: { + start: 1, + end: 0 + }, + tint: window.mainColor + }); + this._particleEmitter.stop(); + this._particleEmitter.setDepth(9); + this._gameLayer.container.add(this._particleEmitter); + this._flyParticleEmitter = scene.add.particles(0, 0, "GJ_WebSheet", { + frame: "square.png", + speed: { + min: 22, + max: 38 + }, + angle: { + min: 225, + max: 315 + }, + lifespan: { + min: 150, + max: 450 + }, + scale: { + start: 0.5, + end: 0 + }, + gravityY: 600, + frequency: 1000 / 30, + blendMode: "ADD", + tint: { + start: 16737280, + end: 16711680 + }, + alpha: { + start: 1, + end: 0 + } + }); + this._flyParticleEmitter.stop(); + this._flyParticleEmitter.setDepth(9); + this._gameLayer.container.add(this._flyParticleEmitter); + this._flyParticle2Emitter = scene.add.particles(0, 0, "GJ_WebSheet", { + frame: "square.png", + speed: { + min: 220, + max: 380 + }, + angle: { + min: 180, + max: 360 + }, + lifespan: { + min: 150, + max: 450 + }, + scale: { + start: 0.75, + end: 0 + }, + gravityY: 600, + frequency: 1000 / 30, + blendMode: "ADD", + tint: { + start: 16760320, + end: 16711680 + }, + alpha: { + start: 1, + end: 0 + } + }); + this._flyParticle2Emitter.stop(); + this._flyParticle2Emitter.setDepth(9); + this._gameLayer.container.add(this._flyParticle2Emitter); + this._shipDragEmitter = scene.add.particles(0, 0, "GJ_WebSheet", { + frame: "square.png", + x: { + min: -18, + max: 18 + }, + speed: { + min: 223.79999999999998, + max: 343.79999999999995 + }, + angle: { + min: 205, + max: 295 + }, + lifespan: { + min: 80, + max: 220 + }, + scale: { + start: 0.375, + end: 0 + }, + gravityX: -700, + gravityY: 600, + frequency: 25, + blendMode: "ADD", + alpha: { + start: 1, + end: 0 + } + }); + this._shipDragEmitter.stop(); + this._shipDragEmitter.setDepth(22); + this._shipDragActive = false; + this._particleActive = false; + this._flyParticle2Active = false; + this._flyParticleActive = false; + const _0x57911a = { + frame: "square.png", + speed: { + min: 250, + max: 350 + }, + angle: { + min: 210, + max: 330 + }, + lifespan: { + min: 50, + max: 600 + }, + scale: { + start: 0.625, + end: 0 + }, + gravityY: 1000, + blendMode: "ADD", + alpha: { + start: 1, + end: 0 + }, + tint: window.mainColor, + emitting: false + }; + this._landEmitter1 = scene.add.particles(0, 0, "GJ_WebSheet", { + ..._0x57911a + }); + this._landEmitter2 = scene.add.particles(0, 0, "GJ_WebSheet", { + ..._0x57911a + }); + this._aboveContainer = scene.add.container(0, 0); + this._aboveContainer.setDepth(13); + this._gameLayer.topContainer.add(this._landEmitter1); + this._gameLayer.topContainer.add(this._landEmitter2); + this._landIdx = false; + this._streak = new StreakManager(this._scene, "streak_01", 0.231, 10, 8, 100, window.secondaryColor, 0.7); + this._streak.addToContainer(this._gameLayer.container, 8); + this._waveTrail = new WaveTrail(this._scene, window.secondaryColor, window.secondaryColor); + this._waveTrail.addToContainer(this._gameLayer.container, 9); + } + _updateParticles(_0xc43238, _0x52b718, _0x5af874) { + if (this.p.isDead) { + return; + } + const _0x119eb7 = this._scene._playerWorldX; + const _0x519d38 = b(this.p.y); + this._particleEmitter.particleX = _0x119eb7 - 20; + this._particleEmitter.particleY = _0x519d38 + (this.p.gravityFlipped ? (-26 + (this.p.isUfo ? -5 : 0)) : (26 + (this.p.isUfo ? 5 : 0))); + const _0x4436ac = this.p.onGround && !this.p.isFlying && !this.p.isWave && !this.p.isSpider; + if (_0x4436ac && !this._particleActive) { + this._particleEmitter.start(); + this._particleActive = true; + } else if (!_0x4436ac && this._particleActive) { + this._particleEmitter.stop(); + this._particleActive = false; + } + { + const _0xe76a85 = Math.cos(this._rotation); + const _0x26ec65 = Math.sin(this._rotation); + const _0x216018 = this.p.isWave ? 0 : (this.p.isUfo ? 0 : -24); + const _0x2baeac = (this.p.isWave ? 4 : (this.p.isUfo ? 5 : 18)) * (this.p.gravityFlipped ? -1 : 1); + const _0x75c380 = _0x119eb7 + _0x216018 * _0xe76a85 - _0x2baeac * _0x26ec65; + const _0x2b31d7 = _0x519d38 + _0x216018 * _0x26ec65 + _0x2baeac * _0xe76a85; + const _0x5d66f4 = (Math.random() * 2 - 1) * 2 * 2; + this._flyParticleEmitter.particleX = _0x75c380; + this._flyParticleEmitter.particleY = _0x2b31d7 + _0x5d66f4; + this._flyParticle2Emitter.particleX = _0x75c380; + this._flyParticle2Emitter.particleY = _0x2b31d7 + _0x5d66f4; + this._streak.setPosition(this.p.isWave ? _0x75c380 : (this.p.isUfo ? _0x75c380 : _0x75c380 + 8), _0x2b31d7); + this._waveTrail.setPosition(_0x119eb7, _0x519d38); + } + this._streak.update(_0x5af874); + this._waveTrail.update(_0x5af874); + const _0x3d69d2 = this.p.isFlying || this.p.isUfo; + if (_0x3d69d2 && !this._flyParticleActive) { + this._flyParticleEmitter.start(); + this._flyParticleActive = true; + } else if (!_0x3d69d2 && this._flyParticleActive) { + this._flyParticleEmitter.stop(); + this._flyParticleActive = false; + } + const _0x169e30 = (this.p.isFlying && this.p.upKeyDown) || (this.p.isUfo && this.p.isJumping); + if (_0x169e30 && !this._flyParticle2Active) { + this._flyParticle2Emitter.start(); + this._flyParticle2Active = true; + } else if (!_0x169e30 && this._flyParticle2Active) { + this._flyParticle2Emitter.stop(); + this._flyParticle2Active = false; + } + const _0x2e5643 = _0xc43238 + this._scene._getMirrorXOffset(_0x119eb7 - _0xc43238); + this._shipDragEmitter.x = _0x2e5643; + this._shipDragEmitter.particleY = this.p.gravityFlipped ? b(this.p.y) + _0x52b718 + 10 : b(this.p.y) + _0x52b718 + 30; + this._shipDragEmitter.setAngle(this.p.mirrored ? { + min: 245, + max: 335 + } : { + min: 205, + max: 295 + }); + this._shipDragEmitter.gravityX = this.p.mirrored ? 700 : -700; + this._shipDragEmitter.setScale(this.p.gravityFlipped ? { x: -1, y: 1 } : { x: 1, y: 1 }); + const _0x2ac9d0 = this.p.isFlying && this.p.onGround && (this.p.gravityFlipped ? this.p.onCeiling : !this.p.onCeiling); + if (_0x2ac9d0 && !this._shipDragActive) { + this._shipDragEmitter.start(); + this._shipDragActive = true; + } else if (!_0x2ac9d0 && this._shipDragActive) { + this._shipDragEmitter.stop(); + this._shipDragActive = false; + } + } + setCubeVisible(_0x411813) { + this._playerSpriteLayer.sprite.setVisible(_0x411813); + if (this._playerGlowLayer) { + this._playerGlowLayer.sprite.setVisible(_0x411813 && this._playerGlowLayer.sprite._glowEnabled); + } + if (this._playerOverlayLayer) { + this._playerOverlayLayer.sprite.setVisible(_0x411813); + } + if (this._playerExtraLayer) { + this._playerExtraLayer.sprite.setVisible(_0x411813); + } + } + setShipVisible(_0x1c5620) { + this._shipSpriteLayer.sprite.setVisible(_0x1c5620); + if (this._shipGlowLayer) { + this._shipGlowLayer.sprite.setVisible(_0x1c5620 && this._shipGlowLayer.sprite._glowEnabled); + } + if (this._shipOverlayLayer) { + this._shipOverlayLayer.sprite.setVisible(_0x1c5620); + } + if (this._shipExtraLayer) { + this._shipExtraLayer.sprite.setVisible(_0x1c5620); + } + } + setBirdVisible(v) { + for (const layer of (this._birdLayers || [])) { + if (layer === this._birdGlowLayer) { + layer.sprite.setVisible(v && layer.sprite._glowEnabled); + } else { + layer.sprite.setVisible(v); + } + } + } + setBallVisible(_0x5685cf) { + if (this._ballSpriteLayer) { + this._ballSpriteLayer.sprite.setVisible(_0x5685cf); + } + if (this._ballGlowLayer) { + this._ballGlowLayer.sprite.setVisible(_0x5685cf && this._ballGlowLayer.sprite._glowEnabled); + } + if (this._ballOverlayLayer) { + this._ballOverlayLayer.sprite.setVisible(_0x5685cf); + } + } + setWaveVisible(_0x2d078b) { + if (this._waveSpriteLayer) { + this._waveSpriteLayer.sprite.setVisible(_0x2d078b); + } + if (this._waveOverlayLayer) { + this._waveOverlayLayer.sprite.setVisible(_0x2d078b); + } + if (this._waveExtraLayer) { + this._waveExtraLayer.sprite.setVisible(_0x2d078b); + } + if (this._waveGlowLayer) { + this._waveGlowLayer.sprite.setVisible(_0x2d078b && this._waveGlowLayer.sprite._glowEnabled); + } + } + setSpiderVisible(v) { + for (const layer of (this._spiderLayers || [])) { + if (layer === this._spiderGlowLayer) { + layer.sprite.setVisible(v && layer.sprite._glowEnabled); + } else { + layer.sprite.setVisible(v); + } + } + } + syncSprites(cameraX, cameraY, _0x3afedf, mirrorOffset) { + if (this._endAnimating) { + return; + } + const _0x7f0705 = mirrorOffset !== undefined ? mirrorOffset : centerX; + const _0x1a433c = b(this.p.y) + cameraY; + const playerRotation = this._rotation; + this._lastCameraX = cameraX; + this._lastCameraY = cameraY; + this._aboveContainer.x = -cameraX; + this._aboveContainer.y = cameraY; +if (this.p.isFlying || this.p.isUfo) { + const _0x3904f8 = 10; + const _miniS = this.p.isMini ? 0.6 : 1; + const playerOffset = this.p.gravityFlipped ? (-30 * _miniS) : (10 * _miniS); + const cosRotation = Math.cos(playerRotation); + const sinRotation = Math.sin(playerRotation); + const mirrored = this.p.mirrored ? -1 : 1; + const _0x1b1d28 = -_0x3904f8 * sinRotation * mirrored; + const _0x185f91 = _0x3904f8 * cosRotation; + const _0x562424 = playerOffset * sinRotation * mirrored; + const _0x3011c9 = -playerOffset * cosRotation; + const _ufoMode = this.p.isUfo && !this.p.isFlying; + if (this.p.isFlying) { + for (const layer of this._shipLayers) { + if (layer) { + const _miniS = this.p.isMini ? 0.6 : 1; + layer.sprite.x = _0x7f0705 + _0x1b1d28; + layer.sprite.y = _0x1a433c + _0x185f91 + (this.p.gravityFlipped ? (-20 * _miniS) : 0) + layer.sprite.rotation = this.p.mirrored ? -playerRotation : playerRotation; + layer.sprite.scaleY = this.p.gravityFlipped ? -_miniS : _miniS; + layer.sprite.scaleX = this.p.mirrored ? -_miniS : _miniS; + } + } + } + if (this.p.isUfo && !this.p.isDead) { + for (const layer of this._birdLayers) { + if (layer) { + layer.sprite.setVisible(true); + layer.sprite.x = _0x7f0705 + _0x1b1d28; + layer.sprite.y = _0x1a433c + _0x185f91 + (this.p.gravityFlipped ? -15 : 5); + layer.sprite.rotation = this.p.mirrored ? -playerRotation : playerRotation; + const _miniS = this.p.isMini ? 0.6 : 1; + layer.sprite.scaleY = this.p.gravityFlipped ? -_miniS : _miniS; + layer.sprite.scaleX = this.p.mirrored ? -_miniS : _miniS; + } + } + } + + for (const playerLayerItem of this._playerLayers) { + if (playerLayerItem) { + const _miniS = this.p.isMini ? 0.6 : 1; + playerLayerItem.sprite.x = _0x7f0705 + _0x562424; + playerLayerItem.sprite.y = (_0x1a433c + _0x3011c9) + (this.p.isMini ? (8 * _miniS) : 0) + (this.p.gravityFlipped ? (-20 * _miniS) : 0); + playerLayerItem.sprite.rotation = this.p.mirrored ? -playerRotation : playerRotation; + const _shipCubeS = _miniS * 0.55; + playerLayerItem.sprite.scaleY = this.p.gravityFlipped ? -_shipCubeS : _shipCubeS; + playerLayerItem.sprite.scaleX = this.p.mirrored ? -_shipCubeS : _shipCubeS; + } + } + if (_ufoMode) { + const _ufoTilt = Math.max(-0.05, Math.min(0.05, -(this.p.y - this.p.lastY) * 0.008)); + for (const layer of this._birdLayers) { + if (layer) { + layer.sprite.rotation = this.p.mirrored ? -_ufoTilt : _ufoTilt; + } + } + for (const playerLayerItem of this._playerLayers) { + if (playerLayerItem) { + playerLayerItem.sprite.rotation = this.p.mirrored ? -_ufoTilt : _ufoTilt; + } + } + } + } else { + for (const layer of this._spiderLayers) { + if (layer) { + layer.sprite.setVisible(false); + } + } + + for (const playerLayer of this._allLayers) { + if (playerLayer) { + playerLayer.sprite.x = _0x7f0705; + playerLayer.sprite.y = _0x1a433c; + const isBallLayer = this._ballLayers.includes(playerLayer); + playerLayer.sprite.rotation = isBallLayer ? playerRotation : (this.p.mirrored ? -playerRotation : playerRotation); + let _miniS = this.p.isMini ? 0.6 : 1; + if (this.p.isWave && this._waveLayers.includes(playerLayer)) { + _miniS *= 0.94; //fix wave size + } + playerLayer.sprite.scaleY = (this.p.gravityFlipped ? -_miniS : _miniS); + playerLayer.sprite.scaleX = (this.p.mirrored ? -_miniS : _miniS); + } + } + for (const layer of this._spiderLayers) { + if (layer) { + layer.sprite.setVisible(false); + } + } + + for (const playerLayer of this._allLayers) { + if (playerLayer) { + playerLayer.sprite.x = _0x7f0705; + playerLayer.sprite.y = _0x1a433c; + const isBallLayer = this._ballLayers.includes(playerLayer); + playerLayer.sprite.rotation = isBallLayer ? playerRotation : (this.p.mirrored ? -playerRotation : playerRotation); + let _miniS = this.p.isMini ? 0.6 : 1; + if (this.p.isWave && this._waveLayers.includes(playerLayer)) { + _miniS *= 0.94; //fix wave size + } + playerLayer.sprite.scaleY = (this.p.gravityFlipped ? -_miniS : _miniS); + playerLayer.sprite.scaleX = (this.p.mirrored ? -_miniS : _miniS); + } + } + } + if (this.p.isWave && this._waveSpriteLayer) { + const _0x3f036a = this.p.mirrored ? 1 : -1; + this._waveSpriteLayer.sprite.x += 1.5 * _0x3f036a; + this._waveSpriteLayer.sprite.y -= 1; + } + this._updateParticles(cameraX, cameraY, _0x3afedf); + + this._updateDashAnimation(_0x3afedf * 1000); + if (this._dashAnimationSprite && this._dashAnimationSprite.visible) { + this._dashAnimationSprite.x = _0x7f0705; + this._dashAnimationSprite.y = _0x1a433c; + const _miniS = this.p.isMini ? 0.6 : 1; + this._dashAnimationSprite.scaleY = this.p.gravityFlipped ? -_miniS : _miniS; + this._dashAnimationSprite.scaleX = _miniS; + } + + if (!this._scene._slideIn){ + if (window.showHitboxes || this.p.isDead && window.hitboxesOnDeath) { + this.drawHitboxes(this._hitboxGraphics, cameraX, cameraY); + } else if (this._hitboxGraphics) { + this._hitboxGraphics.clear(); + } + } + } + enterShipMode(_0xeb37c6 = null, fromCheckpoint = false) { + if (this.p.isFlying) { + return; + } + this.exitBallMode(); + this.exitWaveMode(); + this.p.isFlying = true; + this._scene.toggleGlitter(true); + if (!fromCheckpoint){ // dont mess with y velocity if ur loading a checkpoint + this.p.yVelocity *= 0.5; + } + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.stopRotation(); + this._rotation = 0; + this._particleEmitter.stop(); + this._flyParticle2Active = false; + this._streak.reset(); + this._streak.start(); + this.setWaveVisible(false); + this.setShipVisible(true); + for (const layer of this._playerLayers) { + if (layer) { + layer.sprite.setScale(0.55); + } + } + let spawnY = this.p.y; + if (_0xeb37c6) { + spawnY = _0xeb37c6.portalY !== undefined ? _0xeb37c6.portalY : _0xeb37c6.y; + } + this._gameLayer.setFlyMode(true, spawnY, f, false); + } + exitShipMode() { + if (this.p.isFlying) { + this.p.isFlying = false; + this._scene.toggleGlitter(false); + this.p.yVelocity *= 0.5; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.stopRotation(); + this._rotation = 0; + this._flyParticleEmitter.stop(); + this._flyParticleActive = false; + this._flyParticle2Emitter.stop(); + this._flyParticle2Active = false; + this._shipDragEmitter.stop(); + this._shipDragActive = false; + this._particleActive = false; + this._streak.stop(); + this._streak.reset(); + this.setShipVisible(false); + this.setCubeVisible(!this.p.isBall && !this.p.isWave); + this.setBallVisible(this.p.isBall); + this.setWaveVisible(this.p.isWave); + this.setSpiderVisible(false); + for (const layer of this._playerLayers) { + if (layer) { + layer.sprite.setScale(1); + } + } + this._gameLayer.setFlyMode(false, 0); + } + } + enterBallMode(_0x36bb3d = null) { + if (this.p.isBall) { + return; + } + this.exitWaveMode(); + this.p.isBall = true; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.stopRotation(); + this._rotation = 0; + this.setCubeVisible(false); + this.setWaveVisible(false); + this.setBallVisible(true); + let _0x18df19 = this.p.y; + if (_0x36bb3d) { + _0x18df19 = _0x36bb3d.portalY !== undefined ? _0x36bb3d.portalY : _0x36bb3d.y; + } + this._gameLayer.setFlyMode(true, _0x18df19 + a, f - a * 2, true); + } + exitBallMode() { + if (!this.p.isBall) { + return; + } + this.p.isBall = false; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.stopRotation(); + this._rotation = 0; + this.setBallVisible(false); + this.setWaveVisible(false); + this.setCubeVisible(true); + this._gameLayer.setFlyMode(false, 0); + } + enterWaveMode(_0x5a10cc = null) { + if (this.p.isWave) { + return; + } + this.exitShipMode(); + this.exitBallMode(); + this.p.isWave = true; + this.p.yVelocity = 0; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.stopRotation(); + this._rotation = 0; + this._streak.reset(); + this._streak.start(); + this._waveTrail.reset(); + this._waveTrail.start(); + this.setCubeVisible(false); + this.setBallVisible(false); + this.setShipVisible(false); + this.setWaveVisible(true); + let _0x38b484 = this.p.y; + if (_0x5a10cc) { + _0x38b484 = _0x5a10cc.portalY !== undefined ? _0x5a10cc.portalY : _0x5a10cc.y; + } + this._gameLayer.setFlyMode(true, _0x38b484, f, false); + } + exitWaveMode() { + if (!this.p.isWave) { + return; + } + this.p.isWave = false; + this.p.yVelocity = 0; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.stopRotation(); + this._rotation = 0; + this._streak.stop(); + this._streak.reset(); + this._waveTrail.stop(); + this._waveTrail.reset(); + this.setWaveVisible(false); + this.setCubeVisible(!this.p.isBall && !this.p.isFlying); + this.setBallVisible(this.p.isBall); + this.setShipVisible(this.p.isFlying); + this.setSpiderVisible(false); + this._gameLayer.setFlyMode(false, 0); + } + enterSpiderMode(portal = null) { + if (this.p.isSpider) return; + this.exitShipMode(); + this.exitBallMode(); + this.exitWaveMode(); + this.p.isSpider = true; + this.p.yVelocity = 0; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.p._spiderTeleportPending = false; + this.stopRotation(); + this._rotation = 0; + // use cube icon for spider mode (spider icon not ready yet) + this.setCubeVisible(true); + this.setBallVisible(false); + this.setShipVisible(false); + this.setWaveVisible(false); + this.setSpiderVisible(false); + let _y = this.p.y; + if (portal) _y = portal.portalY !== undefined ? portal.portalY : portal.y; + this._gameLayer.setFlyMode(true, _y + a, f - a * 2, true); + } + exitSpiderMode() { + if (!this.p.isSpider) return; + this.p.isSpider = false; + this.p.yVelocity = 0; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.p._spiderTeleportPending = false; + this.stopRotation(); + this._rotation = 0; + this.setSpiderVisible(false); + this.setCubeVisible(true); + this._gameLayer.setFlyMode(false, 0); + } + enterUfoMode(_portal = null, fromCheckpoint = false) { + if (this.p.isUfo) return; + this.exitBallMode(); + this.exitWaveMode(); + this.exitShipMode(); + this.p.isUfo = true; + this._scene.toggleGlitter(true); + if (!fromCheckpoint){ // dont mess with y velocity if ur loading a checkpoint + this.p.yVelocity *= 0.4; + } + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.stopRotation(); + this._rotation = 0; + this._particleEmitter.stop(); + this._streak.reset(); + this._streak.start(); + this.setBallVisible(false); + this.setShipVisible(false); + this.setWaveVisible(false); + this.setSpiderVisible(false); + this.setBirdVisible(true); + this.setCubeVisible(true); + for (const _layer of this._playerLayers) { + if (_layer) { + _layer.sprite.setScale(0.55); + } + } + let _spawnY = this.p.y; + if (_portal) { + _spawnY = _portal.portalY !== undefined ? _portal.portalY : _portal.y; + } + this._gameLayer.setFlyMode(true, _spawnY, f, false); + } + exitUfoMode() { + if (!this.p.isUfo) return; + this.p.isUfo = false; + this._scene.toggleGlitter(false); + this.p.yVelocity *= 0.5; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.stopRotation(); + this._rotation = 0; + this._flyParticleEmitter.stop(); + this.setCubeVisible(!this.p.isBall && !this.p.isFlying); + this.setBallVisible(this.p.isBall); + this.setShipVisible(this.p.isFlying); + this.setWaveVisible(this.p.isWave); + this.setBirdVisible(false); + this.setSpiderVisible(false); + for (const _0xe1b715 of this._playerLayers) { + if (_0xe1b715) { + _0xe1b715.sprite.setScale(1); + } + } + this._gameLayer.setFlyMode(false, 0); + } + hitGround() { + const _0x4a38a5 = !this.p.onGround; + if (!this.p.isFlying && !this.p.isWave && !this.p.isUfo) { + this.p.lastGroundY = this.p.y; + } + this.p.yVelocity = 0; + this.p.onGround = true; + this.p.canJump = true; + this.p.isJumping = false; + this.p.queuedHold = false; + if (this.p.isBall) { + if (_0x4a38a5) { + this._rotation = Math.round(this._rotation / Math.PI) * Math.PI; + } + } else if (this.p.isSpider) { + if (_0x4a38a5) { + this._rotation = Math.round(this._rotation / Math.PI) * Math.PI; + } + } else if (this.p.isWave) { + this._rotation = 0; + } + this.stopRotation(); + if (_0x4a38a5 && !this.p.isFlying && !this.p.isWave && !this.p.isSpider) { + this._landIdx = !this._landIdx; + const _0x31584b = this._landIdx ? this._landEmitter1 : this._landEmitter2; + const _0x2248d5 = this._scene._playerWorldX; + const _0x17e0bb = this.p.gravityFlipped ? b(this.p.y) - 30 : b(this.p.y) + 30; + _0x31584b.explode(10, _0x2248d5, _0x17e0bb); + } + } + killPlayer() { + if (this.p.isDead) { + return; + } + this.p.isDead = true; + this._scene.toggleGlitter(false); + this._particleEmitter.stop(); + this._particleActive = false; + this._flyParticleEmitter.stop(); + this._flyParticleActive = false; + this._flyParticle2Emitter.stop(); + this._flyParticle2Active = false; + this._shipDragEmitter.stop(); + this._shipDragActive = false; + this._streak.stop(); + this._streak.reset(); + const _0x3f4b84 = this._scene; + const _0x3f0446 = _0x3f4b84._getMirrorXOffset(_0x3f4b84._playerWorldX - _0x3f4b84._cameraX); + const _0x53ac5b = b(this.p.y) + this._lastCameraY; + const _0x281e43 = 0.9; + _0x3f4b84.add.particles(_0x3f0446, _0x53ac5b, "GJ_WebSheet", { + frame: "square.png", + speed: { + min: 200, + max: 800 + }, + angle: { + min: 0, + max: 360 + }, + scale: { + start: 18 / 32, + end: 0 + }, + alpha: { + start: 1, + end: 0 + }, + lifespan: { + min: 50, + max: 800 + }, + quantity: 100, + stopAfter: 100, + blendMode: S, + tint: window.mainColor, + x: { + min: -20, + max: 20 + }, + y: { + min: -20, + max: 20 + } + }).setScrollFactor(0).setDepth(15); + const _0x438d80 = _0x3f4b84.add.graphics().setScrollFactor(0).setDepth(15).setBlendMode(S); + const _0x4683eb = { + t: 0 + }; + _0x3f4b84.tweens.add({ + targets: _0x4683eb, + t: 1, + duration: 500, + ease: "Quad.Out", + onUpdate: () => { + const _0x39f32 = 18 + _0x4683eb.t * 144; + const _0xc8c1 = 1 - _0x4683eb.t; + _0x438d80.clear(); + _0x438d80.fillStyle(window.mainColor, _0xc8c1); + _0x438d80.fillCircle(_0x3f0446, _0x53ac5b, _0x39f32); + }, + onComplete: () => _0x438d80.destroy() + }); + this._createExplosionPieces(_0x3f0446, _0x53ac5b, _0x281e43); + this.setCubeVisible(false); + this.setShipVisible(false); + this.setBallVisible(false); + this.setWaveVisible(false); + this.setBirdVisible(false); + this.setSpiderVisible(false); + } + _createExplosionPieces(_0x49be85, _0x13b56e, _0x349a09) { + const _0x44acaf = this._scene; + const _0x4a9f23 = _0x349a09 * 40; + const sliderBar = Math.round(_0x4a9f23 * 2); + const _0x26dcbd = _0x44acaf.make.renderTexture({ + x: 0, + y: 0, + width: sliderBar, + height: sliderBar, + add: false + }); + const _0x5c571a = [this._playerGlowLayer, this._playerOverlayLayer, this._ballGlowLayer, this._ballOverlayLayer, this._waveGlowLayer, this._waveOverlayLayer, this._waveExtraLayer, this._shipGlowLayer, this._shipOverlayLayer, this._playerSpriteLayer, this._playerExtraLayer, this._ballSpriteLayer, this._waveSpriteLayer, this._shipSpriteLayer, this._shipExtraLayer, this._birdSpriteLayer, this._birdGlowLayer, this._birdOverlayLayer, this._birdExtraLayer]; + for (const _0x1f09e3 of _0x5c571a) { + if (!_0x1f09e3) { + continue; + } + if (!_0x1f09e3.sprite.visible) { + continue; + } + const _0x53102a = _0x1f09e3.sprite; + _0x26dcbd.draw(_0x53102a, sliderBar / 2 + (_0x53102a.x - _0x49be85), sliderBar / 2 + (_0x53102a.y - _0x13b56e)); + } + const _0xd0201e = "__deathRT_" + Date.now(); + _0x26dcbd.saveTexture(_0xd0201e); + const _0x5a2621 = _0x44acaf.textures.get(_0xd0201e); + let _0x28c600 = 2 + Math.round(Math.random() * 2); + let _0x247253 = 2 + Math.round(Math.random() * 2); + const _0x5b9267 = Math.random(); + if (_0x5b9267 > 0.95) { + _0x28c600 = 1; + } else if (_0x5b9267 > 0.9) { + _0x247253 = 1; + } + const _0x1e8c09 = 7.4779225920000005; + const _0x422587 = _0x1e8c09 * 0.5; + const _0x1e87b0 = _0x1e8c09 * 1; + const _0x4dd9c4 = 0.45; + const _0x5e8097 = sliderBar / _0x28c600; + const _0x5af9d3 = sliderBar / _0x247253; + const _0xe9c860 = []; + const _0x3215fa = []; + const _0x416e63 = [0]; + const _0x57d0dc = [0]; + let _0x44e1e1 = 0; + let _0x38011e = 0; + for (let _0x3f4d44 = 0; _0x3f4d44 < _0x28c600 - 1; _0x3f4d44++) { + const _0x5b2c12 = Math.round(_0x5e8097 * (0.55 + Math.random() * _0x4dd9c4 * 2)); + _0xe9c860.push(_0x5b2c12); + _0x44e1e1 += _0x5b2c12; + _0x416e63.push(_0x44e1e1); + } + _0xe9c860.push(sliderBar - _0x44e1e1); + for (let _0x325ce1 = 0; _0x325ce1 < _0x247253 - 1; _0x325ce1++) { + const _0x37f0ad = Math.round(_0x5af9d3 * (0.55 + Math.random() * _0x4dd9c4 * 2)); + _0x3215fa.push(_0x37f0ad); + _0x38011e += _0x37f0ad; + _0x57d0dc.push(_0x38011e); + } + _0x3215fa.push(sliderBar - _0x38011e); + this._explosionPieces = []; + this._explosionContainer = _0x44acaf.add.container(_0x49be85, _0x13b56e).setDepth(16); + let _0x156c8b = 0; + for (let _0x4cd06e = 0; _0x4cd06e < _0x28c600; _0x4cd06e++) { + const _0x5c6aa9 = _0xe9c860[_0x4cd06e]; + const _0x43a4e9 = _0x416e63[_0x4cd06e]; + for (let _0x5b14cf = 0; _0x5b14cf < _0x247253; _0x5b14cf++) { + const _0x20847a = _0x3215fa[_0x5b14cf]; + const _0x20396e = _0x57d0dc[_0x5b14cf]; + if (_0x5c6aa9 <= 0 || _0x20847a <= 0) { + continue; + } + _0x156c8b++; + const _0x526d03 = "piece_" + _0x4cd06e + "_" + _0x5b14cf; + _0x5a2621.add(_0x526d03, 0, _0x43a4e9, _0x20396e, _0x5c6aa9, _0x20847a); + const _0xba83f5 = _0x44acaf.add.image(0, 0, _0xd0201e, _0x526d03); + _0xba83f5.x = _0x43a4e9 + _0x5c6aa9 / 2 - sliderBar / 2; + _0xba83f5.y = -(_0x20396e + _0x20847a / 2 - sliderBar / 2); + this._explosionContainer.add(_0xba83f5); + let _0x298d34 = null; + if (_0x156c8b % 2 == 0) { + const _0x367bdb = 200 + Math.random() * 200; + const _0x5e5fa8 = _0xba83f5; + _0x298d34 = _0x44acaf.add.particles(0, 0, "GJ_WebSheet", { + frame: "square.png", + speed: 0, + scale: { + start: 0.5, + end: 0 + }, + alpha: { + start: 1, + end: 0 + }, + lifespan: _0x367bdb, + frequency: 25, + quantity: 1, + emitting: true, + blendMode: S, + tint: window.mainColor, + emitCallback: _0x2f7fc7 => { + _0x2f7fc7.x = _0x5e5fa8.x + (Math.random() * 2 - 1) * 3 * 2; + _0x2f7fc7.y = _0x5e5fa8.y + (Math.random() * 2 - 1) * 3 * 2; + } + }); + this._explosionContainer.addAt(_0x298d34, 0); + } + const _0x159cfa = { + spr: _0xba83f5, + particle: _0x298d34, + xVel: (_0x422587 + (Math.random() * 2 - 1) * _0x1e87b0) * (this.p.mirrored ? -1 : 1), + yVel: -(12 + (Math.random() * 2 - 1) * 6), + timer: 1.4, + fadeTime: 0.5, + rotDelta: (Math.random() * 2 - 1) * 360 / 60, + halfSize: Math.min(_0x5c6aa9, _0x20847a) / 2 + }; + this._explosionPieces.push(_0x159cfa); + } + } + this._explosionGroundSY = b(0) + this._lastCameraY; + this._explosionRT = _0x26dcbd; + this._explosionTexKey = _0xd0201e; + } + updateExplosionPieces(_0x1c8c6d) { + if (!this._explosionPieces || this._explosionPieces.length === 0) { + return; + } + const _0x1ed0a8 = _0x1c8c6d / 1000; + const _0x3e389c = Math.min(_0x1ed0a8 * 60 * 0.9, 2); + const _0x59eafe = _0x3e389c * 0.5 * 2; + const _0x5a7549 = this._explosionGroundSY - this._explosionContainer.y; + let _0x4284b0 = 0; + while (_0x4284b0 < this._explosionPieces.length) { + const particleX = this._explosionPieces[_0x4284b0]; + particleX.timer -= _0x1ed0a8; + if (particleX.timer > 0) { + { + particleX.yVel += _0x59eafe; + particleX.xVel *= 0.98 + (1 - _0x3e389c) * 0.02; + let _0x57034b = particleX.spr.x + particleX.xVel * _0x3e389c; + let _0x4c0481 = particleX.spr.y + particleX.yVel * _0x3e389c; + const _0x3f6377 = _0x5a7549 - particleX.halfSize; + if (_0x4c0481 > _0x3f6377 && particleX.yVel > 0) { + _0x4c0481 = _0x3f6377; + particleX.yVel *= -0.8; + if (Math.abs(particleX.yVel) < 3) { + particleX.yVel = -3; + } + } + particleX.spr.x = _0x57034b; + particleX.spr.y = _0x4c0481; + particleX.spr.angle += particleX.rotDelta * _0x3e389c; + if (particleX.timer < particleX.fadeTime) { + const _0x2d8b5f = particleX.timer / particleX.fadeTime; + particleX.spr.setAlpha(_0x2d8b5f); + if (particleX.particle) { + particleX.particle.setAlpha(_0x2d8b5f); + } + } + } + _0x4284b0++; + } else { + if (particleX.particle) { + particleX.particle.stop(); + particleX.particle.destroy(); + } + particleX.spr.destroy(); + this._explosionPieces.splice(_0x4284b0, 1); + } + } + if (this._explosionPieces.length === 0) { + this._cleanupExplosion(); + } + } + _cleanupExplosion() { + if (this._explosionPieces) { + for (const _0x59172d of this._explosionPieces) { + if (_0x59172d.particle) { + _0x59172d.particle.stop(); + _0x59172d.particle.destroy(); + } + if (_0x59172d.spr) { + _0x59172d.spr.destroy(); + } + } + } + if (this._explosionContainer) { + this._explosionContainer.destroy(); + this._explosionContainer = null; + } + if (this._explosionTexKey) { + this._scene.textures.remove(this._explosionTexKey); + this._explosionTexKey = null; + } + if (this._explosionRT) { + this._explosionRT.destroy(); + this._explosionRT = null; + } + this._explosionPieces = null; + } + _playPortalShine(_0x49e81f, type = 1) { + const _0x4ed8ff = this._scene; + const _0xf31b0d = _0x49e81f.x; + const _0x3824c0 = b(_0x49e81f.portalY); + + const typeStr = (type === 1) ? "02" : "01"; + const _0x19c6b0 = [ + `portalshine_${typeStr}_front_001.png`, + `portalshine_${typeStr}_back_001.png` + ]; + + const _0x5d636a = [this._gameLayer.topContainer, this._gameLayer.container]; + for (let _0x34fd8c = 0; _0x34fd8c < 2; _0x34fd8c++) { + const _0x4bfe30 = getAtlasFrame(_0x4ed8ff, _0x19c6b0[_0x34fd8c]); + if (!_0x4bfe30) { + continue; + } + const pieceSize = _0x4ed8ff.add.image(_0xf31b0d, _0x3824c0, _0x4bfe30.atlas, _0x4bfe30.frame); + pieceSize.setBlendMode(S); + pieceSize.setAlpha(0); + pieceSize.angle = _0x49e81f.rotationDegrees; + _0x5d636a[_0x34fd8c].add(pieceSize); + _0x4ed8ff.tweens.add({ + targets: pieceSize, + alpha: { + from: 0, + to: 1 + }, + duration: 50, + onComplete: () => { + _0x4ed8ff.tweens.add({ + targets: pieceSize, + alpha: 0, + duration: 400, + onComplete: () => pieceSize.destroy() + }); + } + }); + } + } + + // teleport portals + _findTeleportOut(fromPortal) { + // blue tp portal shares same X with orange + const sections = this._gameLayer && this._gameLayer._collisionSections; + if (!sections) { + return null; + } + + const SECTION_SIZE = 400; + const startSec = Math.max(0, Math.floor(fromPortal.x / SECTION_SIZE)); + const endSec = sections.length - 1; + + let bestOut = null; + let bestDist = Infinity; + + for (let si = startSec; si <= endSec; si++) { + const sec = sections[si]; + if (!sec) continue; + for (const obj of sec) { + if ((obj.type === "portal_teleport_out" || obj.sub === "teleport_out") && + obj !== fromPortal) { + const dist = obj.x - fromPortal.x; + const xDiff = Math.abs(obj.x - fromPortal.x); + + if (xDiff < 200 && dist >= 0 && dist < bestDist) { + bestDist = dist; + bestOut = obj; + } + } + } + } + + return bestOut; + } + + _teleportPlayer(toPortal) { + // only change Y pos, not X + const targetY = toPortal.portalY !== undefined ? toPortal.portalY : toPortal.y; + + this.p.y = targetY; + this.p.lastY = targetY; + this.p.lastGroundPosY = targetY; + + // reducing velocity after you teleport + this.p.vy *= 0.8; + this.p.yVelocity *= 0.8; + + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + + this._playPortalShine(toPortal, 1); + } + + _checkSnapJump(_0x1f801b) { + const _0x483058 = [{ + dx: 240, + dy: 60 + }, { + dx: 300, + dy: -60 + }, { + dx: 180, + dy: 120 + }]; + const _0x2b806a = this._lastLandObject; + if (_0x2b806a && _0x2b806a !== _0x1f801b && _0x2b806a.type === solidType) { + const _0x34ef27 = _0x2b806a.x; + const _0x4652bb = _0x2b806a.y; + const _0x5de781 = _0x1f801b.x; + const _0x21ad88 = _0x1f801b.y; + const _0x1b1831 = this.p.gravityFlipped ? -1 : 1; + let _0x372d4e = false; + for (const _0x31d5e4 of _0x483058) { + if (Math.abs(_0x5de781 - (_0x34ef27 + _0x31d5e4.dx)) <= 2 && Math.abs(_0x21ad88 - (_0x4652bb + _0x31d5e4.dy * _0x1b1831)) <= 2) { + _0x372d4e = true; + break; + } + } + if (_0x372d4e) { + const _0x4ca454 = _0x1f801b.x + this._lastXOffset; + const _0x48aba3 = this._scene._playerWorldX; + let _0x5f2847; + _0x5f2847 = Math.abs(_0x4ca454 - _0x48aba3) <= 2 ? _0x4ca454 : _0x4ca454 > _0x48aba3 ? _0x48aba3 + 2 : _0x48aba3 - 2; + this._scene._playerWorldX = _0x5f2847; + } + } + this._lastLandObject = _0x1f801b; + this._lastXOffset = this._scene._playerWorldX - _0x1f801b.x; + } + _isFallingPastThreshold() { + if (this.p.gravityFlipped) { + return this.p.yVelocity > 0.25; + } else { + return this.p.yVelocity < -0.25; + } + } + flipMod() { + if (this.p.gravityFlipped) { + return -1; + } else { + return 1; + } + } + flipGravity(flipped, _0x11bbde = 0.5) { + if (this.p.gravityFlipped === flipped) { + return; + } + this.p.gravityFlipped = flipped; + this.p.yVelocity *= _0x11bbde; + this.p.onGround = false; + this.p.canJump = false; + } + runRotateAction() { + this.rotateActionActive = true; + this.rotateActionTime = 0; + const _miniDurScale = this.p.isMini ? (1 / 1.4) : 1; + this.rotateActionDuration = (0.39 / d) * _miniDurScale; + this.rotateActionStart = this._rotation; + this.rotateActionTotal = Math.PI * this.flipMod(); + } + updateDashRotation(dt) { + const spinSpeed = Math.PI * 6.0 * this.flipMod(); + this._rotation += spinSpeed * dt; + } + stopRotation() { + this.rotateActionActive = false; + } + updateRotateAction(_0x98044d) { + if (!this.rotateActionActive) { + return; + } + this.rotateActionTime += _0x98044d; + if (this.rotateActionTime >= this.rotateActionDuration) { + this.rotateActionActive = false; + } + let _0xb1cb91 = Math.min(this.rotateActionTime / this.rotateActionDuration, 1); + this._rotation = this.rotateActionStart + this.rotateActionTotal * _0xb1cb91; + } + convertToClosestRotation() { + let _0x5f531c = Math.PI / 2; + return Math.round(this._rotation / _0x5f531c) * _0x5f531c; + } + slerp2D(startAngle, endAngle, t) { + let halfStart = startAngle * 0.5; + let halfEnd = endAngle * 0.5; + let cosStart = Math.cos(halfStart); + let sinStart = Math.sin(halfStart); + let cosEnd = Math.cos(halfEnd); + let sinEnd = Math.sin(halfEnd); + let dot = (cosStart * cosEnd) + (sinStart * sinEnd); + let weightStart, weightEnd; + if (dot < 0.0) { + dot = -dot; + sinEnd = -sinEnd; + cosEnd = -cosEnd; + } + if (1.0 - dot > 0.0001) { + let theta = Math.acos(dot); + let sinTheta = Math.sin(theta); + weightStart = Math.sin(theta * (1.0 - t)) / sinTheta; + weightEnd = Math.sin(theta * t) / sinTheta; + } else { + weightStart = 1.0 - t; + weightEnd = t; + } + let interpSin = (sinStart * weightStart) + (sinEnd * weightEnd); + let interpCos = (cosStart * weightStart) + (cosEnd * weightEnd); + let out = Math.atan2(interpSin, interpCos); + return out + out; + } + updateGroundRotation(_0x5c24f7) { + if (this.p.isBall || this.p.isWave || this.p.isSpider) { + return; + } + let _0x183c2a = this.convertToClosestRotation(); + let _0x108955 = 0.47250000000000003; + let _0x17a9a6 = Math.min(_0x5c24f7 * 1, _0x108955 * _0x5c24f7); + this._rotation = this.slerp2D(this._rotation, _0x183c2a, _0x17a9a6); + } + updateBallRoll(_0x1dd8af, onSurface) { + const gravityDir = this.p.gravityFlipped ? -1 : 1; + const rollDir = this.p.mirrored ? -gravityDir : gravityDir; + const speedFactor = onSurface ? 0.5 : 0.35; + const miniRollScale = this.p.isMini ? 1 / 0.8 : 1; + this._rotation += _0x1dd8af / (g / 2) * gravityDir * speedFactor * miniRollScale; + } + updateShipRotation(_0x217ad3) { + let _0x48f422 = -(this.p.y - this.p.lastY); + let _0x58cb3a = _0x217ad3 * 10.3860036; + if (_0x58cb3a * _0x58cb3a + _0x48f422 * _0x48f422 >= _0x217ad3 * 0.6) { + let _0x5e6a2b = Math.atan2(_0x48f422, _0x58cb3a); + let _0x2371ed = 0.15; + let _0x1857d4 = Math.min(_0x217ad3 * 1, _0x2371ed * _0x217ad3); + this._rotation = this.slerp2D(this._rotation, _0x5e6a2b, _0x1857d4); + } + } + playerIsFalling() { + if (this.p.gravityFlipped) { + return this.p.yVelocity > p; + } else { + return this.p.yVelocity < p; + } + } + updateJump(_0x3d1c6f) { + if (this.p.pendingVelocity !== null) { + this.p.yVelocity = this.p.pendingVelocity; + this.p.pendingVelocity = null; + } + if (this.p.isDashing) { + if (!this.p.upKeyDown || this.p.onGround) { + this.p.isDashing = false; + this.p.dashYVelocity = 0; + } else { + this.p.yVelocity = this.p.dashYVelocity; + return; + } + } + if (this.p.isFlying) { + this._updateFlyJump(_0x3d1c6f); + } else if (this.p.isWave) { + this._updateWaveJump(); + } else if (this.p.isBall) { + this._updateBallJump(_0x3d1c6f); + } else if (this.p.isUfo) { + this._updateUfoJump(_0x3d1c6f); + } else if (this.p.isSpider) { + this._updateSpiderJump(_0x3d1c6f); + } else if (this.p.upKeyDown && this.p.canJump) { + this.p.isJumping = true; + this.p.onGround = false; + this.p.canJump = false; + this.p.upKeyPressed = false; + this.p.queuedHold = false; + this.p.yVelocity = this.flipMod() * 22.360064 * (this.p.isMini ? 0.8 : 1); + this.runRotateAction(); + } else if (this.p.isJumping) { + this.p.yVelocity -= p * _0x3d1c6f * this.flipMod(); + if (this.playerIsFalling()) { + this.p.isJumping = false; + this.p.onGround = false; + } + } else { + if (this.playerIsFalling()) { + this.p.canJump = false; + } + this.p.yVelocity -= p * _0x3d1c6f * this.flipMod(); + if (this.p.gravityFlipped) { + this.p.yVelocity = Math.min(this.p.yVelocity, 30); + } else { + this.p.yVelocity = Math.max(this.p.yVelocity, -30); + } + if (this._isFallingPastThreshold() && !this.rotateActionActive) { + this.runRotateAction(); + } + if (this.playerIsFalling()) { + let _0x47ed2a; + _0x47ed2a = this.p.gravityFlipped ? this.p.yVelocity > p * 2 : this.p.yVelocity < -(p * 2); + if (_0x47ed2a) { + this.p.onGround = false; + } + } + } + } + _updateFlyJump(_0x130c46) { + const _shipMiniScale = this.p.isMini ? 1.176470588 : 1; + let _0x203040 = 0.8; + if (this.p.upKeyDown) { + _0x203040 = -1; + } + if (!this.p.upKeyDown && !this.playerIsFalling()) { + _0x203040 = 1.2; + } + let _0x2d237f = 0.4; + if (this.p.upKeyDown && this.playerIsFalling()) { + _0x2d237f = 0.5; + } + this.p.yVelocity -= p * _0x130c46 * this.flipMod() * _0x203040 * _0x2d237f * _shipMiniScale; + if (this.p.upKeyDown) { + this.p.onGround = false; + } + if (!this.p.wasBoosted) { + if (this.p.gravityFlipped) { + this.p.yVelocity = Math.max(this.p.yVelocity, -16 * _shipMiniScale); + this.p.yVelocity = Math.min(this.p.yVelocity, 12.8 * _shipMiniScale); + } else { + this.p.yVelocity = Math.max(this.p.yVelocity, -12.8 * _shipMiniScale); + this.p.yVelocity = Math.min(this.p.yVelocity, 16 * _shipMiniScale); + } + } + } +_updateBallJump(_0x2fe319) { + const _0x144266 = p * 0.6; + if (this.p.upKeyPressed && this.p.canJump) { + const _0x47d739 = this.flipMod(); + this.p.upKeyPressed = false; + this.p.yVelocity = _0x47d739 * 22.360064 * (this.p.isMini ? 0.8 : 1); + this.flipGravity(!this.p.gravityFlipped); + this.p.onGround = false; + this.p.canJump = false; + this.p.yVelocity *= 0.6; + return; + } + if (this.playerIsFalling()) { + this.p.canJump = false; + } + this.p.yVelocity -= _0x144266 * _0x2fe319 * this.flipMod(); + if (this.p.gravityFlipped) { + this.p.yVelocity = Math.min(this.p.yVelocity, 30); + } else { + this.p.yVelocity = Math.max(this.p.yVelocity, -30); + } + if (this.playerIsFalling()) { + const _0x1439be = this.p.gravityFlipped ? this.p.yVelocity > p * 2 : this.p.yVelocity < -(p * 2); + if (_0x1439be) { + this.p.onGround = false; + } + } + } +_updateWaveJump() { + const _baseSpeed = this.p.isMini ? 22.7720072 : 11.3860036; + const _speedMod = (playerSpeed / 11.540004); + const _waveVel = _baseSpeed * _speedMod; + const isPushingUp = this.p.upKeyDown; + let _0x312a7f = (isPushingUp ? 1 : -1) * this.flipMod() * _waveVel; + + if (this.p.onGround || this.p.onCeiling) { + const movingAwayFromCeiling = this.p.onCeiling && !isPushingUp; + const movingAwayFromFloor = this.p.onGround && isPushingUp; + + if (movingAwayFromCeiling || movingAwayFromFloor) { + this.p.onGround = false; + this.p.onCeiling = false; + } else { + _0x312a7f = 0; + } + } + + this.p.yVelocity = _0x312a7f; + this.p.canJump = false; + this.p.isJumping = false; + + const _waveAngle = this.p.isMini ? Math.atan(0.5) : Math.PI / 4; + this._rotation = _0x312a7f === 0 ? 0 : _0x312a7f > 0 ? -_waveAngle : _waveAngle; +} + _updateUfoJump(_dt) { + const _ufoJump = this.p.isMini ? 13.296 : 13.742; + const _ufoThreshold = 3.832796; + const _ufoFastGrav = this.p.isMini ? 0.634524 : 0.540121; + const _ufoSlowGrav = this.p.isMini ? 0.421624 : 0.359973; + const _ufoUpVel = this.p.yVelocity * this.flipMod(); + const _ufoGrav = _ufoUpVel > _ufoThreshold ? _ufoFastGrav : _ufoSlowGrav; + this.p.yVelocity -= p * _ufoGrav * _dt * this.flipMod(); + if (this.p.upKeyPressed) { + this.p.upKeyPressed = false; + this.p.yVelocity = _ufoJump * this.flipMod(); + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = true; + try { + this._flyParticle2Emitter.explode(6, this._scene._playerWorldX, b(this.p.y) + (this.p.gravityFlipped ? -18 : 18)); + } catch(e) {} + } + if (!this.p.wasBoosted) { + const _ufoMaxUp = this.p.isMini ? 18.824 : 16; + const _ufoMaxFall = this.p.isMini ? 15.058 : 12.8; + if (this.p.gravityFlipped) { + this.p.yVelocity = Math.max(this.p.yVelocity, -_ufoMaxUp); + this.p.yVelocity = Math.min(this.p.yVelocity, _ufoMaxFall); + } else { + this.p.yVelocity = Math.max(this.p.yVelocity, -_ufoMaxFall); + this.p.yVelocity = Math.min(this.p.yVelocity, _ufoMaxUp); + } + } + if (this.p.upKeyDown) { + this.p.onGround = false; + } + if (this.p.isJumping && this.playerIsFalling()) { + this.p.isJumping = false; + } + } + _updateSpiderJump(dt) { + const playerSize = this.p.isMini ? 18 : 30; + const _miniGrav = this.p.isMini ? 1.4 : 1; + const _gravAmt = p * 0.6 * _miniGrav; + if (this.p.upKeyPressed && this.p.canJump) { + this.p.upKeyPressed = false; + this.p.queuedHold = false; + const _floorY = this._gameLayer.getFloorY(); + const _ceilY = this._gameLayer.getCeilingY(); + let nearestSurfaceY; + if (!this.p.gravityFlipped) { + nearestSurfaceY = _ceilY !== null ? _ceilY : Infinity; + const playerWorldX = this._scene._playerWorldX; + const nearbyObjects = this._gameLayer.getNearbySectionObjects(playerWorldX); + for (const obj of nearbyObjects) { + if (obj.type === "solid" && obj.y < this.p.y) { + const objTop = obj.y - obj.h / 2; + if (objTop > nearestSurfaceY || nearestSurfaceY === null) { + nearestSurfaceY = objTop; + } + } + } + } else { + nearestSurfaceY = _floorY; + const playerWorldX = this._scene._playerWorldX; + const nearbyObjects = this._gameLayer.getNearbySectionObjects(playerWorldX); + for (const obj of nearbyObjects) { + if (obj.type === "solid" && obj.y > this.p.y) { + const objBottom = obj.y + obj.h / 2; + if (objBottom < nearestSurfaceY || nearestSurfaceY === null) { + nearestSurfaceY = objBottom; + } + } + } + } + + if (!this.p.gravityFlipped) { + if (isFinite(nearestSurfaceY)) { + this.p.y = nearestSurfaceY - playerSize; + this.flipGravity(true, 1.0); + this.p.yVelocity = 0; + } else { + this.p.yVelocity = playerSpeed; + } + } else { + if (isFinite(nearestSurfaceY)) { + this.p.y = nearestSurfaceY + playerSize; + this.flipGravity(false, 1.0); + this.p.yVelocity = 0; + } else { + this.p.yVelocity = -playerSpeed; + } + } + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.runRotateAction(); + return; + } + if (this.playerIsFalling()) { + this.p.canJump = false; + } + this.p.yVelocity -= _gravAmt * dt * this.flipMod(); + if (this.p.gravityFlipped) { + this.p.yVelocity = Math.min(this.p.yVelocity, 30); + } else { + this.p.yVelocity = Math.max(this.p.yVelocity, -30); + } + if (this.playerIsFalling()) { + const _pastThreshold = this.p.gravityFlipped + ? this.p.yVelocity > p * 2 + : this.p.yVelocity < -(p * 2); + if (_pastThreshold) { + this.p.onGround = false; + } + } + } + checkCollisions(_0x2f5078) { + this.noclipStats.totalFrames++; + this.p.diedThisFrame = false; + const playerSize = this.p.isMini ? 18 : 30; + const waveHitSize = this.p.isMini ? 6 : 9; + const pieceWidth = _0x2f5078 + centerX; + const playersY = this.p.y; + const playersLastY = this.p.lastY; + const gamemodeAddition = this.p.isFlying || this.p.isWave || this.p.isUfo ? 12 : 20; + this.p.collideTop = 0; + this.p.collideBottom = 0; + this.p.onCeiling = false; + this.p.touchingRing = false; + let _0x30410f = false; + let _boostedThisStep = false; + const _0x198534 = this._gameLayer.getNearbySectionObjects(pieceWidth); + for (let gameObj of _0x198534) { + let left = gameObj.x - gameObj.w / 2; + let right = gameObj.x + gameObj.w / 2; + let top = gameObj.y - gameObj.h / 2; + let bottom = gameObj.y + gameObj.h / 2; + const rad = gameObj.rotationDegrees * Math.PI / 180; + const cos = Math.cos(rad); + const sin = Math.sin(rad); + const halfW = gameObj.w / 2; + const halfH = gameObj.h / 2; + const rotatedHalfWidth = Math.abs(halfW * cos) + Math.abs(halfH * sin); + const rotatedHalfHeight = Math.abs(halfW * sin) + Math.abs(halfH * cos); + let rotatedLeft = gameObj.x - rotatedHalfWidth; + let rotatedRight = gameObj.x + rotatedHalfWidth; + let rotatedTop = gameObj.y - rotatedHalfHeight; + let rotatedBottom = gameObj.y + rotatedHalfHeight; + const _broadSize = this.p.isWave ? waveHitSize : playerSize; + const _hasCircleHitbox = gameObj.hitbox_radius !== undefined && gameObj.hitbox_radius !== null; + let _broadPhaseHit; + if (_hasCircleHitbox) { + const _dx = pieceWidth - gameObj.x; + const _dy = playersY - gameObj.y; + _broadPhaseHit = (_dx * _dx + _dy * _dy) <= (gameObj.hitbox_radius + _broadSize) * (gameObj.hitbox_radius + _broadSize); + } else { + _broadPhaseHit = !(pieceWidth + _broadSize <= rotatedLeft) && !(pieceWidth - _broadSize >= rotatedRight) && !(playersY + _broadSize <= rotatedTop) && !(playersY - _broadSize >= rotatedBottom); + } + if (_broadPhaseHit) { + const _colType = gameObj.type; + if (this.p.ignorePortals && (_colType.startsWith("portal_") || _colType === "speed")) { + gameObj.activated = true; + continue; + } + if (_colType === "portal_fly") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.exitBallMode(); + this.exitWaveMode(); + this.exitShipMode(); + this.exitUfoMode(); + this.enterShipMode(gameObj); + } + } else if (_colType === portalWaveType) { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.exitBallMode(); + this.exitShipMode(); + this.exitWaveMode(); + this.exitUfoMode(); + this.enterWaveMode(gameObj); + } + } else if (_colType === portalUfoType) { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.exitBallMode(); + this.exitWaveMode(); + this.exitShipMode(); + this.enterUfoMode(gameObj); + } + } else if (_colType === "portal_cube") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.exitShipMode(); + this.exitBallMode(); + this.exitWaveMode(); + this.exitUfoMode(); + } + } else if (_colType === "portal_ball") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.exitShipMode(); + this.exitWaveMode(); + this.exitUfoMode(); + this.exitBallMode(); + this.enterBallMode(gameObj); + } + } else if (_colType === "portal_spider") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.exitShipMode(); + this.exitBallMode(); + this.exitWaveMode(); + this.exitUfoMode(); + this.exitSpiderMode(); + this.enterSpiderMode(gameObj); + } + } else if (_colType === "portal_teleport_in" || gameObj.sub === "teleport_in") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + const teleportOut = this._findTeleportOut(gameObj); + if (teleportOut) { + this._teleportPlayer(teleportOut); + } + } + } else if (_colType === "portal_teleport_out" || gameObj.sub === "teleport_out") { + if (!gameObj.activated) { + gameObj.activated = true; + } + } else if (_colType === "portal_gravity_down") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj, 2); + this.flipGravity(false, 0.5); + } + } else if (_colType === "portal_gravity_up") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj, 2); + this.flipGravity(true, 0.5); + } + } else if (_colType === "portal_gravity_toggle") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj, 2); + this.flipGravity(!this.p.gravityFlipped, 0.5); + } + } else if (_colType === "portal_mirror_on") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.p.mirrored = true; + } + } else if (_colType === "portal_mirror_off") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.p.mirrored = false; + } + } else if (_colType === "portal_mini_on") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.p.isMini = true; + } + } else if (_colType === "portal_mini_off") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this.p.isMini = false; + } + } else if (_colType === "portal_dual_on") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this._scene._enableDualMode(); + } + } else if (_colType === "portal_dual_off") { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + this._scene._disableDualMode(); + } + } else if (_colType === speedType) { + if (!gameObj.activated) { + gameObj.activated = true; + this._playPortalShine(gameObj); + if (typeof gameObj.speedValue === "number") { + playerSpeed = gameObj.speedValue; + } + } + } else if (_colType === jumpPadType) { + if (!gameObj.activated) { + gameObj.activated = true; + const _padId = gameObj.padId; + if (_padId === 67) { + const now = Date.now(); + if (!window.lastbluepad) { + window.lastbluepad = 0; + } + if (now - window.lastbluepad < 20) { + continue; + } + window.lastbluepad = now; + } + const _grav = 2; + const _fm = this.flipMod(); + let _padVel = 0; + let _padFlip = false; + let _padNextTickVel = null; + if (_padId === 3005) { + const _spFloor = this._gameLayer.getFloorY(); + const _spCeil = this._gameLayer.getCeilingY() || f; + if (!this.p.gravityFlipped) { + this.p.y = _spCeil - playerSize; + } else { + this.p.y = _spFloor + playerSize; + } + this.flipGravity(!this.p.gravityFlipped, 1.0); + this.p.yVelocity = 0; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + _boostedThisStep = true; + } else { + if (this.p.isFlying) { + if (_padId === 35) { _padVel = 16 * _grav; _padNextTickVel = _fm * 8 * _grav; } + else if (_padId === 140) { _padVel = 5.6 * _grav; } + else if (_padId === 1332) { _padVel = 10.08 * _grav; } + else if (_padId === 67) { _padVel = 15.0 * _grav; _padFlip = true; } + } else if (this.p.isUfo) { + if (_padId === 35) { _padVel = this.p.isMini ? 25.6 : 16; } + else if (_padId === 140) { _padVel = this.p.isMini ? 10.237037 : 12.8; } + else if (_padId === 1332) { _padVel = this.p.isMini ? 25.6 : 16; } + else if (_padId === 67) { _padVel = this.p.isMini ? 20.48 : 25.6; _padFlip = true; } + } else if (this.p.isBall) { + if (_padId === 35) { _padVel = 9.6 * _grav; } + else if (_padId === 140) { _padVel = 6.72 * _grav; } + else if (_padId === 1332) { _padVel = 12 * _grav; } + else if (_padId === 67) { _padVel = 10.0 * _grav; _padFlip = true; } + if (this.p.isMini) { + _padVel *= 0.8; + } + } else { + if (_padId === 35) { _padVel = 16 * _grav; } + else if (_padId === 140) { _padVel = 10.4 * _grav; } + else if (_padId === 1332) { _padVel = 20 * _grav; } + else if (_padId === 67) { _padVel = 15.0 * _grav; _padFlip = true; } + if (!this.p.isUfo && !this.p.isSpider && !this.p.isRobot && this.p.isMini) { + _padVel *= 0.8; + } + } + this.p.isJumping = true; + this.p.onGround = false; + this.p.canJump = false; + this.p.yVelocity = _fm * _padVel; + if (_padFlip) { + this.flipGravity(!this.p.gravityFlipped); + } + if (_padNextTickVel !== null) { + this.p.pendingVelocity = _padNextTickVel; + } + this.runRotateAction(); + _boostedThisStep = true; + } + } + } else if (_colType === jumpRingType) { + const _orbId = gameObj.orbId; + const _isDash = (_orbId === 1704 || _orbId === 1751); + const justPressed = this.p.upKeyDown && !this.p.wasUpKeyDown; + const _needsClick = (this.p.isFlying || this.p.isUfo) ? justPressed : (justPressed || (this.p.queuedHold && this.p.upKeyDown)); + this.p.touchingRing = true; + if (!gameObj.activated && _needsClick) { + if (_isDash) { + gameObj._dashHoldTicks = (gameObj._dashHoldTicks || 0) + 1; + if (gameObj._dashHoldTicks < 2) { + gameObj.activated = true; + const _dashAngleDeg = gameObj.orbRotation || 0; + const _dashRad = _dashAngleDeg * Math.PI / 180; + const _maxSin = Math.sin(70 * Math.PI / 180); + const _rawSin = -Math.sin(_dashRad); + const _dashSin = Math.max(-_maxSin, Math.min(_maxSin, _rawSin)); + const _dashSpeed = 18; + const _dashVelY = _dashSin * _dashSpeed * this.flipMod(); + if (_orbId === 1751) { + this.flipGravity(!this.p.gravityFlipped); + } + this.p.isDashing = true; + this.p.dashYVelocity = _dashVelY; + this.p.yVelocity = _dashVelY; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.p.upKeyPressed = false; + this.p.queuedHold = false; + this.runRotateAction(); + _boostedThisStep = true; + try { + for (let _orbSpr of (this._gameLayer._orbSprites || [])) { + if (_orbSpr && _orbSpr._eeWorldX !== undefined && Math.abs(_orbSpr._eeWorldX - gameObj.x) < 10) { + _orbSpr._hitTime = Date.now(); + } + } + } catch(e) {} + } + } else { + gameObj.activated = true; + const _fm = this.flipMod(); + const _cubeJump = 22.360064; + let _orbVel = 0; + let _flipBefore = false; + let _flipAfter = false; + if (_orbId === 1594) { + this.flipGravity(!this.p.gravityFlipped); + this.p.upKeyPressed = false; + this.p.queuedHold = false; + _boostedThisStep = true; + } else if (_orbId === 444) { + const _spPlayerSize = this.p.isMini ? 18 : 30; + const _spFloorY = this._gameLayer.getFloorY(); + const _spCeilY = this._gameLayer.getCeilingY() || f; + this.p.upKeyPressed = false; + this.p.queuedHold = false; + if (!this.p.gravityFlipped) { + this.p.y = _spCeilY - _spPlayerSize; + this.flipGravity(true, 1.0); + } else { + this.p.y = _spFloorY + _spPlayerSize; + this.flipGravity(false, 1.0); + } + this.p.yVelocity = 0; + this.p.onGround = false; + this.p.canJump = false; + this.p.isJumping = false; + this.runRotateAction(); + _boostedThisStep = true; + try { + for (let _orbSpr of (this._gameLayer._orbSprites || [])) { + if (_orbSpr && _orbSpr._eeWorldX !== undefined && Math.abs(_orbSpr._eeWorldX - gameObj.x) < 10) { + _orbSpr._hitTime = Date.now(); + } + } + } catch(e) {} + } else if (this.p.isWave) { + if (_orbId === 84 || _orbId === 1022) { + this.flipGravity(!this.p.gravityFlipped); + this.p.upKeyPressed = false; + this.p.queuedHold = false; + _boostedThisStep = true; + try { + for (let _orbSpr of (this._gameLayer._orbSprites || [])) { + if (_orbSpr && _orbSpr._eeWorldX !== undefined && Math.abs(_orbSpr._eeWorldX - gameObj.x) < 10) { + _orbSpr._hitTime = Date.now(); + } + } + } catch(e) {} + } + } else { + if (this.p.isFlying) { + if (_orbId === 36){ _orbVel = 16; } + else if (_orbId === 141) { _orbVel = _cubeJump * 0.37; } + else if (_orbId === 1333) { _orbVel = _cubeJump; } + else if (_orbId === 84) { _orbVel = _cubeJump * 0.4; _flipAfter = true; } + else if (_orbId === 1022) { _orbVel = _cubeJump * -0.7; _flipAfter = true; } + else if (_orbId === 1330) { _orbVel = -28; } + } else if (this.p.isSwing) { + const _swingBase = _cubeJump * 0.6; + const _spiderBase = _cubeJump * 0.7; + if (_orbId === 36) { _orbVel = _swingBase; } + else if (_orbId === 141) { _orbVel = _swingBase * 0.72; } + else if (_orbId === 1333) { _orbVel = _swingBase * 1.38; } + else if (_orbId === 84) { _orbVel = _swingBase * 0.4; _flipAfter = true; } + else if (_orbId === 1022) { _orbVel = _spiderBase * -1; _flipAfter = true; } + else if (_orbId === 1330) { _orbVel = -28; } + } else if (this.p.isBall) { + const _ballBase = _cubeJump * 0.7 * (this.p.isMini ? 0.8 : 1); + if (_orbId === 36) { _orbVel = _ballBase; } + else if (_orbId === 141) { _orbVel = _ballBase * 0.77; } + else if (_orbId === 1333) { _orbVel = _ballBase * 1.34; } + else if (_orbId === 84) { _orbVel = _ballBase * 0.4; _flipAfter = true; } + else if (_orbId === 1022) { _orbVel = _ballBase * -1; _flipAfter = true; } + else if (_orbId === 1330) { _orbVel = -30; } + } else if (this.p.isUfo) { + const _ufoYellowOrb = this.p.isMini ? 17.888 : 22.36; + const _ufoPinkOrb = this.p.isMini ? 7.674 : 9.592; + const _ufoBlueOrb = (this.p.isMini ? -7.155 : -8.944) * 2; + if (_orbId === 36) { _orbVel = _ufoYellowOrb; } + else if (_orbId === 141) { _orbVel = _ufoPinkOrb; } + else if (_orbId === 1333) { _orbVel = _cubeJump * 1.02; } + else if (_orbId === 84) { _orbVel = _ufoBlueOrb; _flipAfter = true; } + else if (_orbId === 1022) { _orbVel = -_ufoYellowOrb * 2; _flipAfter = true; } + else if (_orbId === 1330) { _orbVel = -22.4; } + } else if (this.p.isRobot) { + if (_orbId === 36) { _orbVel = _cubeJump * 0.9; } + else if (_orbId === 141) { _orbVel = _cubeJump * 0.72; } + else if (_orbId === 1333) { _orbVel = _cubeJump * 1.28; } + else if (_orbId === 84) { _orbVel = _cubeJump * 0.4; _flipAfter = true; } + else if (_orbId === 1022) { _orbVel = _cubeJump * -1; _flipAfter = true; } + else if (_orbId === 1330) { _orbVel = -30; } + } else if (this.p.isSpider) { + const _spiderBase = _cubeJump * 0.7; + if (_orbId === 36) { _orbVel = _spiderBase; } + else if (_orbId === 141) { _orbVel = _spiderBase * 0.77; } + else if (_orbId === 1333) { _orbVel = _spiderBase * 1.34; } + else if (_orbId === 84) { _orbVel = _spiderBase * 0.4; _flipAfter = true; } + else if (_orbId === 1022) { _orbVel = _spiderBase * -1; _flipAfter = true; } + else if (_orbId === 1330) { _orbVel = -30; } + } else { + const _cubeOrbJump = _cubeJump * (this.p.isMini ? 0.8 : 1); + if (_orbId === 36) { _orbVel = _cubeOrbJump; } + else if (_orbId === 141) { _orbVel = _cubeOrbJump * 0.72; } + else if (_orbId === 1333) { _orbVel = _cubeOrbJump * 1.38; } + else if (_orbId === 84) { _orbVel = _cubeOrbJump; _flipAfter = true; } + else if (_orbId === 1022) { _orbVel = _cubeOrbJump * 1; _flipBefore = true; } + else if (_orbId === 1330) { _orbVel = -18; } + } + this.p.isJumping = true; + this.p.onGround = false; + this.p.canJump = false; + this.p.upKeyPressed = false; + this.p.queuedHold = false; + if (_flipBefore) { + this.flipGravity(!this.p.gravityFlipped); + this.p.yVelocity = this.flipMod() * _orbVel; + } else { + this.p.yVelocity = _fm * _orbVel; + } + if (_orbId === 1330) { + this.p.wasBoosted = false; + } + this.runRotateAction(); + _boostedThisStep = true; + if (_flipAfter) { + this.flipGravity(!this.p.gravityFlipped); + } + try { + for (let _orbSpr of (this._gameLayer._orbSprites || [])) { + if (_orbSpr && _orbSpr._eeWorldX !== undefined && Math.abs(_orbSpr._eeWorldX - gameObj.x) < 10) { + _orbSpr._hitTime = Date.now(); + } + } + } catch(e) {} + } + } + } else if (_isDash && !this.p.upKeyDown) { + gameObj._dashHoldTicks = 0; + } + } else if (_colType === coinType) { + if (!gameObj.activated) { + gameObj.activated = true; + try { + const _coinSpr = this._gameLayer._coinSprites.find(s => s && s.active && Math.abs(s._coinWorldX - gameObj.x) < 2 && Math.abs(s._coinWorldY - gameObj.y) < 2); + if (_coinSpr && _coinSpr.scene) { + const _startY = _coinSpr.y; + _coinSpr.scene.tweens.add({ + targets: _coinSpr, + y: _startY - 70, + scaleX: (_coinSpr.scaleX || 1) * 1.3, + scaleY: (_coinSpr.scaleY || 1) * 1.3, + duration: 180, + ease: 'Quad.Out', + onComplete: () => { + if (!_coinSpr.scene) return; + _coinSpr.scene.tweens.add({ + targets: _coinSpr, + y: _startY + 600, + alpha: 0, + duration: 1200, + ease: 'Quad.In', + onComplete: () => { + try { _coinSpr.setVisible(false); } catch(e) {} + } + }); + } + }); + } + } catch(e) {} + } + } else if (_colType === hazardType) { + if (window.noClip) { + this.p.diedThisFrame = true; + continue; + } + if (_hasCircleHitbox) { + const _hdx = pieceWidth - gameObj.x; + const _hdy = playersY - gameObj.y; + const _hDistSq = _hdx * _hdx + _hdy * _hdy; + const _hMinDist = gameObj.hitbox_radius + (this.p.isWave ? waveHitSize : playerSize); + if (_hDistSq > _hMinDist * _hMinDist) continue; + } + this.killPlayer(); + return; + } else if (_colType === solidType) { + let _0x146a97 = playersY - playerSize + gamemodeAddition; + let _0x869e42 = playersLastY - playerSize + gamemodeAddition; + let _0x3e7199 = playersY + playerSize - gamemodeAddition; + let _0x135a9d = playersLastY + playerSize - gamemodeAddition; + const _0x55559d = 9; + let iscolliding; + if (_hasCircleHitbox) { + const _sdx = pieceWidth - gameObj.x; + const _sdy = playersY - gameObj.y; + const _sDistSq = _sdx * _sdx + _sdy * _sdy; + const _sTightRadius = gameObj.hitbox_radius + _0x55559d; + iscolliding = _sDistSq <= _sTightRadius * _sTightRadius; + left = gameObj.x - gameObj.hitbox_radius; + right = gameObj.x + gameObj.hitbox_radius; + top = gameObj.y - gameObj.hitbox_radius; + bottom = gameObj.y + gameObj.hitbox_radius; + } else { + iscolliding = pieceWidth + _0x55559d > left && pieceWidth - _0x55559d < right && playersY + _0x55559d > top && playersY - _0x55559d < bottom; + } + const _0xLandBot = (this.p.yVelocity <= 0 || this.p.onGround) && (_0x146a97 >= bottom || _0x869e42 >= bottom); + const _0xLandTop = (this.p.yVelocity >= 0 || this.p.onGround) && (_0x3e7199 <= top || _0x135a9d <= top); + const isstandingOnAPlatform = this.p.gravityFlipped ? _0xLandTop : _0xLandBot; + if (iscolliding && !isstandingOnAPlatform) { + if (window.noClip) this.p.diedThisFrame = true; + if (window.noClip || gameObj.objid === 143) continue + this.killPlayer(); + return; + } + if (pieceWidth + playerSize - 5 > left && pieceWidth - playerSize + 5 < right) { + if (!this.p.gravityFlipped && (_0x146a97 >= bottom || _0x869e42 >= bottom) && (this.p.yVelocity <= 0 || this.p.onGround)) { + this.p.y = bottom + playerSize; + this.hitGround(); + _0x30410f = true; + this.p.collideBottom = bottom; + if (!this.p.isFlying) { + this._checkSnapJump(gameObj); + } + continue; + } + if (this.p.gravityFlipped && !this.p.isFlying && (_0x3e7199 <= top || _0x135a9d <= top) && (this.p.yVelocity >= 0 || this.p.onGround)) { + this.p.y = top - playerSize; + this.hitGround(); + _0x30410f = true; + this.p.onCeiling = true; + this.p.collideTop = top; + if (!this.p.isFlying) { + this._checkSnapJump(gameObj); + } + continue; + } + if (this.p.isUfo) { + if (!this.p.gravityFlipped && (_0x3e7199 <= top || _0x135a9d <= top) && (this.p.yVelocity >= 0 || this.p.onGround)) { + this.p.y = top - playerSize; + this.hitGround(); + this.p.onCeiling = true; + this.p.collideTop = top; + continue; + } + if (this.p.gravityFlipped && (_0x146a97 >= bottom || _0x869e42 >= bottom) && (this.p.yVelocity <= 0 || this.p.onGround)) { + this.p.y = bottom + playerSize; + this.hitGround(); + _0x30410f = true; + this.p.onCeiling = true; + this.p.collideTop = bottom; + continue; + } + continue; + } + if ((_0x3e7199 <= top || _0x135a9d <= top) && (this.p.yVelocity >= 0 || this.p.onGround) && this.p.isFlying) { + this.p.y = top - playerSize; + this.hitGround(); + this.p.onCeiling = true; + this.p.collideTop = top; + continue; + } + if (!this.p.gravityFlipped && (_0x3e7199 <= top || _0x135a9d <= top) && this.p.yVelocity >= 0) { + if (iscolliding) { + if (window.noClip) this.p.diedThisFrame = true; + if (window.noClip || gameObj.objid === 143) continue; + this.killPlayer(); + return; + } + continue; + } + if (this.p.gravityFlipped && (_0x146a97 >= bottom || _0x869e42 >= bottom) && (this.p.yVelocity <= 0 || this.p.onGround) && this.p.isFlying) { + this.p.y = bottom + playerSize; + this.hitGround(); + _0x30410f = true; + this.p.onCeiling = true; + this.p.collideTop = bottom; + continue; + } + } + } + } + } + if (this.p.collideTop !== 0 && this.p.collideBottom !== 0) { + if (Math.abs(this.p.collideTop - this.p.collideBottom) < 48) { + if (window.noClip) this.p.diedThisFrame = true; + if (!window.noClip) { + this.killPlayer(); + return; + } + } + } + let _0x3020c8 = this._gameLayer.getFloorY(); + const iscube = !this.p.isFlying && !this.p.isBall && !this.p.isWave && !this.p.isUfo && !this.p.isSpider; + const _effectiveSize = this.p.isWave ? waveHitSize : playerSize; + if (!_0x30410f && !_boostedThisStep) { + let gravCeilY = this._gameLayer.getCeilingY(); + + if (!_0x30410f && !_boostedThisStep) { + if (this.p.y <= _0x3020c8 + _effectiveSize) { + if (!this.p.gravityFlipped || !iscube) { + this.p.y = _0x3020c8 + _effectiveSize; + this.hitGround(); + if (this.p.gravityFlipped) this.p.onCeiling = true; + } else if (this.p.gravityFlipped && iscube && this.p.yVelocity < -0.5) { + if (window.noClip) { + this.p.diedThisFrame = true; + } else { + this.killPlayer(); + return; + } + } + } + + if (gravCeilY !== null) { + if (this.p.y >= gravCeilY - _effectiveSize) { + if (this.p.gravityFlipped) { + this.p.y = gravCeilY - _effectiveSize; + this.hitGround(); + this.p.onCeiling = true; + } + } + } + } + if (!this.p.gravityFlipped && !window.noClip && this.p.y < _0x3020c8 - 30) { + this.p.y = _0x3020c8 + _effectiveSize; + this.p.yVelocity = 0; + this.hitGround(); + } + if (this.p.gravityFlipped) { + let gravCeilY = this._gameLayer.getCeilingY(); + if (gravCeilY !== null) { + if (this.p.y >= gravCeilY - _effectiveSize) { + this.p.y = gravCeilY - _effectiveSize; + this.hitGround(); + this.p.onCeiling = true; + } + if (!window.noClip && this.p.y > gravCeilY + 30) { + this.p.y = gravCeilY - _effectiveSize; + this.p.yVelocity = 0; + this.hitGround(); + this.p.onCeiling = true; + } + } + } + } + let _0x496456 = this._gameLayer.getCeilingY(); + if (_0x496456 !== null && this.p.y >= _0x496456 - _effectiveSize && !iscube) { + this.p.y = _0x496456 - _effectiveSize; + this.hitGround(); + this.p.onCeiling = true; + } + if (this.p.y > 1890*4) { + this.killPlayer(); + return; + } + if (this.p.isFlying || this.p.isWave || this.p.isUfo || this.p.isSpider) { + const _0x354b7c = this.p.y <= _0x3020c8 + _effectiveSize; + const _0xdc296 = _0x496456 !== null && this.p.y >= _0x496456 - _effectiveSize; + if (!_0x30410f && !_0x354b7c && this.p.collideTop === 0 && !_0xdc296) { + this.p.onGround = false; + } + } + this.p.wasUpKeyDown = this.p.upKeyDown; + if (this.p.diedThisFrame == true && window.noClipAccuracy){ + this.noclipStats.deathFrames++; + this._scene.tweens.killTweensOf(this._scene.noclipFlash); + this._scene.tweens.add({ + targets: this._scene.noclipFlash, + alpha: { from: 0.5, to: 0 }, + duration: 400, + ease: 'Cubic.easeOut' + }); + if (this.p.diedLastFrame == false){ + this.noclipStats.deaths++; + } + } + if (this.noclipStats.totalFrames > 0) { + const safeFrames = this.noclipStats.totalFrames - this.noclipStats.deathFrames; + this.noclipStats.accuracy = (safeFrames / this.noclipStats.totalFrames) * 100; + } + this.p.diedLastFrame = this.p.diedThisFrame; + } + drawHitboxes(graphics, camX, camY) { + graphics.clear(); + const playerSize = this.p.isMini ? 18 : 30; + const hitboxsize = playerSize*2; + const isFlipped = this.p.mirrored; + const camXCenter = camX + centerX; + const playerY = this.p.y; + const nearbyObjects = this._gameLayer.getNearbySectionObjects(camXCenter); + for (let nearObject of nearbyObjects) { + let objXCenter = nearObject.x - camX; + let objYCenter = b(nearObject.y) + camY; + let hitboxColor = 65280; + if (nearObject.type === hazardType) { + hitboxColor = 16729156; + } else if (nearObject.type === "portal_fly" || nearObject.type === "portal_cube" || nearObject.type === "portal_ball" || nearObject.type === portalWaveType || nearObject.type === portalUfoType) { + hitboxColor = 4491519; + } else if (nearObject.type === "portal_teleport_in" || nearObject.type === "portal_teleport_out" || nearObject.sub === "teleport_in" || nearObject.sub === "teleport_out") { + hitboxColor = 8388352; + } else if (nearObject.type === "portal_gravity_down" || nearObject.type === "portal_gravity_up" || nearObject.type === "portal_gravity_toggle") { + hitboxColor = 16776960; + } else if (nearObject.type === "portal_mirror_on" || nearObject.type === "portal_mirror_off") { + hitboxColor = 16744448; + } else if (nearObject.type === "portal_mini_on" || nearObject.type === "portal_mini_off") { + hitboxColor = 16711935; + } else if (nearObject.type === jumpPadType) { + hitboxColor = 16744192; + } else if (nearObject.type === jumpRingType) { + hitboxColor = 16711935; + } + const xPos = isFlipped ? screenWidth - objXCenter : objXCenter; + graphics.lineStyle(2, hitboxColor, 0.7); + if (nearObject.hitbox_radius !== undefined && nearObject.hitbox_radius !== null) { + graphics.strokeCircle(xPos, objYCenter, nearObject.hitbox_radius); + } else { + let rot = Phaser.Math.DegToRad(nearObject.rotationDegrees); + let cos = Math.cos(rot); + let sin = Math.sin(rot); + let negWidth = -nearObject.w / 2; + let negHeight = -nearObject.h / 2; + let posWidth = nearObject.w / 2; + let posHeight = nearObject.h / 2; + let points = [ + { x: negWidth, y: negHeight }, + { x: posWidth, y: negHeight }, + { x: posWidth, y: posHeight }, + { x: negWidth, y: posHeight } + ]; + let rotations = points.map(p => ({ + x: xPos + (isFlipped ? -(p.x * cos - p.y * sin) : (p.x * cos - p.y * sin)), + y: objYCenter + (isFlipped ? -(p.x * sin + p.y * cos) : (p.x * sin + p.y * cos)) + })); + graphics.beginPath(); + graphics.moveTo(rotations[0].x, rotations[0].y); + graphics.lineTo(rotations[1].x, rotations[1].y); + graphics.lineTo(rotations[2].x, rotations[2].y); + graphics.lineTo(rotations[3].x, rotations[3].y); + graphics.closePath(); + graphics.strokePath(); + } + } + + if (window.showHitboxTrail) { + this._hitboxTrail.forEach((pos, index) => { + const trailXRaw = pos.x - camX; + const trailX = isFlipped ? screenWidth - trailXRaw : trailXRaw; + const trailY = b(pos.y) + camY; + graphics.lineStyle(1, hexToHexadecimal("ff0000"), 1); + + if (!this.p.isWave){ + // outer box (red) + graphics.lineStyle(1, hexToHexadecimal("ff0000"), 0.5); + graphics.strokeRect(trailX - playerSize, trailY - playerSize, hitboxsize, hitboxsize); + + // inner circle (dark red) + graphics.lineStyle(1, hexToHexadecimal("b30001"), 0.5); + graphics.strokeCircle((trailX - playerSize) + hitboxsize / 2, (trailY - playerSize) + hitboxsize / 2, hitboxsize / 2); + + // box that rotates with the player (dark red) + graphics.lineStyle(1, hexToHexadecimal("b30001"), 0.5); + { + const cx = (trailX - playerSize) + hitboxsize / 2; + const cy = (trailY - playerSize) + hitboxsize / 2; + const hw = hitboxsize / 2; + const cos = Math.cos(pos.rotation ?? 0); + const sin = Math.sin(pos.rotation ?? 0); + const corners = [ + { x: cx - hw * cos + hw * sin, y: cy - hw * sin - hw * cos }, + { x: cx + hw * cos + hw * sin, y: cy + hw * sin - hw * cos }, + { x: cx + hw * cos - hw * sin, y: cy + hw * sin + hw * cos }, + { x: cx - hw * cos - hw * sin, y: cy - hw * sin + hw * cos }, + ]; + graphics.beginPath(); + graphics.moveTo(corners[0].x, corners[0].y); + graphics.lineTo(corners[1].x, corners[1].y); + graphics.lineTo(corners[2].x, corners[2].y); + graphics.lineTo(corners[3].x, corners[3].y); + graphics.closePath(); + graphics.strokePath(); + } + + graphics.lineStyle(1, hexToHexadecimal("0000ff"), 1); + } + + // inner hitbox + graphics.strokeRect(trailX - 9, trailY - 9, 18, 18); + }); + } + + // comments so its easier for other people to read ts + const _0x1e788a = b(playerY) + camY; + const _playerDrawX = isFlipped ? screenWidth - centerX : centerX; + graphics.lineStyle(1, hexToHexadecimal("ff0000"), 1); + if (!this.p.isWave){ + // outer box (red) + graphics.lineStyle(2, hexToHexadecimal("ff0000"), 0.8); + graphics.strokeRect(_playerDrawX - playerSize, _0x1e788a - playerSize, hitboxsize, hitboxsize); + // inner circle (dark red) + graphics.lineStyle(2, hexToHexadecimal("b30001"), 0.8); + graphics.strokeCircle((_playerDrawX - playerSize)+hitboxsize/2, (_0x1e788a - playerSize)+hitboxsize/2, hitboxsize/2); + + // box that rotates with the player (dark red) + graphics.lineStyle(2, hexToHexadecimal("b30001"), 0.8); + { + const cx = (_playerDrawX - playerSize) + hitboxsize / 2; + const cy = (_0x1e788a - playerSize) + hitboxsize / 2; + const hw = hitboxsize / 2; + const cos = Math.cos(this._rotation); + const sin = Math.sin(this._rotation); + const corners = [ + { x: cx - hw * cos + hw * sin, y: cy - hw * sin - hw * cos }, + { x: cx + hw * cos + hw * sin, y: cy + hw * sin - hw * cos }, + { x: cx + hw * cos - hw * sin, y: cy + hw * sin + hw * cos }, + { x: cx - hw * cos - hw * sin, y: cy - hw * sin + hw * cos }, + ]; + graphics.beginPath(); + graphics.moveTo(corners[0].x, corners[0].y); + graphics.lineTo(corners[1].x, corners[1].y); + graphics.lineTo(corners[2].x, corners[2].y); + graphics.lineTo(corners[3].x, corners[3].y); + graphics.closePath(); + graphics.strokePath(); + } + + graphics.lineStyle(2, hexToHexadecimal("0000ff"), 1); + } + // inner hitbox + graphics.strokeRect(_playerDrawX - 9, _0x1e788a - 9, 18, 18); + } + playEndAnimation(_0x24408e, _0x281588, _0x54bbf4) { + this._endAnimating = true; + this._hitboxTrail = []; + this._hitboxGraphics.clear(); + const _0x3729ef = this._scene; + const _0x568b25 = _0x54bbf4 || 240; + const _0x4a45d7 = _0x3729ef._playerWorldX; + const _0x501b73 = this.p.y; + const _0x457676 = _0x24408e + 100; + const _0x3ade39 = _0x568b25 - 40; + const _0x1295ea = _0x4a45d7; + const _0x47ae60 = _0x501b73; + const _0x1f2e19 = _0x4a45d7 + 80; + const _0x8bc9f4 = _0x568b25 + 300; + const _0x11b580 = [this._playerSpriteLayer, this._playerGlowLayer, this._playerOverlayLayer, this._playerExtraLayer, this._ballSpriteLayer, this._ballGlowLayer, this._ballOverlayLayer, this._waveSpriteLayer, this._waveOverlayLayer, this._waveExtraLayer, this._waveGlowLayer, this._shipSpriteLayer, this._shipGlowLayer, this._shipOverlayLayer, this._shipExtraLayer].filter(_0x3e9c62 => _0x3e9c62 && _0x3e9c62.sprite.visible).map(_0x5cedeb => _0x5cedeb.sprite); + this._startPercent = (this._scene._playerWorldX / this._scene._level.endXPos) * 100; + this._particleEmitter.stop(); + this._flyParticleEmitter.stop(); + this._flyParticle2Emitter.stop(); + this._shipDragEmitter.stop(); + const _0x154798 = this.p.isFlying; + const _0x3793a4 = [this._shipSpriteLayer, this._shipGlowLayer, this._shipOverlayLayer, this._shipExtraLayer]; + const _0xbd676f = [this._playerSpriteLayer, this._playerGlowLayer, this._playerOverlayLayer, this._playerExtraLayer]; + const _0x3fc5a5 = _0x11b580.map(_0x5c0e81 => { + let _0x5cbb0a = 0; + if (_0x154798) { + const _0xff16eb = _0x3793a4.some(_0x40ef1e => _0x40ef1e && _0x40ef1e.sprite === _0x5c0e81); + const _0x4fdb53 = _0xbd676f.some(_0x4ef5b5 => _0x4ef5b5 && _0x4ef5b5.sprite === _0x5c0e81); + if (_0xff16eb) { + _0x5cbb0a = 10; + } else if (_0x4fdb53) { + _0x5cbb0a = -10; + } + } + return { + spr: _0x5c0e81, + localY: _0x5cbb0a + }; + }); + const _0x3e35e7 = this._streak; + const _0x51c4a8 = { + val: 0 + }; + _0x3729ef.tweens.add({ + targets: _0x51c4a8, + val: 1, + duration: 1000, + ease: _0x23df59 => Math.pow(_0x23df59, 1.2), + onUpdate: () => { + const spriteWidth = _0x51c4a8.val; + const _0x2478d6 = (1 - spriteWidth) ** 3 * _0x1295ea + (1 - spriteWidth) ** 2 * 3 * spriteWidth * _0x1295ea + (1 - spriteWidth) * 3 * spriteWidth ** 2 * _0x1f2e19 + spriteWidth ** 3 * _0x457676; + const _0x148e69 = (1 - spriteWidth) ** 3 * _0x47ae60 + (1 - spriteWidth) ** 2 * 3 * spriteWidth * _0x47ae60 + (1 - spriteWidth) * 3 * spriteWidth ** 2 * _0x8bc9f4 + spriteWidth ** 3 * _0x3ade39; + const _0x3d0365 = _0x2478d6 - _0x3729ef._cameraX; + const _0x3790a9 = b(_0x148e69) + _0x3729ef._cameraY; + const _0x1cb4d3 = 1 - spriteWidth * spriteWidth; + const _0x1d2e2f = _0x3fc5a5[0].spr.rotation; + const _0xd3cb2a = Math.cos(_0x1d2e2f); + const _0x2f86c2 = Math.sin(_0x1d2e2f); + this._scene._interpolatedPercent = this._startPercent + (100 - this._startPercent) * spriteWidth; + for (const _0x2b394a of _0x3fc5a5) { + const _0xbd4f26 = -_0x2b394a.localY * _0x2f86c2; + const _0x5b67fe = _0x2b394a.localY * _0xd3cb2a; + _0x2b394a.spr.setPosition(_0x3d0365 + _0xbd4f26, _0x3790a9 + _0x5b67fe); + _0x2b394a.spr.setAlpha(_0x1cb4d3); + } + _0x3e35e7.setPosition(_0x2478d6, b(_0x148e69)); + _0x3e35e7.update(_0x3729ef.game.loop.delta / 1000); + }, + onComplete: () => { + this._scene._interpolatedPercent = 100; + for (const _0x4fce42 of _0x3fc5a5) { + _0x4fce42.spr.setVisible(false); + } + _0x3e35e7.stop(); + _0x3e35e7.reset(); + _0x281588(); + } + }); + for (const _0x25f8c5 of _0x11b580) { + _0x3729ef.tweens.add({ + targets: _0x25f8c5, + angle: _0x25f8c5.angle + 360, + duration: 1000, + ease: _0x228c03 => Math.pow(_0x228c03, 1.5) + }); + } + } + reset() { + this._cleanupExplosion(); + this._endAnimating = false; + this._lastLandObject = null; + this._lastXOffset = 0; + this.stopRotation(); + this.rotateActionTime = 0; + this._rotation = 0; + this._lastCameraX = 0; + this._lastCameraY = 0; + this.setCubeVisible(true); + this.setShipVisible(false); + this.setBallVisible(false); + this.setWaveVisible(false); + this.setBirdVisible(false); + this.setSpiderVisible(false); + for (const _0x5a0fa9 of this._allLayers) { + if (_0x5a0fa9) { + _0x5a0fa9.sprite.setAlpha(1); + if (_0x5a0fa9.sprite.scaleY < 0) { + _0x5a0fa9.sprite.scaleY = Math.abs(_0x5a0fa9.sprite.scaleY); + } + } + } + for (const _0x1e656c of this._playerLayers) { + if (_0x1e656c) { + _0x1e656c.sprite.setScale(1); + } + } + this._particleEmitter.stop(); + this._particleActive = false; + this._flyParticleEmitter.stop(); + this._flyParticleActive = false; + this._flyParticle2Emitter.stop(); + this._flyParticle2Active = false; + this._shipDragEmitter.stop(); + this._shipDragActive = false; + this._streak.stop(); + this._streak.reset(); + this._waveTrail.stop(); + this._waveTrail.reset(); + } +} \ No newline at end of file diff --git a/assets/scripts/game/allObjects.js b/assets/scripts/game/allObjects.js index eca442e..a74c9c7 100644 --- a/assets/scripts/game/allObjects.js +++ b/assets/scripts/game/allObjects.js @@ -1,82213 +1,82217 @@ -// -1: No color -// 1: P Color -// 2: P Color 2 -// 1000: Background Color -// 1001: Ground Color -// 1004: Default Color (white) -// 1006: Glow -// 1011: Detail Color FOr animated blocks (ill add some later) - -window.allobjects = function() { - return { - "0": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "player_04-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1": { - "type": "solid", - "frame": "square_01_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2": { - "type": "solid", - "frame": "square_02_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3": { - "type": "solid", - "frame": "square_03_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "4": { - "type": "solid", - "frame": "square_04_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "5": { - "type": "deco", - "frame": "square_05_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "6": { - "type": "solid", - "frame": "square_06_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "7": { - "type": "solid", - "frame": "square_07_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "8": { - "type": "hazard", - "frame": "spike_01_001.png", - "gridW": 1, - "gridH": 1, - "spriteW": 30, - "spriteH": 30, - "hitboxScaleX": 0.2, - "hitboxScaleY": 0.4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "9": { - "type": "hazard", - "frame": "pit_01_001.png", - "gridW": 0, - "gridH": 0, - "black": true, - "can_color": false, - "spriteW": 30, - "spriteH": 27, - "hitboxScaleX": 0.3, - "hitboxScaleY": 0.4, - "randomFrames": [ - "pit_01_001.png", - "pit_02_001.png", - "pit_03_001.png" - ], - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "10": { - "type": "portal", - "frame": "portal_01_front_001.png", - "gridW": 0.8333333134651184, - "gridH": 2.5, - "sub": "gravity_flip", - "portalParticle": true, - "portalParticleColor": 2736127, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "11": { - "type": "portal", - "frame": "portal_02_front_001.png", - "gridW": 0.8333333134651184, - "gridH": 2.5, - "sub": "gravity_normal", - "portalParticle": true, - "portalParticleColor": 15462948, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "12": { - "type": "portal", - "frame": "portal_03_front_001.png", - "gridW": 1, - "gridH": 3, - "sub": "cube", - "portalParticle": true, - "portalParticleColor": 5111552, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "13": { - "type": "portal", - "frame": "portal_04_front_001.png", - "gridW": 1, - "gridH": 3, - "sub": "fly", - "portalParticle": true, - "portalParticleColor": 16711935, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "15": { - "type": "deco", - "frame": "rod_01_001.png", - "gridW": 0, - "gridH": 0, - "z": -6, - "children": [ - { - "frame": "rod_ball_01_001.png", - "localDy": -62, - "blend": "additive", - "tint": 327424, - "z": 1, - "audioScale": true - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "16": { - "type": "deco", - "frame": "rod_02_001.png", - "gridW": 0, - "gridH": 0, - "z": -6, - "children": [ - { - "frame": "rod_ball_01_001.png", - "localDy": -46.5, - "blend": "additive", - "tint": 327424, - "z": 1, - "audioScale": true - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "17": { - "type": "deco", - "frame": "rod_03_001.png", - "gridW": 0, - "gridH": 0, - "z": -6, - "children": [ - { - "frame": "rod_ball_01_001.png", - "localDy": -32.5, - "blend": "additive", - "tint": 327424, - "z": 1, - "audioScale": true - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "18": { - "type": "deco", - "frame": "d_spikes_01_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 327424, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "19": { - "type": "deco", - "frame": "d_spikes_02_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 327424, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "20": { - "type": "deco", - "frame": "d_spikes_03_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 327424, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "21": { - "type": "deco", - "frame": "d_spikes_04_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 327424, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "22": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "enterEffect": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "23": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "enterEffect": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "24": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "enterEffect": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "25": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "enterEffect": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "26": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "enterEffect": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "27": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "enterEffect": 5, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "28": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "enterEffect": 6, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "29": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "colorIdx": 1000, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "30": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "colorIdx": 1001, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "31": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "32": { - "type": "trigger", - "frame": null, - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "33": { - "type": "trigger", - "frame": null, - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "34": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 0.7666666507720947, - "gridW": 1.2333333492279053, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "35": { - "type": "pad", - "frame": "bump_01_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.8333333134651184, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "36": { - "type": "ring", - "frame": "ring_01_001.png", - "gridW": 1.2, - "gridH": 1.2, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "39": { - "type": "hazard", - "frame": "spike_02_001.png", - "gridW": 1, - "gridH": 1, - "spriteW": 30, - "spriteH": 14, - "hitboxScaleX": 0.2, - "hitboxScaleY": 0.4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "40": { - "type": "solid", - "frame": "plank_01_001.png", - "can_color": false, - "gridW": 1, - "gridH": 0.5, - "children": [ - { - "frame": "plank_01_color_001.png", - "tint": 0 - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "41": { - "type": "deco", - "frame": "chain_01_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 327424, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "44": { - "type": "deco", - "frame": null, - "gridW": 0, - "gridH": 0 - }, - "45": { - "type": "portal", - "frame": "portal_05_front_001.png", - "gridW": 1, - "gridH": 3, - "sub": "mirrora", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "46": { - "type": "portal", - "frame": "portal_06_front_001.png", - "gridW": 1, - "gridH": 3, - "sub": "mirrorb", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "47": { - "type": "portal", - "frame": "portal_07_front_001.png", - "gridW": 1, - "gridH": 3, - "sub": "ball", - "portalParticle": true, - "portalParticleColor": 16711680, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "48": { - "type": "deco", - "frame": "d_cloud_01_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 64511, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "49": { - "type": "deco", - "frame": "d_cloud_02_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 64511, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "50": { - "type": "deco", - "frame": "d_ball_01_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "51": { - "type": "deco", - "frame": "d_ball_02_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "52": { - "type": "deco", - "frame": "d_ball_03_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "53": { - "type": "deco", - "frame": "d_ball_04_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 64511, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "54": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_ball_05_001.png", - "glow_frame": "d_ball_05_glow_001.png", - "gridH": 0.949999988079071, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "55": { - "type": "deco", - "frame": "d_ball_06_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "56": { - "type": "deco", - "frame": "d_ball_07_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "57": { - "type": "deco", - "frame": "d_ball_08_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "58": { - "type": "deco", - "frame": "d_ball_09_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "59": { - "type": "trigger", - "frame": null, - "gridW": 1, - "gridH": 1, - "glow": true, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "60": { - "type": "deco", - "frame": "d_ball_06_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "61": { - "type": "hazard", - "frame": "pit_04_001.png", - "gridW": 0, - "gridH": 0, - "black": true, - "can_color": false, - "spriteW": 30, - "spriteH": 18, - "hitboxScaleX": 0.3, - "hitboxScaleY": 0.4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "62": { - "type": "solid", - "frame": "square_b_01_001.png", - "can_color": false, - "gridW": 1, - "gridH": 0.5, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "63": { - "type": "solid", - "frame": "square_b_02_001.png", - "can_color": false, - "gridW": 1, - "gridH": 0.5, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "64": { - "type": "solid", - "frame": "square_b_03_001.png", - "can_color": false, - "gridW": 1, - "gridH": 0.5, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "65": { - "type": "solid", - "frame": "square_b_04_001.png", - "can_color": false, - "gridW": 1, - "gridH": 0.5, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "66": { - "type": "solid", - "frame": "square_b_05_001.png", - "can_color": true, - "black": true, - "gridW": 1, - "gridH": 0.5, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "67": { - "type": "pad", - "frame": "gravbump_01_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.8333333134651184, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "68": { - "type": "solid", - "frame": "square_b_06_001.png", - "can_color": false, - "gridW": 1, - "gridH": 0.5, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "69": { - "type": "solid", - "frame": "blockOutline_01_001.png", - "gridW": 1, - "gridH": 1, - "glow": true, - "children": [ - { - "frame": "square_c_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "70": { - "type": "solid", - "frame": "lightsquare_01_02_001.png", - "gridW": 1, - "gridH": 1, - "glow": true, - "children": [ - { - "frame": "square_c_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "71": { - "type": "solid", - "frame": "blockOutline_03_001.png", - "gridW": 1, - "gridH": 1, - "glow": true, - "children": [ - { - "frame": "square_c_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "72": { - "type": "solid", - "frame": "blockOutline_06_001.png", - "gridW": 1, - "gridH": 1, - "glow": true, - "children": [ - { - "frame": "square_c_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "73": { - "type": "deco", - "frame": "square_c_05_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "74": { - "type": "solid", - "frame": "blockOutline_04_001.png", - "gridW": 1, - "gridH": 1, - "glow": true, - "children": [ - { - "frame": "square_c_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "75": { - "type": "solid", - "frame": "blockOutline_05_001.png", - "gridW": 1, - "gridH": 1, - "glow": true, - "children": [ - { - "frame": "square_c_05_001.png", - "localDy": 0, - "z": -1 - }, - { - "frame": "blockOutline_05_001.png", - "localDy": 0, - "z": 1 - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "76": { - "can_color": false, - "children": [ - { - "frame": "square_d_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "lightsquare_04_02_001.png", - "glow_frame": "lightsquare_04_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "77": { - "can_color": false, - "children": [ - { - "frame": "square_d_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "lightsquare_04_02_001.png", - "glow_frame": "lightsquare_04_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "78": { - "can_color": false, - "children": [ - { - "frame": "square_d_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "lightsquare_04_02_001.png", - "glow_frame": "lightsquare_04_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "80": { - "can_color": false, - "default_base_color_channel": 1004, - "frame": "square_d_05_001.png", - "glow_frame": "square_d_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "81": { - "can_color": false, - "children": [ - { - "frame": "square_d_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "lightsquare_04_02_001.png", - "glow_frame": "lightsquare_04_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "82": { - "can_color": false, - "children": [ - { - "frame": "square_d_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "lightsquare_04_sideLine_001.png", - "glow_frame": "lightsquare_04_sideLine_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "83": { - "type": "solid", - "frame": "square_08_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "84": { - "type": "ring", - "frame": "gravring_01_001.png", - "gridW": 1.2, - "gridH": 1.2, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "85": { - "can_color": true, - "children": [ - { - "frame": "d_cogwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_cogwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_cogwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_cogwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_cogwheel_01_001.png", - "glow_frame": "d_cogwheel_01_glow_001.png", - "gridH": 1.1833332777023315, - "gridW": 1.1833332777023315, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "86": { - "can_color": true, - "children": [ - { - "frame": "d_cogwheel_02_001.png", - "localDy": 0, - "tint": 327424, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_cogwheel_02_001.png", - "glow_frame": "d_cogwheel_02_glow_001.png", - "gridH": 1.8166667222976685, - "gridW": 1.7833333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "87": { - "can_color": true, - "children": [ - { - "frame": "d_cogwheel_03_001.png", - "localDy": 0, - "blend": "additive", - "tint": 327424, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_cogwheel_03_001.png", - "glow_frame": "d_cogwheel_03_glow_001.png", - "gridH": 1.25, - "gridW": 1.25, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "88": { - "type": "hazard", - "frame": "sawblade_01_001.png", - "gridW": 1, - "gridH": 1, - "hitbox_radius": 32.29999923706055, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "89": { - "type": "hazard", - "frame": "sawblade_02_001.png", - "gridW": 2, - "gridH": 2, - "hitbox_radius": 21.600000381469727, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "90": { - "can_color": false, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "91": { - "can_color": false, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "lightsquare_01_02_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "92": { - "can_color": false, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_03_001.png", - "glow_frame": "blockOutline_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "93": { - "can_color": false, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_06_001.png", - "glow_frame": "blockOutline_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "94": { - "type": "solid", - "frame": "block005b_05_001.png", - "can_color": false, - "gridW": 1, - "gridH": 1, - "glow": true, - "black": true, - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "95": { - "can_color": false, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_04_001.png", - "glow_frame": "blockOutline_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "96": { - "can_color": false, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - }, - { - "frame": "blockOutline_05_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_05_001.png", - "glow_frame": "blockOutline_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "97": { - "can_color": true, - "children": [ - { - "frame": "d_cogwheel_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_cogwheel_04_001.png", - "glow_frame": "d_cogwheel_04_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "98": { - "type": "hazard", - "frame": "sawblade_03_001.png", - "gridW": 3, - "gridH": 3, - "hitbox_radius": 11.77500057220459, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "99": { - "type": "portal", - "frame": "portal_08_front_001.png", - "gridW": 1, - "gridH": 3, - "sub": "grow", - "portalParticle": true, - "portalParticleColor": 5111552, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "101": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_09_front_001.png", - "glow_frame": "portal_09_front_glow_001.png", - "gridH": 3, - "gridW": 1.0333333015441895, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "sub": "shrink", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "103": { - "type": "hazard", - "frame": "spike_03_001.png", - "gridW": 0.5, - "gridH": 0.5, - "spriteW": 20, - "spriteH": 19, - "hitboxScaleX": 0.2, - "hitboxScaleY": 0.4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "104": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0 - }, - "105": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "106": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_02_chain_01_001.png", - "glow_frame": "d_02_chain_01_glow_001.png", - "gridH": 2.183333396911621, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "107": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_02_chain_02_001.png", - "glow_frame": "d_02_chain_02_glow_001.png", - "gridH": 1.2666666507720947, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "110": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_chain_02_001.png", - "glow_frame": "d_chain_02_glow_001.png", - "gridH": 1.1333333253860474, - "gridW": 0.6499999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "111": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_10_front_001.png", - "glow_frame": "portal_10_front_glow_001.png", - "gridH": 2.866666555404663, - "gridW": 1.1333333253860474, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "113": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_brick_01_001.png", - "glow_frame": "d_brick_01_glow_001.png", - "gridH": 1.3166667222976685, - "gridW": 4.150000095367432, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "blend": "additive", - "tint": 327424, - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "114": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_brick_02_001.png", - "glow_frame": "d_brick_02_glow_001.png", - "gridH": 1.1166666746139526, - "gridW": 2.866666555404663, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "115": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_brick_03_001.png", - "glow_frame": "d_brick_03_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 1.850000023841858, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "116": { - "type": "solid", - "frame": "square_f_01_001.png", - "gridW": 1, - "gridH": 1, - "spritesheet": "GJ_GameSheet-uhd", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "117": { - "type": "solid", - "frame": "square_f_02_001.png", - "gridW": 1, - "gridH": 1, - "spritesheet": "GJ_GameSheet-uhd", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "118": { - "type": "solid", - "frame": "square_f_03_001.png", - "gridW": 1, - "gridH": 1, - "spritesheet": "GJ_GameSheet-uhd", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "119": { - "type": "solid", - "frame": "blockOutline_06_001.png", - "gridW": 1, - "gridH": 1, - "spritesheet": "GJ_GameSheet-uhd", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "120": { - "type": "deco", - "frame": "square_f_05_001.png", - "gridW": 0, - "gridH": 0, - "spritesheet": "GJ_GameSheet-uhd", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "121": { - "type": "solid", - "frame": "square_f_06_001.png", - "gridW": 1, - "gridH": 1, - "spritesheet": "GJ_GameSheet-uhd", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "122": { - "type": "solid", - "frame": "square_f_07_001.png", - "gridW": 1, - "gridH": 1, - "spritesheet": "GJ_GameSheet-uhd", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "123": { - "type": "deco", - "frame": "d_thorn_01_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "124": { - "type": "deco", - "frame": "d_thorn_02_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "125": { - "type": "deco", - "frame": "d_smallBall_01_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "126": { - "type": "deco", - "frame": "d_smallBall_02_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "127": { - "type": "deco", - "frame": "d_smallBall_03_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "128": { - "type": "deco", - "frame": "d_smallBall_04_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "129": { - "type": "deco", - "frame": "d_cloud_03_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "130": { - "type": "deco", - "frame": "d_cloud_04_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "131": { - "type": "deco", - "frame": "d_cloud_05_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "132": { - "type": "deco", - "frame": "d_arrow_01_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "133": { - "type": "deco", - "frame": "d_exmark_01_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "134": { - "type": "deco", - "frame": "d_art_01_001.png", - "gridW": 0.46666666865348816, - "gridH": 1.0333333015441895, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "135": { - "type": "deco", - "frame": "fakeSpike_01_001.png", - "gridW": 0, - "gridH": 0, - "black": true, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "136": { - "type": "deco", - "frame": "d_qmark_01_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "137": { - "type": "deco", - "frame": "d_wheel_01_001.png", - "gridW": 1.350000023841858, - "gridH": 2.6666667461395264, - "children": [ - { - "frame": "d_wheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_wheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "138": { - "type": "deco", - "frame": "d_wheel_02_001.png", - "gridW": 1.7000000476837158, - "gridH": 1.7000000476837158, - "children": [ - { - "frame": "d_wheel_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "139": { - "type": "deco", - "frame": "d_wheel_03_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "140": { - "type": "pad", - "frame": "bump_03_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.8333333134651184, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "141": { - "type": "ring", - "frame": "ring_03_001.png", - "gridW": 1.2, - "gridH": 1.2, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "142": { - "type": "coin", - "frame": "secretCoin_01_001.png", - "gridW": 1, - "gridH": 1, - "animFrames": [ - "secretCoin_01_001.png", - "secretCoin_01_002.png", - "secretCoin_01_003.png", - "secretCoin_01_004.png" - ], - "animInterval": 100 - }, - "143": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "brick_02_001.png", - "glow_frame": "brick_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "144": { - "type": "deco", - "frame": "d_circle_02_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "145": { - "type": "deco", - "frame": "d_smallBall_05_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "146": { - "type": "solid", - "frame": "invis_square_01_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "147": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "invis_plank_01_001.png", - "glow_frame": "invis_plank_01_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "148": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_ball_07_001.png", - "glow_frame": "d_ball_07_glow_001.png", - "gridH": 0.9166666865348816, - "gridW": 0.9166666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "149": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_ball_08_001.png", - "glow_frame": "d_ball_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "150": { - "type": "deco", - "frame": "d_cross_01_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "151": { - "type": "deco", - "frame": "d_spikeart_01_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 65280, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "152": { - "type": "deco", - "frame": "d_spikeart_02_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 65280, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "153": { - "type": "deco", - "frame": "d_spikeart_03_001.png", - "gridW": 0, - "gridH": 0, - "blend": "additive", - "tint": 65280, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "154": { - "can_color": true, - "children": [ - { - "frame": "d_spikewheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_spikewheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_spikewheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_spikewheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_spikewheel_01_001.png", - "glow_frame": "d_spikewheel_01_glow_001.png", - "gridH": 1.1666666269302368, - "gridW": 1.1666666269302368, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "155": { - "can_color": true, - "children": [ - { - "frame": "d_spikewheel_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_spikewheel_02_001.png", - "glow_frame": "d_spikewheel_02_glow_001.png", - "gridH": 1.3666666746139526, - "gridW": 1.5666667222976685, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "156": { - "can_color": true, - "children": [ - { - "frame": "d_spikewheel_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_spikewheel_03_001.png", - "glow_frame": "d_spikewheel_03_glow_001.png", - "gridH": 1.2999999523162842, - "gridW": 0.3166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "157": { - "type": "deco", - "frame": "d_wave_01_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "158": { - "type": "deco", - "frame": "d_wave_02_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "159": { - "type": "deco", - "frame": "d_wave_03_001.png", - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "160": { - "can_color": true, - "children": [ - { - "frame": "square_g_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "161": { - "can_color": true, - "children": [ - { - "frame": "square_g_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "lightsquare_01_02_001.png", - "glow_frame": "lightsquare_01_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "162": { - "type": "solid", - "frame": "blockOutline_03_001.png", - "gridW": 1, - "gridH": 1, - "spritesheet": "GJ_GameSheet-uhd", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "163": { - "can_color": true, - "children": [ - { - "frame": "square_g_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_06_001.png", - "glow_frame": "blockOutline_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "164": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_05_001.png", - "glow_frame": "square_g_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "165": { - "type": "solid", - "frame": "blockOutline_04_001.png", - "gridW": 1, - "gridH": 1, - "spritesheet": "GJ_GameSheet-uhd", - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "166": { - "can_color": true, - "children": [ - { - "frame": "square_g_07_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutline_05_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_05_001.png", - "glow_frame": "blockOutline_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "167": { - "can_color": true, - "children": [ - { - "frame": "square_g_08_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutline_06_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_06_001.png", - "glow_frame": "blockOutline_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "168": { - "can_color": true, - "children": [ - { - "frame": "square_g_09_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "169": { - "can_color": true, - "children": [ - { - "frame": "square_g_10_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "170": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_01_001.png", - "glow_frame": "square_h_01_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "171": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_02_001.png", - "glow_frame": "square_h_02_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "172": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_03_001.png", - "glow_frame": "square_h_03_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "173": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_04_001.png", - "glow_frame": "square_h_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "174": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_05_001.png", - "glow_frame": "square_h_05_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "175": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_06_001.png", - "glow_frame": "square_h_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "176": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_07_001.png", - "glow_frame": "square_h_07_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "177": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "iceSpike_01_001.png", - "glow_frame": "iceSpike_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "178": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "iceSpike_02_001.png", - "glow_frame": "iceSpike_02_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "179": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "iceSpike_03_001.png", - "glow_frame": "iceSpike_03_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "180": { - "can_color": true, - "children": [ - { - "frame": "d_cartwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_cartwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_cartwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_cartwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1006, - "frame": "d_cartwheel_01_001.png", - "glow_frame": "d_cartwheel_01_glow_001.png", - "gridH": 0.9083333611488342, - "gridW": 0.9083333611488342, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "181": { - "can_color": true, - "children": [ - { - "frame": "d_cartwheel_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1006, - "frame": "d_cartwheel_02_001.png", - "glow_frame": "d_cartwheel_02_glow_001.png", - "gridH": 1.2000000476837158, - "gridW": 1.2083333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "182": { - "can_color": true, - "children": [ - { - "frame": "d_cartwheel_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1006, - "frame": "d_cartwheel_03_001.png", - "glow_frame": "d_cartwheel_03_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.8166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "183": { - "can_color": true, - "children": [ - { - "frame": "blade_b_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blade_b_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "blade_b_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "blade_b_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "blade_b_01_001.png", - "glow_frame": "blade_b_01_glow_001.png", - "gridH": 1.4333332777023315, - "gridW": 1.4333332777023315, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 15.300000190734863, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "184": { - "can_color": true, - "children": [ - { - "frame": "blade_b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blade_b_02_001.png", - "glow_frame": "blade_b_02_glow_001.png", - "gridH": 1.7666666507720947, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 20.399999618530273, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "185": { - "can_color": true, - "children": [ - { - "frame": "blade_b_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blade_b_03_001.png", - "glow_frame": "blade_b_03_glow_001.png", - "gridH": 1.3333333730697632, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 2.8500001430511475, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "186": { - "can_color": true, - "children": [ - { - "frame": "blade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "blade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "blade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "blade_01_001.png", - "glow_frame": "blade_01_glow_001.png", - "gridH": 1.4333332777023315, - "gridW": 1.4333332777023315, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 32.29999923706055, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "187": { - "can_color": true, - "children": [ - { - "frame": "blade_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blade_02_001.png", - "glow_frame": "blade_02_glow_001.png", - "gridH": 2.0333333015441895, - "gridW": 2.0333333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 21.8700008392334, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "188": { - "can_color": true, - "children": [ - { - "frame": "blade_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blade_03_001.png", - "glow_frame": "blade_03_glow_001.png", - "gridH": 1.399999976158142, - "gridW": 1.399999976158142, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 12.600000381469727, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "190": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_art_02_001.png", - "glow_frame": "d_art_02_glow_001.png", - "gridH": 1.6333333253860474, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "191": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "fakeSpike_01_001.png", - "glow_frame": "fakeSpike_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -4, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -4 - }, - "192": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_08_001.png", - "glow_frame": "square_h_08_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "193": { - "type": "deco", - "frame": "square_g_11_001.png", - "gridH": 1, - "gridW": 1, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "194": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_09_001.png", - "glow_frame": "square_h_09_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 0.699999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "195": { - "type": "solid", - "frame": "square_01_001.png", - "gridW": 0.5, - "gridH": 0.5, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "196": { - "type": "solid", - "frame": "plank_01_001.png", - "gridW": 0.5, - "gridH": 0.25, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "197": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_h_10_001.png", - "glow_frame": "square_h_10_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 0.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "198": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "fakeSpike_02_001.png", - "glow_frame": "fakeSpike_02_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -4, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -4 - }, - "199": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "fakeSpike_03_001.png", - "glow_frame": "fakeSpike_03_glow_001.png", - "gridH": 0.6333333253860474, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -4, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -4 - }, - "200": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "boost_01_001.png", - "glow_frame": "boost_01_glow_001.png", - "gridH": 1.4666666984558105, - "gridW": 1.1666666269302368, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "speed", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 4, - "default_z_order": -6 - }, - "201": { - "type": "speed", - "frame": "boost_02_001.png", - "gridW": 1, - "gridH": 3, - "sub": "normal", - "default_detail_color_channel": -1, - "default_z_layer": 4, - "default_z_order": -6 - }, - "202": { - "type": "speed", - "frame": "boost_03_001.png", - "gridW": 1, - "gridH": 3, - "sub": "fast", - "default_detail_color_channel": -1, - "default_z_layer": 4, - "default_z_order": -6 - }, - "203": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "boost_04_001.png", - "glow_frame": "boost_04_glow_001.png", - "gridH": 1.8666666746139526, - "gridW": 2.1666667461395264, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "speed", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 4, - "default_z_order": -6 - }, - "204": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "invis_plank_01_small_001.png", - "glow_frame": "invis_plank_01_small_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "205": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "invis_spike_02_001.png", - "glow_frame": "invis_spike_02_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "206": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "invis_square_01_small_001.png", - "glow_frame": "invis_square_01_small_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "207": { - "can_color": true, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "208": { - "can_color": true, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "209": { - "can_color": true, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_03_001.png", - "glow_frame": "blockOutline_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "210": { - "can_color": true, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_06_001.png", - "glow_frame": "blockOutline_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "211": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "212": { - "can_color": true, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_01_06_001.png", - "glow_frame": "lightsquare_01_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "213": { - "can_color": true, - "children": [ - { - "frame": "block005b_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_01_07_001.png", - "glow_frame": "lightsquare_01_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "215": { - "can_color": true, - "children": [ - { - "frame": "colorPlank_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "colorPlank_01_001.png", - "glow_frame": "colorPlank_01_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "216": { - "can_color": true, - "children": [ - { - "frame": "colorSpike_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "colorSpike_01_001.png", - "glow_frame": "colorSpike_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "217": { - "can_color": true, - "children": [ - { - "frame": "colorSpike_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "colorSpike_02_001.png", - "glow_frame": "colorSpike_02_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "218": { - "can_color": true, - "children": [ - { - "frame": "colorSpike_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "colorSpike_03_001.png", - "glow_frame": "colorSpike_03_glow_001.png", - "gridH": 0.6333333253860474, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "219": { - "can_color": true, - "children": [ - { - "frame": "colorPlank_01_small_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "colorPlank_01_small_001.png", - "glow_frame": "colorPlank_01_small_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "220": { - "can_color": true, - "children": [ - { - "frame": "colorSquare_01_small_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_10_001.png", - "glow_frame": "blockOutline_10_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "221": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0 - }, - "222": { - "can_color": true, - "children": [ - { - "frame": "d_roundCloud_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_roundCloud_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_roundCloud_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_roundCloud_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_roundCloud_01_001.png", - "glow_frame": "d_roundCloud_01_glow_001.png", - "gridH": 1.5833333730697632, - "gridW": 1.5833333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "223": { - "can_color": true, - "children": [ - { - "frame": "d_roundCloud_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_roundCloud_02_001.png", - "glow_frame": "d_roundCloud_02_glow_001.png", - "gridH": 2.116666555404663, - "gridW": 1.899999976158142, - "spriteH": 63.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "224": { - "can_color": true, - "children": [ - { - "frame": "d_roundCloud_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_roundCloud_03_001.png", - "glow_frame": "d_roundCloud_03_glow_001.png", - "gridH": 1.1666666269302368, - "gridW": 1.2000000476837158, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "225": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_swirve_01_001.png", - "glow_frame": "d_swirve_01_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "226": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_swirve_02_001.png", - "glow_frame": "d_swirve_02_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "227": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_bar_01_001.png", - "glow_frame": "d_bar_01_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "228": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_bar_02_001.png", - "glow_frame": "d_bar_02_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "229": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_bar_03_001.png", - "glow_frame": "d_bar_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "230": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_bar_04_001.png", - "glow_frame": "d_bar_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "231": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_smallbar_01_001.png", - "glow_frame": "d_smallbar_01_glow_001.png", - "gridH": 1, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "232": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_smallbar_02_001.png", - "glow_frame": "d_smallbar_02_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "233": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_square_03_01_001.png", - "glow_frame": "d_square_03_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "234": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_square_03_02_001.png", - "glow_frame": "d_square_03_02_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "235": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_square_03_03_001.png", - "glow_frame": "d_square_03_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "236": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_circle_01_001.png", - "glow_frame": "d_circle_01_glow_001.png", - "gridH": 1.6666666269302368, - "gridW": 1.6666666269302368, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "237": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_link_01_001.png", - "glow_frame": "d_link_01_glow_001.png", - "gridH": 1, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "238": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_link_02_001.png", - "glow_frame": "d_link_02_glow_001.png", - "gridH": 0.7166666388511658, - "gridW": 0.7166666388511658, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "239": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_link_03_001.png", - "glow_frame": "d_link_03_glow_001.png", - "gridH": 0.7166666388511658, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "240": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_link_04_001.png", - "glow_frame": "d_link_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "241": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_link_05_001.png", - "glow_frame": "d_link_05_glow_001.png", - "gridH": 0.7166666388511658, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "242": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_bar_07_001.png", - "glow_frame": "d_bar_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "243": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_04_02_001.png", - "glow_frame": "pit_04_02_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "244": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_04_03_001.png", - "glow_frame": "pit_04_03_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "245": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_f_brick01_001.png", - "glow_frame": "square_f_brick01_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "246": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_f_brick02_001.png", - "glow_frame": "square_f_brick02_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "247": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_02_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "248": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_02_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "249": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_02_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_03_001.png", - "glow_frame": "blockOutline_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "250": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_02_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_06_001.png", - "glow_frame": "blockOutline_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "251": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_02_05_color_001.png", - "glow_frame": "lightsquare_02_05_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "252": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_02_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_01_06_001.png", - "glow_frame": "lightsquare_01_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "253": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_02_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_01_07_001.png", - "glow_frame": "lightsquare_01_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "254": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_02_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_02_08_001.png", - "glow_frame": "lightsquare_02_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "255": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_03_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "256": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_03_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "257": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_03_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_03_001.png", - "glow_frame": "blockOutline_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "258": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_03_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_06_001.png", - "glow_frame": "blockOutline_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "259": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_03_01_color_001.png", - "glow_frame": "lightsquare_03_01_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "260": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_03_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_01_06_001.png", - "glow_frame": "lightsquare_01_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "261": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_03_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_01_07_001.png", - "glow_frame": "lightsquare_01_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "263": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_04_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_04_02_001.png", - "glow_frame": "lightsquare_04_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "264": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_04_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_04_02_001.png", - "glow_frame": "lightsquare_04_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "265": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_04_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_04_02_001.png", - "glow_frame": "lightsquare_04_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "266": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_04_05_color_001.png", - "glow_frame": "lightsquare_04_05_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "267": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_04_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_04_02_001.png", - "glow_frame": "lightsquare_04_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "268": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_04_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "lightsquare_04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_04_sideLine_001.png", - "glow_frame": "lightsquare_04_sideLine_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "269": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_05_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "270": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_05_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "271": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_05_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_03_001.png", - "glow_frame": "blockOutline_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "272": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_05_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_06_001.png", - "glow_frame": "blockOutline_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "273": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_05_04_color_001.png", - "glow_frame": "lightsquare_05_04_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "274": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_05_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_01_06_001.png", - "glow_frame": "lightsquare_01_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "275": { - "can_color": true, - "children": [ - { - "frame": "lightsquare_05_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightsquare_01_07_001.png", - "glow_frame": "lightsquare_01_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "277": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_05_brick02_001.png", - "glow_frame": "lightsquare_05_brick02_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "278": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_05_brick03_001.png", - "glow_frame": "lightsquare_05_brick03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "279": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_square_01_001.png", - "glow_frame": "d_square_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "280": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_square_02_001.png", - "glow_frame": "d_square_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "281": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_square_04_001.png", - "glow_frame": "d_square_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "282": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_square_05_001.png", - "glow_frame": "d_square_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "283": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_smallbar_03_001.png", - "glow_frame": "d_smallbar_03_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "284": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_smallbar_04_001.png", - "glow_frame": "d_smallbar_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "285": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_smallbar_05_001.png", - "glow_frame": "d_smallbar_05_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "286": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_11_front_001.png", - "glow_frame": "portal_11_front_glow_001.png", - "gridH": 3.0333333015441895, - "gridW": 1.3666666746139526, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "287": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_12_front_001.png", - "glow_frame": "portal_12_front_glow_001.png", - "gridH": 3.0333333015441895, - "gridW": 1.3666666746139526, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "289": { - "can_color": true, - "children": [ - { - "frame": "triangle_a_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "291": { - "can_color": true, - "children": [ - { - "frame": "triangle_a_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "294": { - "can_color": true, - "children": [ - { - "frame": "triangle_b_01_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "295": { - "can_color": true, - "children": [ - { - "frame": "triangle_b_02_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "296": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "blockOutline_07_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "triangle_b_square_01_001.png", - "glow_frame": "triangle_b_square_01_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.36666667461395264, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "297": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "blockOutline_08_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "triangle_b_square_02_001.png", - "glow_frame": "triangle_b_square_02_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.9666666388511658, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "299": { - "can_color": true, - "children": [ - { - "frame": "triangle_c_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "301": { - "can_color": true, - "children": [ - { - "frame": "triangle_c_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "305": { - "can_color": true, - "children": [ - { - "frame": "triangle_d_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_16_001.png", - "glow_frame": "blockOutline_16_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "307": { - "can_color": true, - "children": [ - { - "frame": "triangle_d_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_17_001.png", - "glow_frame": "blockOutline_17_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "309": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_01_02_color_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "311": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_01_04_color_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "315": { - "can_color": true, - "children": [ - { - "frame": "triangle_f_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "317": { - "can_color": true, - "children": [ - { - "frame": "triangle_f_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "321": { - "can_color": true, - "children": [ - { - "frame": "triangle_g_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "323": { - "can_color": true, - "children": [ - { - "frame": "triangle_g_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "324": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_g_square_01_001.png", - "glow_frame": "triangle_g_square_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "325": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_g_square_02_001.png", - "glow_frame": "triangle_g_square_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "326": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_h_01_001.png", - "glow_frame": "triangle_h_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "327": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_h_02_001.png", - "glow_frame": "triangle_h_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "328": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_h_square_01_001.png", - "glow_frame": "triangle_h_square_01_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "329": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_h_square_02_001.png", - "glow_frame": "triangle_h_square_02_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 1.4333332777023315, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "331": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_01_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "333": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_01_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "337": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_02_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "339": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_02_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "343": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_03_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "345": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_03_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "349": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_04_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_16_001.png", - "glow_frame": "blockOutline_16_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "351": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_04_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_17_001.png", - "glow_frame": "blockOutline_17_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "353": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_05_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "355": { - "can_color": true, - "children": [ - { - "frame": "lighttriangle_05_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "358": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_g_square_03_001.png", - "glow_frame": "triangle_g_square_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "363": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "pit_01_slope_01_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_01_slope_01_001.png", - "glow_frame": "pit_01_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "364": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "pit_01_slope_02_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_01_slope_02_001.png", - "glow_frame": "pit_01_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "365": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_01_low_001.png", - "glow_frame": "pit_01_low_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "366": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "pit_04_slope_01_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_04_slope_01_001.png", - "glow_frame": "pit_04_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "367": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "pit_04_slope_02_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_04_slope_02_001.png", - "glow_frame": "pit_04_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "368": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_04_low_001.png", - "glow_frame": "pit_04_low_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "369": { - "can_color": true, - "children": [ - { - "frame": "plank_01_color_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "plank_01_02_001.png", - "glow_frame": "plank_01_02_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "370": { - "can_color": true, - "children": [ - { - "frame": "plank_01_color_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "plank_01_03_001.png", - "glow_frame": "plank_01_03_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "371": { - "can_color": true, - "children": [ - { - "frame": "plank_01_slope_01_color_001.png", - "localDy": 0, - "tint": 0, - "z": 9 - }, - { - "frame": "plank_01_slope_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 10 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "372": { - "can_color": true, - "children": [ - { - "frame": "plank_01_slope_02_color_001.png", - "localDy": 0, - "tint": 0, - "z": 9 - }, - { - "frame": "plank_01_slope_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 10 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "373": { - "can_color": true, - "children": [ - { - "frame": "plank_01_square_01_color_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "plank_01_square_01_001.png", - "glow_frame": "plank_01_square_01_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "374": { - "can_color": true, - "children": [ - { - "frame": "plank_01_square_02_color_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "plank_01_square_02_001.png", - "glow_frame": "plank_01_square_02_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "375": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingBall_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_rotatingBall_01_001.png", - "glow_frame": "d_rotatingBall_01_glow_001.png", - "gridH": 2.25, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "376": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingBall_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1006, - "frame": "d_rotatingBall_02_001.png", - "glow_frame": "d_rotatingBall_02_glow_001.png", - "gridH": 1.7999999523162842, - "gridW": 0.7166666388511658, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "377": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingBall_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_rotatingBall_03_001.png", - "glow_frame": "d_rotatingBall_03_glow_001.png", - "gridH": 1.3333333730697632, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "378": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingBall_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1006, - "frame": "d_rotatingBall_04_001.png", - "glow_frame": "d_rotatingBall_04_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 0.44999998807907104, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "392": { - "type": "hazard", - "frame": "spike_04_001.png", - "gridW": 0.5, - "gridH": 0.5, - "spriteW": 13, - "spriteH": 12, - "hitboxScaleX": 0.2, - "hitboxScaleY": 0.4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "393": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "fakeSpike_04_001.png", - "glow_frame": "fakeSpike_04_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -4, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -4 - }, - "394": { - "can_color": true, - "children": [ - { - "frame": "d_geometric_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_geometric_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_geometric_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_geometric_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_geometric_01_001.png", - "glow_frame": "d_geometric_01_glow_001.png", - "gridH": 1.1833332777023315, - "gridW": 1.3583333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "395": { - "can_color": true, - "children": [ - { - "frame": "d_geometric_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_geometric_02_001.png", - "glow_frame": "d_geometric_02_glow_001.png", - "gridH": 1.399999976158142, - "gridW": 1.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "396": { - "can_color": true, - "children": [ - { - "frame": "d_geometric_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_geometric_03_001.png", - "glow_frame": "d_geometric_03_glow_001.png", - "gridH": 0.6499999761581421, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "397": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "darkblade_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "darkblade_01_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - }, - { - "frame": "darkblade_01_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "darkblade_01_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "darkblade_01_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "darkblade_01_001.png", - "glow_frame": "darkblade_01_glow_001.png", - "gridH": 1.4333332777023315, - "gridW": 1.4333332777023315, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 28.899999618530273, - "default_z_layer": 5, - "default_z_order": 1 - }, - "398": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "darkblade_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "darkblade_02_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "darkblade_02_001.png", - "glow_frame": "darkblade_02_glow_001.png", - "gridH": 2.0999999046325684, - "gridW": 1.8333333730697632, - "spriteH": 63, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 17.440000534057617, - "default_z_layer": 5, - "default_z_order": 1 - }, - "399": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "darkblade_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "darkblade_03_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "darkblade_03_001.png", - "glow_frame": "darkblade_03_glow_001.png", - "gridH": 1.4333332777023315, - "gridW": 1.4333332777023315, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 12.90000057220459, - "default_z_layer": 5, - "default_z_order": 1 - }, - "405": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_ball_09_001.png", - "glow_frame": "d_ball_09_glow_001.png", - "gridH": 0.8666666746139526, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "406": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_grass_01_001.png", - "glow_frame": "d_grass_01_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.44999998807907104, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "407": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_grass_02_001.png", - "glow_frame": "d_grass_02_glow_001.png", - "gridH": 0.28333333134651184, - "gridW": 0.36666667461395264, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "408": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_grass_03_001.png", - "glow_frame": "d_grass_03_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.18333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "409": { - "can_color": true, - "default_base_color_channel": 1007, - "default_detail_color_channel": 1, - "frame": "d_link_b_01_001.png", - "glow_frame": "d_link_b_01_glow_001.png", - "gridH": 1, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "410": { - "can_color": true, - "default_base_color_channel": 1007, - "default_detail_color_channel": 1, - "frame": "d_link_b_02_001.png", - "glow_frame": "d_link_b_02_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "411": { - "can_color": true, - "default_base_color_channel": 1007, - "default_detail_color_channel": 1, - "frame": "d_link_b_03_001.png", - "glow_frame": "d_link_b_03_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "412": { - "can_color": true, - "default_base_color_channel": 1007, - "default_detail_color_channel": 1, - "frame": "d_link_b_04_001.png", - "glow_frame": "d_link_b_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "413": { - "can_color": true, - "default_base_color_channel": 1007, - "default_detail_color_channel": 1, - "frame": "d_link_b_05_001.png", - "glow_frame": "d_link_b_05_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "414": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_grass_04_001.png", - "glow_frame": "d_grass_04_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.44999998807907104, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "419": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_spikeWave_01_001.png", - "glow_frame": "d_spikeWave_01_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "420": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_spikeWave_02_001.png", - "glow_frame": "d_spikeWave_02_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "421": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_05_001.png", - "glow_frame": "pit_05_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "422": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_05_02_001.png", - "glow_frame": "pit_05_02_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "446": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_06_001.png", - "glow_frame": "pit_06_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "447": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_06_2_001.png", - "glow_frame": "pit_06_2_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.8666666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "448": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_pit06wave_01_001.png", - "glow_frame": "d_pit06wave_01_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "449": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_pit06wave_02_001.png", - "glow_frame": "d_pit06wave_02_glow_001.png", - "gridH": 0.6833333373069763, - "gridW": 0.800000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "450": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_pillar_01_001.png", - "glow_frame": "d_pillar_01_glow_001.png", - "gridH": 2, - "gridW": 1.5833333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "451": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_pillar_02_001.png", - "glow_frame": "d_pillar_02_glow_001.png", - "gridH": 1.2833333015441895, - "gridW": 1.2000000476837158, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "452": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_pillar_03_001.png", - "glow_frame": "d_pillar_03_glow_001.png", - "gridH": 0.7166666388511658, - "gridW": 0.8500000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "453": { - "can_color": true, - "children": [ - { - "frame": "d_link_b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "d_link_c_01_001.png", - "glow_frame": "d_link_c_01_glow_001.png", - "gridH": 1, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "454": { - "can_color": true, - "children": [ - { - "frame": "d_link_b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "d_link_c_02_001.png", - "glow_frame": "d_link_c_02_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "455": { - "can_color": true, - "children": [ - { - "frame": "d_link_b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "d_link_c_03_001.png", - "glow_frame": "d_link_c_03_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "456": { - "can_color": true, - "children": [ - { - "frame": "d_link_b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "d_link_c_04_001.png", - "glow_frame": "d_link_c_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "457": { - "can_color": true, - "children": [ - { - "frame": "d_link_b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "d_link_c_05_001.png", - "glow_frame": "d_link_c_05_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "458": { - "can_color": true, - "children": [ - { - "frame": "colorSpike_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "colorSpike_04_001.png", - "glow_frame": "colorSpike_04_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "459": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "invis_spike_04_001.png", - "glow_frame": "invis_spike_04_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "460": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_arrow_02_001.png", - "glow_frame": "d_arrow_02_glow_001.png", - "gridH": 1.4666666984558105, - "gridW": 0.949999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "461": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_thorn_01_001.png", - "glow_frame": "d_thorn_01_glow_001.png", - "gridH": 1, - "gridW": 0.9166666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "462": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_thorn_02_001.png", - "glow_frame": "d_thorn_02_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 0.5833333134651184, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "463": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_thorn_03_001.png", - "glow_frame": "d_thorn_03_glow_001.png", - "gridH": 1, - "gridW": 0.699999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "464": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_thorn_04_001.png", - "glow_frame": "d_thorn_04_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.5833333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "465": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_thorn_05_001.png", - "glow_frame": "d_thorn_05_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "466": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_thorn_06_001.png", - "glow_frame": "d_thorn_06_glow_001.png", - "gridH": 1.5499999523162842, - "gridW": 1.5666667222976685, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "467": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "468": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_02_001.png", - "glow_frame": "blockOutline_02_glow_001.png", - "gridH": 0.05000000074505806, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "469": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_03_001.png", - "glow_frame": "blockOutline_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "470": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_04_001.png", - "glow_frame": "blockOutline_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "471": { - "can_color": true, - "children": [ - { - "frame": "blockOutline_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_05_001.png", - "glow_frame": "blockOutline_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "472": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_06_001.png", - "glow_frame": "blockOutline_06_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.06666667014360428, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "473": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_07_001.png", - "glow_frame": "blockOutline_07_glow_001.png", - "gridH": 0.0833333358168602, - "gridW": 0.0833333358168602, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "474": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_08_001.png", - "glow_frame": "blockOutline_08_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "475": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_09_001.png", - "glow_frame": "blockOutline_09_glow_001.png", - "gridH": 0.05000000074505806, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "476": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block001_01_001.png", - "glow_frame": "block001_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "477": { - "can_color": true, - "children": [ - { - "frame": "block001_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block001_02_001.png", - "glow_frame": "block001_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "478": { - "can_color": true, - "children": [ - { - "frame": "block001_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block001_03_001.png", - "glow_frame": "block001_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "479": { - "can_color": true, - "children": [ - { - "frame": "block001_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block001_04_001.png", - "glow_frame": "block001_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "480": { - "can_color": true, - "children": [ - { - "frame": "block001_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block001_05_001.png", - "glow_frame": "block001_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "481": { - "can_color": true, - "children": [ - { - "frame": "block001_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block001_06_001.png", - "glow_frame": "block001_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "482": { - "can_color": true, - "children": [ - { - "frame": "block001_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block001_07_001.png", - "glow_frame": "block001_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "483": { - "can_color": true, - "children": [ - { - "frame": "block001_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block001_slope_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "484": { - "can_color": true, - "children": [ - { - "frame": "block001_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block001_slope_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "485": { - "can_color": true, - "children": [ - { - "frame": "block002_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block002_01_001.png", - "glow_frame": "block002_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "486": { - "can_color": true, - "children": [ - { - "frame": "block002_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block002_02_001.png", - "glow_frame": "block002_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "487": { - "can_color": true, - "children": [ - { - "frame": "block002_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block002_03_001.png", - "glow_frame": "block002_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "488": { - "can_color": true, - "children": [ - { - "frame": "block002_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block002_04_001.png", - "glow_frame": "block002_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "489": { - "can_color": true, - "children": [ - { - "frame": "block002_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block002_02_001.png", - "glow_frame": "block002_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "490": { - "can_color": true, - "children": [ - { - "frame": "block002_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block002_06_001.png", - "glow_frame": "block002_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "491": { - "can_color": true, - "children": [ - { - "frame": "block002_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block002_02_001.png", - "glow_frame": "block002_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "492": { - "can_color": true, - "children": [ - { - "frame": "block002_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block002_slope_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "493": { - "can_color": true, - "children": [ - { - "frame": "block002_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block002_slope_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "494": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_arrow_03_001.png", - "glow_frame": "d_arrow_03_glow_001.png", - "gridH": 1.4666666984558105, - "gridW": 0.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "495": { - "can_color": true, - "default_base_color_channel": 1006, - "frame": "d_largeSquare_01_001.png", - "glow_frame": "d_largeSquare_01_glow_001.png", - "gridH": 1.3333333730697632, - "gridW": 1.3333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "496": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_largeSquare_02_001.png", - "glow_frame": "d_largeSquare_02_glow_001.png", - "gridH": 1.3333333730697632, - "gridW": 1.3333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "497": { - "can_color": true, - "default_base_color_channel": 1005, - "frame": "d_circle_02_001.png", - "glow_frame": "d_circle_02_glow_001.png", - "gridH": 1.6666666269302368, - "gridW": 1.6666666269302368, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "498": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_03_chain_01_001.png", - "glow_frame": "d_03_chain_01_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "499": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_03_chain_02_001.png", - "glow_frame": "d_03_chain_02_glow_001.png", - "gridH": 0.4166666567325592, - "gridW": 0.7833333611488342, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "500": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_swirve_03_001.png", - "glow_frame": "d_swirve_03_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "501": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_swirve_04_001.png", - "glow_frame": "d_swirve_04_glow_001.png", - "gridH": 0.7833333611488342, - "gridW": 0.7833333611488342, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "502": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_09_001.png", - "glow_frame": "square_09_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "503": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_01_001.png", - "glow_frame": "d_gradient_01_glow_001.png", - "gridH": 0.6499999761581421, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "504": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_02_001.png", - "glow_frame": "d_gradient_02_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "505": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_03_001.png", - "glow_frame": "d_gradient_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "506": { - "can_color": true, - "default_base_color_channel": 1003, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -6 - }, - "507": { - "can_color": true, - "default_base_color_channel": 1003, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -6 - }, - "508": { - "can_color": true, - "default_base_color_channel": 1003, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -6 - }, - "509": { - "can_color": true, - "default_base_color_channel": 1003, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -6 - }, - "510": { - "can_color": true, - "default_base_color_channel": 1003, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -6 - }, - "511": { - "can_color": true, - "default_base_color_channel": 1003, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -6 - }, - "512": { - "can_color": true, - "default_base_color_channel": 1003, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -6 - }, - "513": { - "can_color": true, - "default_base_color_channel": 1003, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -6 - }, - "514": { - "can_color": true, - "default_base_color_channel": 1003, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -6 - }, - "515": { - "can_color": true, - "children": [ - { - "frame": "persp_blockb_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockb_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "516": { - "can_color": true, - "children": [ - { - "frame": "persp_blockb_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockb_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "517": { - "can_color": true, - "children": [ - { - "frame": "persp_blockb_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "518": { - "can_color": true, - "children": [ - { - "frame": "persp_blockb_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockb_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "519": { - "can_color": true, - "children": [ - { - "frame": "persp_blockb_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockb_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "520": { - "can_color": true, - "children": [ - { - "frame": "persp_blockb_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "521": { - "can_color": true, - "children": [ - { - "frame": "persp_blockb_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "522": { - "can_color": true, - "children": [ - { - "frame": "persp_blockb_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockb_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockb_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockb_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "523": { - "can_color": true, - "children": [ - { - "frame": "persp_blockb_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockb_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockb_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "524": { - "can_color": true, - "children": [ - { - "frame": "persp_blockc_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockc_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "525": { - "can_color": true, - "children": [ - { - "frame": "persp_blockc_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockc_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "526": { - "can_color": true, - "children": [ - { - "frame": "persp_blockc_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "527": { - "can_color": true, - "children": [ - { - "frame": "persp_blockc_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockc_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "528": { - "can_color": true, - "children": [ - { - "frame": "persp_blockc_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockc_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "529": { - "can_color": true, - "children": [ - { - "frame": "persp_blockc_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "530": { - "can_color": true, - "children": [ - { - "frame": "persp_blockc_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "531": { - "can_color": true, - "children": [ - { - "frame": "persp_blockc_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockc_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockc_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockc_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "532": { - "can_color": true, - "children": [ - { - "frame": "persp_blockc_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockc_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockc_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "533": { - "can_color": true, - "children": [ - { - "frame": "persp_blockd_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockd_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "534": { - "can_color": true, - "children": [ - { - "frame": "persp_blockd_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockd_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "535": { - "can_color": true, - "children": [ - { - "frame": "persp_blockd_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "536": { - "can_color": true, - "children": [ - { - "frame": "persp_blockd_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockd_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "537": { - "can_color": true, - "children": [ - { - "frame": "persp_blockd_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockd_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "538": { - "can_color": true, - "children": [ - { - "frame": "persp_blockd_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "539": { - "can_color": true, - "children": [ - { - "frame": "persp_blockd_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "540": { - "can_color": true, - "children": [ - { - "frame": "persp_blockd_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockd_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockd_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockd_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "541": { - "can_color": true, - "children": [ - { - "frame": "persp_blockd_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockd_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockd_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "542": { - "can_color": true, - "children": [ - { - "frame": "persp_blocke_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blocke_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "543": { - "can_color": true, - "children": [ - { - "frame": "persp_blocke_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blocke_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "544": { - "can_color": true, - "children": [ - { - "frame": "persp_blocke_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "545": { - "can_color": true, - "children": [ - { - "frame": "persp_blocke_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blocke_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "546": { - "can_color": true, - "children": [ - { - "frame": "persp_blocke_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blocke_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "547": { - "can_color": true, - "children": [ - { - "frame": "persp_blocke_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "548": { - "can_color": true, - "children": [ - { - "frame": "persp_blocke_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "549": { - "can_color": true, - "children": [ - { - "frame": "persp_blocke_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blocke_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blocke_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blocke_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "550": { - "can_color": true, - "children": [ - { - "frame": "persp_blocke_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blocke_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blocke_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "551": { - "can_color": true, - "children": [ - { - "frame": "persp_blockf_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockf_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "552": { - "can_color": true, - "children": [ - { - "frame": "persp_blockf_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockf_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "553": { - "can_color": true, - "children": [ - { - "frame": "persp_blockf_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "554": { - "can_color": true, - "children": [ - { - "frame": "persp_blockf_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockf_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "555": { - "can_color": true, - "children": [ - { - "frame": "persp_blockf_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockf_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "556": { - "can_color": true, - "children": [ - { - "frame": "persp_blockf_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "557": { - "can_color": true, - "children": [ - { - "frame": "persp_blockf_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "558": { - "can_color": true, - "children": [ - { - "frame": "persp_blockf_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockf_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockf_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockf_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "559": { - "can_color": true, - "children": [ - { - "frame": "persp_blockf_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockf_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockf_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "560": { - "can_color": true, - "children": [ - { - "frame": "persp_blockg_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockg_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "561": { - "can_color": true, - "children": [ - { - "frame": "persp_blockg_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockg_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "562": { - "can_color": true, - "children": [ - { - "frame": "persp_blockg_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "563": { - "can_color": true, - "children": [ - { - "frame": "persp_blockg_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockg_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "564": { - "can_color": true, - "children": [ - { - "frame": "persp_blockg_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockg_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "565": { - "can_color": true, - "children": [ - { - "frame": "persp_blockg_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "566": { - "can_color": true, - "children": [ - { - "frame": "persp_blockg_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "567": { - "can_color": true, - "children": [ - { - "frame": "persp_blockg_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockg_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockg_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockg_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "568": { - "can_color": true, - "children": [ - { - "frame": "persp_blockg_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockg_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockg_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "569": { - "can_color": true, - "children": [ - { - "frame": "persp_blockh_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockh_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "570": { - "can_color": true, - "children": [ - { - "frame": "persp_blockh_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockh_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "571": { - "can_color": true, - "children": [ - { - "frame": "persp_blockh_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "572": { - "can_color": true, - "children": [ - { - "frame": "persp_blockh_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockh_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "573": { - "can_color": true, - "children": [ - { - "frame": "persp_blockh_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockh_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "574": { - "can_color": true, - "children": [ - { - "frame": "persp_blockh_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "575": { - "can_color": true, - "children": [ - { - "frame": "persp_blockh_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "576": { - "can_color": true, - "children": [ - { - "frame": "persp_blockh_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockh_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockh_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockh_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "577": { - "can_color": true, - "children": [ - { - "frame": "persp_blockh_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockh_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_blockh_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "578": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "579": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "580": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "581": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "582": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "583": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "584": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "585": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "586": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "587": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock02_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock02_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "588": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock02_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock02_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "589": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock02_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "590": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock02_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock02_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "591": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock02_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock02_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "592": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock02_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "593": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock02_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "594": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock02_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock02_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock02_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock02_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "595": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock02_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock02_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock02_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "596": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock03_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock03_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "597": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock03_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock03_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "598": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock03_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "599": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock03_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock03_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "600": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock03_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock03_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "601": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock03_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "602": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock03_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "603": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock03_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock03_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock03_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock03_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "604": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock03_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock03_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock03_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "605": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock04_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "606": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock04_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock04_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "607": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock04_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "608": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock04_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock04_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "609": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock04_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "610": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock04_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "611": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock04_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "612": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock04_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock04_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock04_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock04_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "613": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock04_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock04_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock04_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "614": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock05_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock05_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "615": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock05_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock05_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "616": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock05_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "617": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock05_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock05_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "618": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock05_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock05_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "619": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock05_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "620": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock05_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "621": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock05_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock05_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock05_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock05_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "622": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock05_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock05_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock05_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "623": { - "can_color": true, - "children": [ - { - "frame": "persp_block001_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block001_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "624": { - "can_color": true, - "children": [ - { - "frame": "persp_block001_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block001_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "625": { - "can_color": true, - "children": [ - { - "frame": "persp_block001_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "626": { - "can_color": true, - "children": [ - { - "frame": "persp_block001_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block001_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "627": { - "can_color": true, - "children": [ - { - "frame": "persp_block001_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block001_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "628": { - "can_color": true, - "children": [ - { - "frame": "persp_block001_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "629": { - "can_color": true, - "children": [ - { - "frame": "persp_block001_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "630": { - "can_color": true, - "children": [ - { - "frame": "persp_block001_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block001_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block001_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block001_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "631": { - "can_color": true, - "children": [ - { - "frame": "persp_block001_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block001_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block001_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "632": { - "can_color": true, - "children": [ - { - "frame": "persp_block002_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block002_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "633": { - "can_color": true, - "children": [ - { - "frame": "persp_block002_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block002_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "634": { - "can_color": true, - "children": [ - { - "frame": "persp_block002_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "635": { - "can_color": true, - "children": [ - { - "frame": "persp_block002_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block002_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "636": { - "can_color": true, - "children": [ - { - "frame": "persp_block002_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block002_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "637": { - "can_color": true, - "children": [ - { - "frame": "persp_block002_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "638": { - "can_color": true, - "children": [ - { - "frame": "persp_block002_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "639": { - "can_color": true, - "children": [ - { - "frame": "persp_block002_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block002_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block002_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block002_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "640": { - "can_color": true, - "children": [ - { - "frame": "persp_block002_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block002_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block002_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "641": { - "can_color": true, - "children": [ - { - "frame": "block003_color_02_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part03_001.png", - "glow_frame": "block003_part03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "642": { - "can_color": true, - "children": [ - { - "frame": "block003_color_03_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part04_001.png", - "glow_frame": "block003_part04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "643": { - "can_color": true, - "children": [ - { - "frame": "block003_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part06_001.png", - "glow_frame": "block003_part06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "644": { - "can_color": true, - "children": [ - { - "frame": "block003_color_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part05_001.png", - "glow_frame": "block003_part05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "645": { - "can_color": true, - "children": [ - { - "frame": "block003_color_06_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part01_001.png", - "glow_frame": "block003_part01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "646": { - "can_color": true, - "children": [ - { - "frame": "block003_color_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part01_001.png", - "glow_frame": "block003_part01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "647": { - "can_color": true, - "children": [ - { - "frame": "block003_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part02_001.png", - "glow_frame": "block003_part02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "648": { - "can_color": true, - "children": [ - { - "frame": "block003_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part01_001.png", - "glow_frame": "block003_part01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "649": { - "can_color": true, - "children": [ - { - "frame": "block003_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part01_001.png", - "glow_frame": "block003_part01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "650": { - "can_color": true, - "children": [ - { - "frame": "block003_color_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block003_part05_001.png", - "glow_frame": "block003_part05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "651": { - "can_color": true, - "children": [ - { - "frame": "block003_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_slope_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "652": { - "can_color": true, - "children": [ - { - "frame": "block003_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_slope_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "653": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece01_001.png", - "glow_frame": "d_block04_piece01_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "654": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece02_001.png", - "glow_frame": "d_block04_piece02_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "655": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece03_001.png", - "glow_frame": "d_block04_piece03_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "656": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece04_001.png", - "glow_frame": "d_block04_piece04_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "657": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece05_001.png", - "glow_frame": "d_block04_piece05_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "658": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece06_001.png", - "glow_frame": "d_block04_piece06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "659": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece07_001.png", - "glow_frame": "d_block04_piece07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "660": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_13_front_001.png", - "glow_frame": "portal_13_front_glow_001.png", - "gridH": 2.866666555404663, - "gridW": 1.1333333253860474, - "sub": "wave", - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "661": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_10_001.png", - "glow_frame": "blockOutline_10_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "662": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_11_001.png", - "glow_frame": "blockOutline_11_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "663": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_12_001.png", - "glow_frame": "blockOutline_12_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "664": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_13_001.png", - "glow_frame": "blockOutline_13_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "665": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "666": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "667": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_07_001.png", - "glow_frame": "pit_07_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "668": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_001_001.png", - "glow_frame": "d_pixelArt01_001_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "669": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_002_001.png", - "glow_frame": "d_pixelArt01_002_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "670": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_003_001.png", - "glow_frame": "d_pixelArt01_003_glow_001.png", - "gridH": 0.25, - "gridW": 0.25, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "671": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_004_001.png", - "glow_frame": "d_pixelArt01_004_glow_001.png", - "gridH": 1, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "672": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_005_001.png", - "glow_frame": "d_pixelArt01_005_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "673": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "invis_triangle_02_001.png", - "glow_frame": "invis_triangle_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "674": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "invis_triangle_04_001.png", - "glow_frame": "invis_triangle_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "678": { - "can_color": true, - "children": [ - { - "frame": "lightBlade_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "lightBlade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "lightBlade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "lightBlade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "lightBlade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightBlade_01_001.png", - "glow_frame": "lightBlade_01_glow_001.png", - "gridH": 1.3666666746139526, - "gridW": 1.3333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "hitbox_radius": 30.399999618530273, - "default_z_layer": 5, - "default_z_order": 0 - }, - "679": { - "can_color": true, - "children": [ - { - "frame": "lightBlade_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "lightBlade_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightBlade_02_001.png", - "glow_frame": "lightBlade_02_glow_001.png", - "gridH": 1.7999999523162842, - "gridW": 1.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "hitbox_radius": 18.540000915527344, - "default_z_layer": 5, - "default_z_order": 0 - }, - "680": { - "can_color": true, - "children": [ - { - "frame": "lightBlade_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "lightBlade_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "lightBlade_03_001.png", - "glow_frame": "lightBlade_03_glow_001.png", - "gridH": 1.2000000476837158, - "gridW": 1.2000000476837158, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "hitbox_radius": 10.800000190734863, - "default_z_layer": 5, - "default_z_order": 0 - }, - "681": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_a_02_001.png", - "glow_frame": "triangle_a_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "682": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_a_04_001.png", - "glow_frame": "triangle_a_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "683": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_c_02_001.png", - "glow_frame": "triangle_c_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "684": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_c_04_001.png", - "glow_frame": "triangle_c_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "685": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_d_02_001.png", - "glow_frame": "triangle_d_02_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.8500000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "686": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_d_04_001.png", - "glow_frame": "triangle_d_04_glow_001.png", - "gridH": 0.9333333373069763, - "gridW": 1.850000023841858, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "687": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "lighttriangle_01_02_color_001.png", - "glow_frame": "lighttriangle_01_02_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "688": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "lighttriangle_01_04_color_001.png", - "glow_frame": "lighttriangle_01_04_color_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "689": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_f_02_001.png", - "glow_frame": "triangle_f_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "690": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_f_04_001.png", - "glow_frame": "triangle_f_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "691": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_g_02_001.png", - "glow_frame": "triangle_g_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "692": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "triangle_g_04_001.png", - "glow_frame": "triangle_g_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "693": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_01_02_color_001.png", - "glow_frame": "lighttriangle_01_02_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "694": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_01_04_color_001.png", - "glow_frame": "lighttriangle_01_04_color_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "695": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_02_02_color_001.png", - "glow_frame": "lighttriangle_02_02_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "696": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_02_04_color_001.png", - "glow_frame": "lighttriangle_02_04_color_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "697": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_03_02_color_001.png", - "glow_frame": "lighttriangle_03_02_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "698": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_03_04_color_001.png", - "glow_frame": "lighttriangle_03_04_color_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "699": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_04_02_color_001.png", - "glow_frame": "lighttriangle_04_02_color_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.8500000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "700": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_04_04_color_001.png", - "glow_frame": "lighttriangle_04_04_color_glow_001.png", - "gridH": 0.9333333373069763, - "gridW": 1.850000023841858, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "701": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_05_02_color_001.png", - "glow_frame": "lighttriangle_05_02_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "702": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lighttriangle_05_04_color_001.png", - "glow_frame": "lighttriangle_05_04_color_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "703": { - "can_color": true, - "children": [ - { - "frame": "block001_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block001_slope_01_001.png", - "glow_frame": "block001_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "704": { - "can_color": true, - "children": [ - { - "frame": "block001_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block001_slope_02_001.png", - "glow_frame": "block001_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "705": { - "can_color": true, - "children": [ - { - "frame": "block002_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block002_slope_01_001.png", - "glow_frame": "block002_slope_01_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "706": { - "can_color": true, - "children": [ - { - "frame": "block002_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block002_slope_02_001.png", - "glow_frame": "block002_slope_02_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 1.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "707": { - "can_color": true, - "children": [ - { - "frame": "block003_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_slope_01_001.png", - "glow_frame": "block003_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "708": { - "can_color": true, - "children": [ - { - "frame": "block003_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_slope_02_001.png", - "glow_frame": "block003_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "709": { - "can_color": true, - "children": [ - { - "frame": "block004_slope_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "710": { - "can_color": true, - "children": [ - { - "frame": "block004_slope_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "711": { - "can_color": true, - "children": [ - { - "frame": "block004_slope_01b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "712": { - "can_color": true, - "children": [ - { - "frame": "block004_slope_02b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "713": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block004_slope_01_001.png", - "glow_frame": "block004_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "714": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block004_slope_02_001.png", - "glow_frame": "block004_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "715": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block004_slope_01b_001.png", - "glow_frame": "block004_slope_01b_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "716": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block004_slope_02b_001.png", - "glow_frame": "block004_slope_02b_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "719": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pit_07_shine_001.png", - "glow_frame": "pit_07_shine_glow_001.png", - "gridH": 0.3166666626930237, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "720": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_07_2_001.png", - "glow_frame": "pit_07_2_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "721": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pit_07_2_shine_001.png", - "glow_frame": "pit_07_2_shine_glow_001.png", - "gridH": 0.3166666626930237, - "gridW": 0.3166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "722": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece08_001.png", - "glow_frame": "d_block04_piece08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "723": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece09_001.png", - "glow_frame": "d_block04_piece09_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "724": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece10_001.png", - "glow_frame": "d_block04_piece10_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "725": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_link_b_01_color_001.png", - "glow_frame": "d_link_b_01_color_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "726": { - "can_color": true, - "children": [ - { - "frame": "block004_slope_01c_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "727": { - "can_color": true, - "children": [ - { - "frame": "block004_slope_02c_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "728": { - "can_color": true, - "children": [ - { - "frame": "block004_slope_01d_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "729": { - "can_color": true, - "children": [ - { - "frame": "block004_slope_02d_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "730": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block004_slope_01c_001.png", - "glow_frame": "block004_slope_01c_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "731": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block004_slope_02c_001.png", - "glow_frame": "block004_slope_02c_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "732": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block004_slope_01d_001.png", - "glow_frame": "block004_slope_01d_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "733": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block004_slope_02d_001.png", - "glow_frame": "block004_slope_02d_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "734": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece11_001.png", - "glow_frame": "d_block04_piece11_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "735": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece12_001.png", - "glow_frame": "d_block04_piece12_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "736": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_block04_piece13_001.png", - "glow_frame": "d_block04_piece13_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "737": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_12_001.png", - "glow_frame": "square_g_12_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "738": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_006_001.png", - "glow_frame": "d_pixelArt01_006_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "739": { - "can_color": true, - "children": [ - { - "frame": "block003_color_03_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part04_001.png", - "glow_frame": "block003_part04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "740": { - "can_color": true, - "children": [ - { - "frame": "blade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "blade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "blade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "blade_01_001.png", - "glow_frame": "blade_01_glow_001.png", - "gridH": 1.4333332777023315, - "gridW": 1.4333332777023315, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 32.29999923706055, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "741": { - "can_color": true, - "children": [ - { - "frame": "blade_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blade_02_001.png", - "glow_frame": "blade_02_glow_001.png", - "gridH": 2.0333333015441895, - "gridW": 2.0333333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 21.8700008392334, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "742": { - "can_color": true, - "children": [ - { - "frame": "blade_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blade_03_001.png", - "glow_frame": "blade_03_glow_001.png", - "gridH": 1.399999976158142, - "gridW": 1.399999976158142, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 12.600000381469727, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "744": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "745": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_14_front_001.png", - "glow_frame": "portal_14_front_glow_001.png", - "gridH": 2.866666555404663, - "gridW": 1.1333333253860474, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "747": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_15_front_001.png", - "glow_frame": "portal_15_front_glow_001.png", - "gridH": 3, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "749": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_16_front_001.png", - "glow_frame": "portal_16_front_glow_001.png", - "gridH": 3, - "gridW": 1.2833333015441895, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "752": { - "can_color": true, - "children": [ - { - "frame": "block005_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_02_001.png", - "glow_frame": "block005_02_glow_001.png", - "gridH": 0.75, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "753": { - "can_color": true, - "children": [ - { - "frame": "block005_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_03_001.png", - "glow_frame": "block005_03_glow_001.png", - "gridH": 0.75, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "754": { - "can_color": true, - "children": [ - { - "frame": "block005_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_04_001.png", - "glow_frame": "block005_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "755": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005_05_001.png", - "glow_frame": "block005_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "756": { - "can_color": true, - "children": [ - { - "frame": "block005_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_06_001.png", - "glow_frame": "block005_06_glow_001.png", - "gridH": 0.7166666388511658, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "757": { - "can_color": true, - "children": [ - { - "frame": "block005_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_07_001.png", - "glow_frame": "block005_07_glow_001.png", - "gridH": 1, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "758": { - "can_color": true, - "children": [ - { - "frame": "block005_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_08_001.png", - "glow_frame": "block005_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "759": { - "can_color": true, - "children": [ - { - "frame": "block005_09_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_09_001.png", - "glow_frame": "block005_09_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4000000059604645, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "762": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_slope_01_001.png", - "glow_frame": "block005_slope_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "763": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_slope_02_001.png", - "glow_frame": "block005_slope_02_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1.2833333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "764": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_slope_square_01_001.png", - "glow_frame": "block005_slope_square_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "765": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_slope_square_02_001.png", - "glow_frame": "block005_slope_square_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "766": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005_slope_square_03_001.png", - "glow_frame": "block005_slope_square_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "767": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_spikeWave_03_001.png", - "glow_frame": "d_spikeWave_03_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "768": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_05_03_001.png", - "glow_frame": "pit_05_03_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "769": { - "can_color": true, - "children": [ - { - "frame": "block005_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005_01_001.png", - "glow_frame": "plank005_01_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "770": { - "can_color": true, - "children": [ - { - "frame": "plank005_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005_02_001.png", - "glow_frame": "plank005_02_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "771": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005_slope_01_001.png", - "glow_frame": "plank005_slope_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "772": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005_slope_02_001.png", - "glow_frame": "plank005_slope_02_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1.2833333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "773": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005_slope_square_01_001.png", - "glow_frame": "plank005_slope_square_01_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "774": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005_slope_square_02_001.png", - "glow_frame": "plank005_slope_square_02_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "775": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "plank005_slope_square_03_001.png", - "glow_frame": "plank005_slope_square_03_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.8666666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "807": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_001_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_002_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_01_001.png", - "glow_frame": "block007_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "808": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_001_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_002_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_01_001.png", - "glow_frame": "block007_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "809": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_002_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_003_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_02_001.png", - "glow_frame": "block007_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "810": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_002_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_003_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_02_001.png", - "glow_frame": "block007_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "811": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_008_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_004_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_03_001.png", - "glow_frame": "block007_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "812": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_008_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_004_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_03_001.png", - "glow_frame": "block007_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "813": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_003_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_005_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_04_001.png", - "glow_frame": "block007_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "814": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_003_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_005_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_04_001.png", - "glow_frame": "block007_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "815": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_003_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_006_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_05_001.png", - "glow_frame": "block007_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "816": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_003_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_006_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_05_001.png", - "glow_frame": "block007_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "817": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_001_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_06_001.png", - "glow_frame": "block007_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "818": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_001_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_06_001.png", - "glow_frame": "block007_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "819": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_007_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_07_001.png", - "glow_frame": "block007_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "820": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_007_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_07_001.png", - "glow_frame": "block007_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "821": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_008_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - }, - { - "frame": "block007_bgcolor_008_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_08_001.png", - "glow_frame": "block007_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "822": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_008_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - }, - { - "frame": "block007_bgcolor_008_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_08_001.png", - "glow_frame": "block007_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "823": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_bgcolor_001_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "block007_09_001.png", - "glow_frame": "block007_09_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "824": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_bgcolor_001_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "block007_09_001.png", - "glow_frame": "block007_09_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "825": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_bgcolor_001_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_09_001.png", - "glow_frame": "block007_09_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "826": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_009_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_01_001.png", - "glow_frame": "block007_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "827": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_009_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_01_001.png", - "glow_frame": "block007_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "828": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_010_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - }, - { - "frame": "block007_bgcolor_011_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_02_001.png", - "glow_frame": "block007_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "829": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_010_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - }, - { - "frame": "block007_bgcolor_011_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_02_001.png", - "glow_frame": "block007_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "830": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_001_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_square_01_001.png", - "glow_frame": "block007_slope_square_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "831": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_001_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_square_01_001.png", - "glow_frame": "block007_slope_square_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "832": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_001_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_square_02_001.png", - "glow_frame": "block007_slope_square_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "833": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_001_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_square_02_001.png", - "glow_frame": "block007_slope_square_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "841": { - "can_color": true, - "children": [ - { - "frame": "block007b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1011, - "frame": "block007b_01_001.png", - "glow_frame": "block007b_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "842": { - "can_color": true, - "children": [ - { - "frame": "block007b_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block007b_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block007b_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1011, - "frame": "block007b_05_001.png", - "glow_frame": "block007b_05_glow_001.png", - "gridH": 0.21666666865348816, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "843": { - "can_color": true, - "children": [ - { - "frame": "block007b_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block007b_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1011, - "frame": "block007b_03_001.png", - "glow_frame": "block007b_03_glow_001.png", - "gridH": 0.21666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "844": { - "can_color": true, - "children": [ - { - "frame": "block007b_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block007b_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1011, - "frame": "block007b_03_001.png", - "glow_frame": "block007b_03_glow_001.png", - "gridH": 0.21666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "845": { - "can_color": true, - "children": [ - { - "frame": "block007b_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block007b_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block007b_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block007b_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1011, - "frame": "block007b_05_001.png", - "glow_frame": "block007b_05_glow_001.png", - "gridH": 0.21666666865348816, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "846": { - "can_color": true, - "children": [ - { - "frame": "block007b_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1011, - "frame": "block007b_06_001.png", - "glow_frame": "block007b_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "847": { - "can_color": true, - "children": [ - { - "frame": "block007b_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1011, - "frame": "block007b_07_001.png", - "glow_frame": "block007b_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "848": { - "can_color": true, - "children": [ - { - "frame": "block007b_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1011, - "frame": "block007b_08_001.png", - "glow_frame": "block007b_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "850": { - "can_color": true, - "children": [ - { - "frame": "block008_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_02_001.png", - "glow_frame": "block008_02_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "853": { - "can_color": true, - "children": [ - { - "frame": "block008_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_03_001.png", - "glow_frame": "block008_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "854": { - "can_color": true, - "children": [ - { - "frame": "block008_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_04_001.png", - "glow_frame": "block008_04_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "855": { - "can_color": true, - "children": [ - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_05_001.png", - "glow_frame": "block008_05_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "856": { - "can_color": true, - "children": [ - { - "frame": "block008_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_06_001.png", - "glow_frame": "block008_06_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "857": { - "can_color": true, - "children": [ - { - "frame": "block008_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_07_001.png", - "glow_frame": "block008_07_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "859": { - "can_color": true, - "children": [ - { - "frame": "block008_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_08_001.png", - "glow_frame": "block008_08_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "861": { - "can_color": true, - "children": [ - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_09_001.png", - "glow_frame": "block008_09_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "862": { - "can_color": true, - "children": [ - { - "frame": "block008_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_10_001.png", - "glow_frame": "block008_10_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "863": { - "can_color": true, - "children": [ - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block008_11_001.png", - "glow_frame": "block008_11_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "867": { - "can_color": true, - "children": [ - { - "frame": "block009_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_01_001.png", - "glow_frame": "block009_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "868": { - "can_color": true, - "children": [ - { - "frame": "block009_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_02_001.png", - "glow_frame": "block009_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "869": { - "can_color": true, - "children": [ - { - "frame": "block009_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_03_001.png", - "glow_frame": "block009_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "870": { - "can_color": true, - "children": [ - { - "frame": "block009_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_04_001.png", - "glow_frame": "block009_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "871": { - "can_color": true, - "children": [ - { - "frame": "block009_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_05_001.png", - "glow_frame": "block009_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "872": { - "can_color": true, - "children": [ - { - "frame": "block009_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_06_001.png", - "glow_frame": "block009_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "873": { - "can_color": true, - "children": [ - { - "frame": "block009_part_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_part_01_001.png", - "glow_frame": "block009_part_01_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "874": { - "can_color": true, - "children": [ - { - "frame": "block009_part_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_part_02_001.png", - "glow_frame": "block009_part_02_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "877": { - "can_color": true, - "children": [ - { - "frame": "block009_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_slope_01_001.png", - "glow_frame": "block009_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "878": { - "can_color": true, - "children": [ - { - "frame": "block009_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_slope_02_001.png", - "glow_frame": "block009_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "880": { - "can_color": true, - "children": [ - { - "frame": "block009b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_01_001.png", - "glow_frame": "block009b_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "881": { - "can_color": true, - "children": [ - { - "frame": "block009b_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_02_001.png", - "glow_frame": "block009b_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "882": { - "can_color": true, - "children": [ - { - "frame": "block009b_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_03_001.png", - "glow_frame": "block009b_03_glow_001.png", - "gridH": 1, - "gridW": 0.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "883": { - "can_color": true, - "children": [ - { - "frame": "block009b_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_04_001.png", - "glow_frame": "block009b_04_glow_001.png", - "gridH": 1, - "gridW": 0.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "884": { - "can_color": true, - "children": [ - { - "frame": "block009b_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_05_001.png", - "glow_frame": "block009b_05_glow_001.png", - "gridH": 1, - "gridW": 0.9166666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "885": { - "can_color": true, - "children": [ - { - "frame": "block009b_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_06_001.png", - "glow_frame": "block009b_06_glow_001.png", - "gridH": 1, - "gridW": 0.9166666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "886": { - "can_color": true, - "children": [ - { - "frame": "block009b_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block009b_slope_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "887": { - "can_color": true, - "children": [ - { - "frame": "block009b_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block009b_slope_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "888": { - "can_color": true, - "children": [ - { - "frame": "block009b_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_slope_01_001.png", - "glow_frame": "block009b_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "889": { - "can_color": true, - "children": [ - { - "frame": "block009b_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_slope_02_001.png", - "glow_frame": "block009b_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "890": { - "can_color": true, - "children": [ - { - "frame": "block009c_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_01_001.png", - "glow_frame": "block009c_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "891": { - "can_color": true, - "children": [ - { - "frame": "block009c_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_02_001.png", - "glow_frame": "block009c_02_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "893": { - "can_color": true, - "children": [ - { - "frame": "block009c_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_04_001.png", - "glow_frame": "block009c_04_glow_001.png", - "gridH": 0.5, - "gridW": 0.36666667461395264, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "894": { - "can_color": true, - "children": [ - { - "frame": "block009c_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_05_001.png", - "glow_frame": "block009c_05_glow_001.png", - "gridH": 0.5, - "gridW": 0.36666667461395264, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "895": { - "can_color": true, - "children": [ - { - "frame": "block009c_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_slope_01_001.png", - "glow_frame": "block009c_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "896": { - "can_color": true, - "children": [ - { - "frame": "block009c_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_slope_02_001.png", - "glow_frame": "block009c_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "899": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "900": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "901": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "902": { - "can_color": true, - "children": [ - { - "frame": "persp_lblock01_06_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_06_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_06_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_lblock01_06_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 3, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -6 - }, - "903": { - "can_color": true, - "children": [ - { - "frame": "block005_10_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_10_001.png", - "glow_frame": "block005_10_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "904": { - "can_color": true, - "children": [ - { - "frame": "block005_11_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_11_001.png", - "glow_frame": "block005_11_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "905": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005_12_001.png", - "glow_frame": "block005_12_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "906": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_grass_05_001.png", - "glow_frame": "d_grass_05_glow_001.png", - "gridH": 0.6833333373069763, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "907": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_grassArt_01_001.png", - "glow_frame": "d_grassArt_01_glow_001.png", - "gridH": 0.75, - "gridW": 2.316666603088379, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "908": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_grassArt_02_001.png", - "glow_frame": "d_grassArt_02_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.9666666388511658, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "909": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_grassArt_03_001.png", - "glow_frame": "d_grassArt_03_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "910": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_grassArt_04_001.png", - "glow_frame": "d_grassArt_04_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4833333194255829, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "911": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005_13_001.png", - "glow_frame": "block005_13_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "915": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "916": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "block006_color_05_001.png", - "glow_frame": "block006_color_05_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "917": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_whiteBlock_02_001.png", - "glow_frame": "d_whiteBlock_02_glow_001.png", - "gridH": 0.25, - "gridW": 0.25, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "918": { - "can_color": true, - "default_base_color_channel": 1010, - "default_detail_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 1.600000023841858, - "gridW": 1.600000023841858, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "hitbox_radius": 24, - "default_z_layer": 5, - "default_z_order": 2 - }, - "919": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": null, - "glow_frame": "none", - "gridH": 0.20000000298023224, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "920": { - "can_color": true, - "children": [ - { - "frame": "Fire_03_2_looped_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "Fire_03_looped_004.png", - "glow_frame": "Fire_03_looped_004.png", - "gridH": 1.7666666507720947, - "gridW": 2.0166666507720947, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "921": { - "can_color": true, - "children": [ - { - "frame": "Fire_04_2_looped_004.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "Fire_04_looped_011.png", - "glow_frame": "Fire_04_looped_011.png", - "gridH": 1.8166667222976685, - "gridW": 0.3499999940395355, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "923": { - "can_color": true, - "children": [ - { - "frame": "Fire_01_2_looped_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "Fire_01_looped_009.png", - "glow_frame": "Fire_01_looped_009.png", - "gridH": 1.75, - "gridW": 0.6166666746139526, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "924": { - "can_color": true, - "children": [ - { - "frame": "Fire_02_2_looped_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "Fire_02_looped_001.png", - "glow_frame": "Fire_02_looped_glow_001.png", - "gridH": 1.25, - "gridW": 0.6499999761581421, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "925": { - "can_color": true, - "children": [ - { - "frame": "d_rainbow_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_rainbow_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_rainbow_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "d_rainbow_01_001.png", - "glow_frame": "d_rainbow_01_glow_001.png", - "gridH": 2.3333332538604736, - "gridW": 2.3333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 2 - }, - "926": { - "can_color": true, - "children": [ - { - "frame": "d_rainbow_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_rainbow_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_rainbow_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "d_rainbow_02_001.png", - "glow_frame": "d_rainbow_02_glow_001.png", - "gridH": 4.333333492279053, - "gridW": 4.333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 2 - }, - "927": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_01_001.png", - "glow_frame": "block010_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "928": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_02_001.png", - "glow_frame": "block010_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "929": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_03_001.png", - "glow_frame": "block010_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "930": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_04_001.png", - "glow_frame": "block010_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "931": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_06_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_01_001.png", - "glow_frame": "block010_piece_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "932": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_06_001.png", - "glow_frame": "block010_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "933": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_07_001.png", - "glow_frame": "block010_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "934": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_08_001.png", - "glow_frame": "block010_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "935": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_05_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_01_001.png", - "glow_frame": "block010_piece_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "936": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_artCloud_01_001.png", - "glow_frame": "d_artCloud_01_glow_001.png", - "gridH": 1.149999976158142, - "gridW": 2.0166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "937": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_artCloud_02_001.png", - "glow_frame": "d_artCloud_02_glow_001.png", - "gridH": 1.3666666746139526, - "gridW": 2.5833332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "938": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_artCloud_03_001.png", - "glow_frame": "d_artCloud_03_glow_001.png", - "gridH": 0.7833333611488342, - "gridW": 1.2000000476837158, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "939": { - "can_color": true, - "children": [ - { - "frame": "d_flower01_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "d_flower01_01_001.png", - "glow_frame": "d_flower01_01_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 3, - "default_z_order": -5 - }, - "940": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_grassDetail_01_001.png", - "glow_frame": "d_grassDetail_01_glow_001.png", - "gridH": 1.0166666507720947, - "gridW": 0.8166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "941": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_grassDetail_02_001.png", - "glow_frame": "d_grassDetail_02_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "942": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_grassDetail_03_001.png", - "glow_frame": "d_grassDetail_03_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "943": { - "can_color": true, - "children": [ - { - "frame": "persp_block005_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "944": { - "can_color": true, - "children": [ - { - "frame": "persp_block005_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "945": { - "can_color": true, - "children": [ - { - "frame": "persp_block005_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "946": { - "can_color": true, - "children": [ - { - "frame": "persp_block005_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "947": { - "can_color": true, - "children": [ - { - "frame": "persp_block005_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "948": { - "can_color": true, - "children": [ - { - "frame": "persp_block005_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "949": { - "can_color": true, - "children": [ - { - "frame": "persp_block005_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "950": { - "can_color": true, - "children": [ - { - "frame": "persp_block005_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "951": { - "can_color": true, - "children": [ - { - "frame": "persp_block005_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "952": { - "can_color": true, - "children": [ - { - "frame": "block005_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_02_001.png", - "glow_frame": "block005b_02_glow_001.png", - "gridH": 0.75, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "953": { - "can_color": true, - "children": [ - { - "frame": "block005_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_03_001.png", - "glow_frame": "block005b_03_glow_001.png", - "gridH": 0.75, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "954": { - "can_color": true, - "children": [ - { - "frame": "block005_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_04_001.png", - "glow_frame": "block005b_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "955": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "956": { - "can_color": true, - "children": [ - { - "frame": "block005_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_06_001.png", - "glow_frame": "block005b_06_glow_001.png", - "gridH": 0.7166666388511658, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "957": { - "can_color": true, - "children": [ - { - "frame": "block005_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_07_001.png", - "glow_frame": "block005b_07_glow_001.png", - "gridH": 1, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "958": { - "can_color": true, - "children": [ - { - "frame": "block005_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_08_001.png", - "glow_frame": "block005b_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "959": { - "can_color": true, - "children": [ - { - "frame": "block005_09_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_09_001.png", - "glow_frame": "block005b_09_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4000000059604645, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "960": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_slope_01_001.png", - "glow_frame": "block005b_slope_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "961": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_slope_02_001.png", - "glow_frame": "block005b_slope_02_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1.2833333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "964": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_slope_square_01_001.png", - "glow_frame": "block005b_slope_square_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "965": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_slope_square_02_001.png", - "glow_frame": "block005b_slope_square_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "966": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005b_slope_square_03_001.png", - "glow_frame": "block005b_slope_square_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "967": { - "can_color": true, - "children": [ - { - "frame": "block005_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005b_01_001.png", - "glow_frame": "plank005b_01_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "968": { - "can_color": true, - "children": [ - { - "frame": "plank005_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005b_02_001.png", - "glow_frame": "plank005b_02_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "969": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005b_slope_01_001.png", - "glow_frame": "plank005b_slope_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "970": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005b_slope_02_001.png", - "glow_frame": "plank005b_slope_02_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1.2833333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "971": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005b_slope_square_01_001.png", - "glow_frame": "plank005b_slope_square_01_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "972": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank005b_slope_square_02_001.png", - "glow_frame": "plank005b_slope_square_02_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "973": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "plank005b_slope_square_03_001.png", - "glow_frame": "plank005b_slope_square_03_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.8666666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "974": { - "can_color": true, - "children": [ - { - "frame": "block005_10_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_10_001.png", - "glow_frame": "block005b_10_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "975": { - "can_color": true, - "children": [ - { - "frame": "block005_11_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_11_001.png", - "glow_frame": "block005b_11_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "976": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005b_12_001.png", - "glow_frame": "block005b_12_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "977": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005b_13_001.png", - "glow_frame": "block005b_13_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "980": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block007_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block007_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "981": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_15_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block007_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block007_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "982": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_03_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block007_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "983": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block007_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block007_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "984": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block007_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block007_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "985": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_06_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block007_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "986": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_07_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block007_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "987": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_08_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block007_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block007_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block007_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block007_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "988": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_09_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block007_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block007_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block007_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "989": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_07_3_001.png", - "glow_frame": "pit_07_3_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "990": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pit_07_3_shine_001.png", - "glow_frame": "pit_07_3_shine_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "991": { - "black": true, - "can_color": true, - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "pit_07_4_001.png", - "glow_frame": "pit_07_4_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "992": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pit_07_4_shine_001.png", - "glow_frame": "pit_07_4_shine_glow_001.png", - "gridH": 0.3166666626930237, - "gridW": 0.3166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "997": { - "can_color": true, - "children": [ - { - "frame": "d_ringSeg_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_ringSeg_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_ringSeg_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_ringSeg_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_ringSeg_01_001.png", - "glow_frame": "d_ringSeg_01_glow_001.png", - "gridH": 1.6666666269302368, - "gridW": 1.6666666269302368, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "998": { - "can_color": true, - "children": [ - { - "frame": "d_ringSeg_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_ringSeg_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_ringSeg_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_ringSeg_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_ringSeg_02_001.png", - "glow_frame": "d_ringSeg_02_glow_001.png", - "gridH": 1.2666666507720947, - "gridW": 1.2666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "999": { - "can_color": true, - "children": [ - { - "frame": "d_ringSeg_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_ringSeg_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_ringSeg_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_ringSeg_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_ringSeg_03_001.png", - "glow_frame": "d_ringSeg_03_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.8666666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1000": { - "can_color": true, - "children": [ - { - "frame": "d_ringSeg_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_ringSeg_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_ringSeg_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "d_ringSeg_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_ringSeg_04_001.png", - "glow_frame": "d_ringSeg_04_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.44999998807907104, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1001": { - "can_color": true, - "children": [ - { - "frame": "d_link_d_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1005, - "default_detail_color_channel": 1006, - "frame": "d_link_d_01_001.png", - "glow_frame": "d_link_d_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1002": { - "can_color": true, - "children": [ - { - "frame": "d_link_d_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1005, - "default_detail_color_channel": 1006, - "frame": "d_link_d_02_001.png", - "glow_frame": "d_link_d_02_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1003": { - "can_color": true, - "children": [ - { - "frame": "d_link_d_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1005, - "default_detail_color_channel": 1006, - "frame": "d_link_d_03_001.png", - "glow_frame": "d_link_d_03_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1004": { - "can_color": true, - "children": [ - { - "frame": "d_link_d_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1005, - "default_detail_color_channel": 1006, - "frame": "d_link_d_04_001.png", - "glow_frame": "d_link_d_04_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1005": { - "can_color": true, - "children": [ - { - "frame": "d_link_d_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1005, - "default_detail_color_channel": 1006, - "frame": "d_link_d_05_001.png", - "glow_frame": "d_link_d_05_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.06666667014360428, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1006": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1007": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1009": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_b_02_001.png", - "glow_frame": "d_gradient_b_02_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1010": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_b_03_001.png", - "glow_frame": "d_gradient_b_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1011": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_c_01_001.png", - "glow_frame": "d_gradient_c_01_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1012": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_c_02_001.png", - "glow_frame": "d_gradient_c_02_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 0.9833333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1013": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_c_03_001.png", - "glow_frame": "d_gradient_c_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1014": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_slope_01_001.png", - "glow_frame": "block010_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1015": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_slope_02_001.png", - "glow_frame": "block010_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1016": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_slope_square_01_001.png", - "glow_frame": "block010_slope_square_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1017": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_slope_square_02_001.png", - "glow_frame": "block010_slope_square_02_glow_001.png", - "gridH": 1, - "gridW": 1.0083333253860474, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1018": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block010_slope_square_03_001.png", - "glow_frame": "block010_slope_square_03_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1019": { - "can_color": true, - "children": [ - { - "frame": "d_flashRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_flashRing_01_001.png", - "glow_frame": "d_flashRing_01_glow_001.png", - "gridH": 3.7333333492279053, - "gridW": 3.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1020": { - "can_color": true, - "children": [ - { - "frame": "d_flashRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_flashRing_02_001.png", - "glow_frame": "d_flashRing_02_glow_001.png", - "gridH": 2.9666666984558105, - "gridW": 2.9666666984558105, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1021": { - "can_color": true, - "children": [ - { - "frame": "d_flashRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_flashRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_flashRing_03_001.png", - "glow_frame": "d_flashRing_03_glow_001.png", - "gridH": 2.0999999046325684, - "gridW": 2.0999999046325684, - "spriteH": 63, - "spriteW": 63, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1022": { - "can_color": false, - "children": [ - { - "frame": "gravJumpRing_01_001.png", - "localDy": 0, - "z": -1 - } - ], - "default_base_color_channel": 0, - "frame": "gravJumpRing_01_001.png", - "glow_frame": "gravJumpRing_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "ring", - "z": 12, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1024": { - "can_color": true, - "children": [ - { - "frame": "persp_block005b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005b_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1025": { - "can_color": true, - "children": [ - { - "frame": "persp_block005b_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005b_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1026": { - "can_color": true, - "children": [ - { - "frame": "persp_block005b_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1027": { - "can_color": true, - "children": [ - { - "frame": "persp_block005b_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005b_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1028": { - "can_color": true, - "children": [ - { - "frame": "persp_block005b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005b_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1029": { - "can_color": true, - "children": [ - { - "frame": "persp_block005b_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1030": { - "can_color": true, - "children": [ - { - "frame": "persp_block005b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1031": { - "can_color": true, - "children": [ - { - "frame": "persp_block005b_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005b_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005b_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005b_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1032": { - "can_color": true, - "children": [ - { - "frame": "persp_block005b_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005b_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block005b_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1033": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_slope_03_001.png", - "glow_frame": "block005_slope_03_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1034": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_slope_04_001.png", - "glow_frame": "block005_slope_04_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1.2833333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1035": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_slope_square_04_001.png", - "glow_frame": "block005_slope_square_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1036": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_slope_square_05_001.png", - "glow_frame": "block005_slope_square_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1037": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_slope_03_001.png", - "glow_frame": "block005b_slope_03_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1038": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_slope_04_001.png", - "glow_frame": "block005b_slope_04_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1.2833333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1039": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_slope_square_04_001.png", - "glow_frame": "block005b_slope_square_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1040": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_slope_square_05_001.png", - "glow_frame": "block005b_slope_square_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1041": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005_slope_05_001.png", - "glow_frame": "block005_slope_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1042": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005_slope_06_001.png", - "glow_frame": "block005_slope_06_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1043": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005b_slope_05_001.png", - "glow_frame": "block005b_slope_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1044": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005b_slope_06_001.png", - "glow_frame": "block005b_slope_06_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1045": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005_16_001.png", - "glow_frame": "block005_16_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1046": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005_17_001.png", - "glow_frame": "block005_17_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1047": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005b_16_001.png", - "glow_frame": "block005b_16_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1048": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005b_17_001.png", - "glow_frame": "block005b_17_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1049": { - "can_color": false, - "children": [ - { - "frame": null, - "localDy": 0, - "tint": 16727871, - "z": -1 - } - ], - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1050": { - "can_color": true, - "children": [ - { - "frame": "d_animWave_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_animWave_01_base_001.png", - "glow_frame": "d_animWave_01_base_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1051": { - "can_color": true, - "children": [ - { - "frame": "d_animWave_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_animWave_02_base_001.png", - "glow_frame": "d_animWave_02_base_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1052": { - "can_color": true, - "children": [ - { - "frame": "d_animWave_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_animWave_03_base_001.png", - "glow_frame": "d_animWave_03_base_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1053": { - "can_color": true, - "children": [ - { - "frame": "d_animLoading_01_color_006.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1010, - "frame": "d_animLoading_01_006.png", - "glow_frame": "d_animLoading_01_006.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1054": { - "can_color": true, - "children": [ - { - "frame": "d_animLoading_02_color_006.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1010, - "frame": "d_animLoading_02_006.png", - "glow_frame": "d_animLoading_02_006.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1055": { - "can_color": true, - "children": [ - { - "frame": "d_pickupCircle_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_pickupCircle_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_pickupCircle_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_pickupCircle_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_pickupCircle_01_001.png", - "glow_frame": "d_pickupCircle_01_glow_001.png", - "gridH": 0.75, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1056": { - "can_color": true, - "children": [ - { - "frame": "d_pickupCircle_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_pickupCircle_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_pickupCircle_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_pickupCircle_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_pickupCircle_01_001.png", - "glow_frame": "d_pickupCircle_01_glow_001.png", - "gridH": 0.75, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1057": { - "can_color": true, - "children": [ - { - "frame": "d_pickupCircle_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_pickupCircle_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_pickupCircle_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_pickupCircle_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_pickupCircle_01_001.png", - "glow_frame": "d_pickupCircle_01_glow_001.png", - "gridH": 0.75, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1058": { - "can_color": true, - "children": [ - { - "frame": "d_spiral_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_spiral_01_001.png", - "glow_frame": "d_spiral_01_glow_001.png", - "gridH": 1.2166666984558105, - "gridW": 1.2666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1059": { - "can_color": true, - "children": [ - { - "frame": "d_spiral_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_spiral_02_001.png", - "glow_frame": "d_spiral_02_glow_001.png", - "gridH": 0.9333333373069763, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1060": { - "can_color": true, - "children": [ - { - "frame": "d_spiral_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_spiral_03_001.png", - "glow_frame": "d_spiral_03_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.8166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1061": { - "can_color": true, - "children": [ - { - "frame": "d_spiral_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_spiral_04_001.png", - "glow_frame": "d_spiral_04_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1062": { - "can_color": true, - "children": [ - { - "frame": "block009b_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_07_001.png", - "glow_frame": "block009b_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1063": { - "can_color": true, - "children": [ - { - "frame": "persp_block009_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block009_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1064": { - "can_color": true, - "children": [ - { - "frame": "persp_block009_01b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block009_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1065": { - "can_color": true, - "children": [ - { - "frame": "persp_block009_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1066": { - "can_color": true, - "children": [ - { - "frame": "persp_block009_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block009_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1067": { - "can_color": true, - "children": [ - { - "frame": "persp_block009_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block009_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1068": { - "can_color": true, - "children": [ - { - "frame": "persp_block009_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1069": { - "can_color": true, - "children": [ - { - "frame": "persp_block009_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1070": { - "can_color": true, - "children": [ - { - "frame": "persp_block009_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block009_05b_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block009_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block009_05b_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1071": { - "can_color": true, - "children": [ - { - "frame": "persp_block009_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block009_04b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block009_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1075": { - "can_color": true, - "children": [ - { - "frame": "block003_color_02_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part03_001.png", - "glow_frame": "block003_part03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1076": { - "can_color": true, - "children": [ - { - "frame": "block003_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part01_001.png", - "glow_frame": "block003_part01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1077": { - "can_color": true, - "children": [ - { - "frame": "block003_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part01_001.png", - "glow_frame": "block003_part01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1078": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_005_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_012_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_01_small_001.png", - "glow_frame": "block007_01_small_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1079": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_006_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_013_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank007_01_001.png", - "glow_frame": "plank007_01_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1080": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_006_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_013_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank007_02_001.png", - "glow_frame": "plank007_02_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1081": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "block007_color_006_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block007_bgcolor_013_001.png", - "localDy": 0, - "tint": 0, - "z": -1 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank007_03_001.png", - "glow_frame": "plank007_03_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1082": { - "can_color": true, - "children": [ - { - "frame": "block007_color_001_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_01_001.png", - "glow_frame": "block007_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1083": { - "can_color": true, - "children": [ - { - "frame": "block007_color_002_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_02_001.png", - "glow_frame": "block007_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1084": { - "can_color": true, - "children": [ - { - "frame": "block007_color_008_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_03_001.png", - "glow_frame": "block007_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1085": { - "can_color": true, - "children": [ - { - "frame": "block007_color_003_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_04_001.png", - "glow_frame": "block007_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1086": { - "can_color": true, - "children": [ - { - "frame": "block007_color_003_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_05_001.png", - "glow_frame": "block007_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1087": { - "can_color": true, - "children": [ - { - "frame": "block007_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_06_001.png", - "glow_frame": "block007_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1088": { - "can_color": true, - "children": [ - { - "frame": "block007_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_07_001.png", - "glow_frame": "block007_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1089": { - "can_color": true, - "children": [ - { - "frame": "block007_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_08_001.png", - "glow_frame": "block007_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1090": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block007_09_001.png", - "glow_frame": "block007_09_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1091": { - "can_color": true, - "children": [ - { - "frame": "block007_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_01_001.png", - "glow_frame": "block007_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1092": { - "can_color": true, - "children": [ - { - "frame": "block007_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_02_001.png", - "glow_frame": "block007_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1093": { - "can_color": true, - "children": [ - { - "frame": "block007_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_square_01_001.png", - "glow_frame": "block007_slope_square_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1094": { - "can_color": true, - "children": [ - { - "frame": "block007_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_slope_square_02_001.png", - "glow_frame": "block007_slope_square_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1095": { - "can_color": true, - "children": [ - { - "frame": "block007_color_005_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block007_01_small_001.png", - "glow_frame": "block007_01_small_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1096": { - "can_color": true, - "children": [ - { - "frame": "block007_color_006_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank007_01_001.png", - "glow_frame": "plank007_01_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1097": { - "can_color": true, - "children": [ - { - "frame": "block007_color_006_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank007_02_001.png", - "glow_frame": "plank007_02_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1098": { - "can_color": true, - "children": [ - { - "frame": "block007_color_006_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank007_03_001.png", - "glow_frame": "plank007_03_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1099": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_001_001.png", - "glow_frame": "block007_bgcolor_001_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.8166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1100": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_002_001.png", - "glow_frame": "block007_bgcolor_002_glow_001.png", - "gridH": 0.75, - "gridW": 0.800000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1101": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_003_001.png", - "glow_frame": "block007_bgcolor_003_glow_001.png", - "gridH": 0.75, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1102": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_004_001.png", - "glow_frame": "block007_bgcolor_004_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1103": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_005_001.png", - "glow_frame": "block007_bgcolor_005_glow_001.png", - "gridH": 0.75, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1104": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_006_001.png", - "glow_frame": "block007_bgcolor_006_glow_001.png", - "gridH": 0.6499999761581421, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1105": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_007_001.png", - "glow_frame": "block007_bgcolor_007_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.800000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1106": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_008_001.png", - "glow_frame": "block007_bgcolor_008_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1107": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_009_001.png", - "glow_frame": "block007_bgcolor_009_glow_001.png", - "gridH": 0.9333333373069763, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1108": { - "can_color": true, - "children": [ - { - "frame": "block007_bgcolor_010_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block007_bgcolor_011_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "block007_slope_02_001.png", - "glow_frame": "block007_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1109": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_001_001.png", - "glow_frame": "block007_bgcolor_001_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.8166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1110": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_012_001.png", - "glow_frame": "block007_bgcolor_012_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1111": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007_bgcolor_013_001.png", - "glow_frame": "block007_bgcolor_013_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.800000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1112": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007b_bgcolor_01_001.png", - "glow_frame": "block007b_bgcolor_01_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.8166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1113": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007b_bgcolor_02_001.png", - "glow_frame": "block007b_bgcolor_02_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1114": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007b_bgcolor_03_001.png", - "glow_frame": "block007b_bgcolor_03_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1115": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007b_bgcolor_05_001.png", - "glow_frame": "block007b_bgcolor_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1116": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007b_bgcolor_06_001.png", - "glow_frame": "block007b_bgcolor_06_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.6000000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1117": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007b_bgcolor_07_001.png", - "glow_frame": "block007b_bgcolor_07_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.6000000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1118": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "block007b_bgcolor_08_001.png", - "glow_frame": "block007b_bgcolor_08_glow_001.png", - "gridH": 0.8666666746139526, - "gridW": 0.8666666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -8 - }, - "1120": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_01_001.png", - "glow_frame": "block008_topcolor_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1122": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_29_001.png", - "glow_frame": "block008_topcolor_29_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1123": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_15_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1124": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_16_001.png", - "glow_frame": "block008_topcolor_16_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1125": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_18_001.png", - "glow_frame": "block008_topcolor_18_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1126": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_24b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block008_topcolor_15_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_24b_001.png", - "glow_frame": "block008_topcolor_24b_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1127": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_24b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block008_topcolor_24b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block008_topcolor_24b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_24b_001.png", - "glow_frame": "block008_topcolor_24b_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1132": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_22_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_22_001.png", - "glow_frame": "block008_topcolor_22_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1133": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_23_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_23_001.png", - "glow_frame": "block008_topcolor_23_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1134": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_25_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_25_001.png", - "glow_frame": "block008_topcolor_25_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1135": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_26_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_26_001.png", - "glow_frame": "block008_topcolor_26_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1136": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_27_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_27_001.png", - "glow_frame": "block008_topcolor_27_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1137": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_28_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_28_001.png", - "glow_frame": "block008_topcolor_28_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1138": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_12_001.png", - "glow_frame": "block008_topcolor_12_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1139": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_13_001.png", - "glow_frame": "block008_topcolor_13_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1140": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_03_001.png", - "glow_frame": "square_g_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1141": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_04_001.png", - "glow_frame": "square_g_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1142": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_05_001.png", - "glow_frame": "square_g_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1143": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_06_001.png", - "glow_frame": "square_g_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1144": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_07_001.png", - "glow_frame": "square_g_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1145": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_08_001.png", - "glow_frame": "square_g_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1146": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_09_001.png", - "glow_frame": "square_g_09_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1147": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_10_001.png", - "glow_frame": "square_g_10_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1148": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_11_001.png", - "glow_frame": "square_g_11_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1149": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_12_001.png", - "glow_frame": "square_g_12_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1150": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_13_001.png", - "glow_frame": "square_g_13_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1151": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_14_001.png", - "glow_frame": "square_g_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1152": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_15_001.png", - "glow_frame": "square_g_15_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1153": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "square_g_16_001.png", - "glow_frame": "square_g_16_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1154": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "smallOutline_01_001.png", - "glow_frame": "smallOutline_01_glow_001.png", - "gridH": 0.05000000074505806, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1155": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "smallOutline_02_001.png", - "glow_frame": "smallOutline_02_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1156": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "smallOutline_03_001.png", - "glow_frame": "smallOutline_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1157": { - "can_color": true, - "children": [ - { - "frame": "smallOutline_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "smallOutline_04_001.png", - "glow_frame": "smallOutline_04_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1158": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_06_001.png", - "glow_frame": "blockOutline_06_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.06666667014360428, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1159": { - "can_color": true, - "children": [ - { - "frame": "block009b_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_08_001.png", - "glow_frame": "block009b_08_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1160": { - "can_color": true, - "children": [ - { - "frame": "block009b_09_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_09_001.png", - "glow_frame": "block009b_09_glow_001.png", - "gridH": 1, - "gridW": 0.9166666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1161": { - "can_color": true, - "children": [ - { - "frame": "block009b_10_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009b_10_001.png", - "glow_frame": "block009b_10_glow_001.png", - "gridH": 1, - "gridW": 0.9166666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1162": { - "can_color": true, - "children": [ - { - "frame": "block006_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_01_001.png", - "glow_frame": "block006_01_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1163": { - "can_color": true, - "children": [ - { - "frame": "block006_color_02_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_02_001.png", - "glow_frame": "block006_02_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1164": { - "can_color": true, - "children": [ - { - "frame": "block006_color_03_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_03_001.png", - "glow_frame": "block006_03_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1165": { - "can_color": true, - "children": [ - { - "frame": "block006_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_04_001.png", - "glow_frame": "block006_04_glow_001.png", - "gridH": 1, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1166": { - "can_color": true, - "children": [ - { - "frame": "block006_color_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_05_001.png", - "glow_frame": "block006_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1167": { - "can_color": true, - "children": [ - { - "frame": "block006_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_06_001.png", - "glow_frame": "block006_06_glow_001.png", - "gridH": 1, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1168": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_07_001.png", - "glow_frame": "block006_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1169": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_08_001.png", - "glow_frame": "block006_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1170": { - "can_color": true, - "children": [ - { - "frame": "block006_color_06_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_09_001.png", - "glow_frame": "block006_09_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1171": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_10_001.png", - "glow_frame": "block006_10_glow_001.png", - "gridH": 1, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1172": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_11_001.png", - "glow_frame": "block006_11_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1173": { - "can_color": true, - "children": [ - { - "frame": "block006_color_02_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_12_001.png", - "glow_frame": "block006_12_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1174": { - "can_color": true, - "children": [ - { - "frame": "block006_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_13_001.png", - "glow_frame": "block006_13_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1175": { - "can_color": true, - "children": [ - { - "frame": "block006_color_03_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_14_001.png", - "glow_frame": "block006_14_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1176": { - "can_color": true, - "children": [ - { - "frame": "block006_color_03_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_15_001.png", - "glow_frame": "block006_15_glow_001.png", - "gridH": 0.5, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1177": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_16_001.png", - "glow_frame": "block006_16_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1178": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_17_001.png", - "glow_frame": "block006_17_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1179": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_18_001.png", - "glow_frame": "block006_18_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1180": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_19_001.png", - "glow_frame": "block006_19_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1181": { - "can_color": true, - "children": [ - { - "frame": "block006_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_20_001.png", - "glow_frame": "block006_20_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1182": { - "can_color": true, - "children": [ - { - "frame": "block006_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_21_001.png", - "glow_frame": "block006_21_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1183": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_22_001.png", - "glow_frame": "block006_22_glow_001.png", - "gridH": 1, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1184": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_23_001.png", - "glow_frame": "block006_23_glow_001.png", - "gridH": 1, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1185": { - "can_color": true, - "children": [ - { - "frame": "block006_color_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_24_001.png", - "glow_frame": "block006_24_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1186": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_25_001.png", - "glow_frame": "block006_25_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1187": { - "can_color": true, - "children": [ - { - "frame": "block006_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_slope_01_001.png", - "glow_frame": "block006_slope_01_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1188": { - "can_color": true, - "children": [ - { - "frame": "block006_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_slope_02_001.png", - "glow_frame": "block006_slope_02_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 1.5166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1189": { - "can_color": true, - "children": [ - { - "frame": "block006_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_slope_square_01_001.png", - "glow_frame": "block006_slope_square_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1190": { - "can_color": true, - "children": [ - { - "frame": "block006_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_slope_square_02_001.png", - "glow_frame": "block006_slope_square_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1191": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_color_01_001.png", - "glow_frame": "block006_color_01_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1192": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_color_02_001.png", - "glow_frame": "block006_color_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1193": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_color_03_001.png", - "glow_frame": "block006_color_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1194": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_color_04_001.png", - "glow_frame": "block006_color_04_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1195": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_color_05_001.png", - "glow_frame": "block006_color_05_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1196": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_color_06_001.png", - "glow_frame": "block006_color_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1197": { - "can_color": true, - "children": [ - { - "frame": "block006_color_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block006_color_01_001.png", - "glow_frame": "block006_color_01_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1198": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_slope_01_color_001.png", - "glow_frame": "block006_slope_01_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1199": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_slope_02_color_001.png", - "glow_frame": "block006_slope_02_color_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1200": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_slope_square_01_color_001.png", - "glow_frame": "block006_slope_square_01_color_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1201": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block006_slope_square_02_color_001.png", - "glow_frame": "block006_slope_square_02_color_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1202": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_01_001.png", - "glow_frame": "blockOutlineThick_01_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1203": { - "can_color": true, - "children": [ - { - "frame": "blockOutlineThick_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_02_001.png", - "glow_frame": "blockOutlineThick_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1204": { - "can_color": true, - "children": [ - { - "frame": "blockOutlineThick_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutlineThick_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_03_001.png", - "glow_frame": "blockOutlineThick_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1205": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_04_001.png", - "glow_frame": "blockOutlineThick_04_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1206": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_05_001.png", - "glow_frame": "blockOutlineThick_05_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1207": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_06_001.png", - "glow_frame": "blockOutlineThick_06_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1208": { - "can_color": true, - "children": [ - { - "frame": "blockOutlineThick_07_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutlineThick_07_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutlineThick_07_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_07_001.png", - "glow_frame": "blockOutlineThick_07_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1209": { - "can_color": true, - "children": [ - { - "frame": "blockOutlineThick_08_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_08_001.png", - "glow_frame": "blockOutlineThick_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1210": { - "can_color": true, - "children": [ - { - "frame": "blockOutlineThick_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutlineThick_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutlineThick_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_03_001.png", - "glow_frame": "blockOutlineThick_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1220": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThickb_01_001.png", - "glow_frame": "blockOutlineThickb_01_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1221": { - "can_color": true, - "children": [ - { - "frame": "blockOutlineThickb_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutlineThickb_02_001.png", - "glow_frame": "blockOutlineThickb_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1222": { - "can_color": true, - "children": [ - { - "frame": "blockOutlineThickb_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutlineThickb_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutlineThickb_03_001.png", - "glow_frame": "blockOutlineThickb_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1223": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThickb_04_001.png", - "glow_frame": "blockOutlineThickb_04_glow_001.png", - "gridH": 0.21666666865348816, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1224": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThickb_05_001.png", - "glow_frame": "blockOutlineThickb_05_glow_001.png", - "gridH": 0.21666666865348816, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1225": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThickb_06_001.png", - "glow_frame": "blockOutlineThickb_06_glow_001.png", - "gridH": 0.21666666865348816, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1226": { - "can_color": true, - "children": [ - { - "frame": "blockOutlineThickb_08_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutlineThickb_08_001.png", - "glow_frame": "blockOutlineThickb_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1227": { - "can_color": true, - "children": [ - { - "frame": "blockOutlineThickb_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutlineThickb_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blockOutlineThickb_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutlineThickb_03_001.png", - "glow_frame": "blockOutlineThickb_03_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1228": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_waveBG_001.png", - "glow_frame": "d_waveBG_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1229": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_05_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_01_001.png", - "glow_frame": "block010_piece_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1230": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_05_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_01_001.png", - "glow_frame": "block010_piece_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1231": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_06_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_01_001.png", - "glow_frame": "block010_piece_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1232": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_02_001.png", - "glow_frame": "block010_piece_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1233": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_02_001.png", - "glow_frame": "block010_piece_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1234": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_02_001.png", - "glow_frame": "block010_piece_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1235": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_02_001.png", - "glow_frame": "block010_piece_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1236": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_02_001.png", - "glow_frame": "block010_piece_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1237": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_02_001.png", - "glow_frame": "block010_piece_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1238": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_06_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_piece_01_001.png", - "glow_frame": "block010_piece_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1239": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_02_001.png", - "glow_frame": "block010_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1240": { - "can_color": true, - "children": [ - { - "frame": "block010_piece_04_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1011, - "frame": "block010_06_001.png", - "glow_frame": "block010_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1241": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_02_001.png", - "glow_frame": "block008_topcolor_02_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1242": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_06_001.png", - "glow_frame": "block008_topcolor_06_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1243": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_07_001.png", - "glow_frame": "block008_topcolor_07_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1244": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_08_001.png", - "glow_frame": "block008_topcolor_08_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1245": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "block008_topcolor_10_001.png", - "glow_frame": "block008_topcolor_10_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1246": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block008_topcolor_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block008_topcolor_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "block008_topcolor_11_001.png", - "glow_frame": "block008_topcolor_11_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 4, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 4 - }, - "1247": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_02_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_02_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1248": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_03_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1249": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_03_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_03_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1250": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_03_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1251": { - "can_color": true, - "children": [ - { - "frame": "block009c_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_10_001.png", - "glow_frame": "block009c_10_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1252": { - "can_color": true, - "children": [ - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_11_001.png", - "glow_frame": "block009c_11_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1253": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_02_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1254": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1255": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1256": { - "can_color": true, - "children": [ - { - "frame": "block009c_color_08_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_06_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_slope_03_001.png", - "glow_frame": "block009c_slope_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1257": { - "can_color": true, - "children": [ - { - "frame": "block009c_color_09_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_07_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_slope_04_001.png", - "glow_frame": "block009c_slope_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1258": { - "can_color": true, - "children": [ - { - "frame": "block009c_color_06_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_08_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_slope_03_001.png", - "glow_frame": "block009c_slope_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1259": { - "can_color": true, - "children": [ - { - "frame": "block009c_color_07_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_09_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009c_slope_04_001.png", - "glow_frame": "block009c_slope_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1260": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_02_001.png", - "glow_frame": "blockOutline_02_glow_001.png", - "gridH": 0.05000000074505806, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1261": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineOuter1_01_001.png", - "glow_frame": "blockOutlineOuter1_01_glow_001.png", - "gridH": 0.0833333358168602, - "gridW": 0.0833333358168602, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1262": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThick_01_001.png", - "glow_frame": "blockOutlineThick_01_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1263": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineOuter2_01_001.png", - "glow_frame": "blockOutlineOuter2_01_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1264": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineThickb_01_001.png", - "glow_frame": "blockOutlineThickb_01_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1265": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutlineOuter3_01_001.png", - "glow_frame": "blockOutlineOuter3_01_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.24166665971279144, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1266": { - "can_color": true, - "children": [ - { - "frame": "block009_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_07_001.png", - "glow_frame": "block009_07_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1267": { - "can_color": true, - "children": [ - { - "frame": "block009_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block009_08_001.png", - "glow_frame": "block009_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1268": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1269": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_c_04_001.png", - "glow_frame": "d_gradient_c_04_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 0.699999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1270": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_c_05_001.png", - "glow_frame": "d_gradient_c_05_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 0.44999998807907104, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1271": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_b_04_001.png", - "glow_frame": "d_gradient_b_04_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1272": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_b_05_001.png", - "glow_frame": "d_gradient_b_05_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.15000000596046448, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1273": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_04_001.png", - "glow_frame": "d_gradient_04_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1274": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_05_001.png", - "glow_frame": "d_gradient_05_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.30000001192092896, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1275": { - "can_color": true, - "children": [ - { - "frame": "d_key01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "d_key01_001.png", - "glow_frame": "d_key01_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1276": { - "can_color": true, - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "d_keyHole01_001.png", - "glow_frame": "d_keyHole01_glow_001.png", - "gridH": 1, - "gridW": 0.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1277": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_02_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1278": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_02_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1279": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_03_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1280": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_03_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_03_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1281": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_03_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_03_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1282": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1283": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1284": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1285": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1286": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1287": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_02_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1288": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block009c_color_02_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1289": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_02_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1290": { - "can_color": true, - "children": [ - { - "frame": "block009c_line_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_line_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "block009c_color_02_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 0, - "z": 1 - }, - { - "frame": "block008_06_color_b_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block005b_05_001.png", - "glow_frame": "block005b_05_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1291": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_06_001.png", - "glow_frame": "d_gradient_06_glow_001.png", - "gridH": 0.6499999761581421, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1292": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_b_06_001.png", - "glow_frame": "d_gradient_b_06_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1293": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_gradient_c_06_001.png", - "glow_frame": "d_gradient_c_06_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1294": { - "can_color": true, - "children": [ - { - "frame": "block005_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_02b_001.png", - "glow_frame": "block005_02b_glow_001.png", - "gridH": 1, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1295": { - "can_color": true, - "children": [ - { - "frame": "block005_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005_04b_001.png", - "glow_frame": "block005_04b_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1296": { - "can_color": true, - "children": [ - { - "frame": "block005_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_02b_001.png", - "glow_frame": "block005b_02b_glow_001.png", - "gridH": 1, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1297": { - "can_color": true, - "children": [ - { - "frame": "block005_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005b_04b_001.png", - "glow_frame": "block005b_04b_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1298": { - "can_color": true, - "children": [ - { - "frame": "block003_color_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "block003_part02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block003_part01_001.png", - "glow_frame": "block003_part01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1299": { - "can_color": true, - "children": [ - { - "frame": "block005_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_02_001.png", - "glow_frame": "block005c_02_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1300": { - "can_color": true, - "children": [ - { - "frame": "block005_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_03_001.png", - "glow_frame": "block005c_03_glow_001.png", - "gridH": 0.75, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1301": { - "can_color": true, - "children": [ - { - "frame": "block005_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_04_001.png", - "glow_frame": "block005c_04_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.6000000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1302": { - "can_color": true, - "children": [ - { - "frame": "block005_10_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_10_001.png", - "glow_frame": "block005c_10_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1303": { - "can_color": true, - "children": [ - { - "frame": "block005_11_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_11_001.png", - "glow_frame": "block005c_11_glow_001.png", - "gridH": 0.4833333194255829, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1304": { - "can_color": true, - "children": [ - { - "frame": "block005_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_06_001.png", - "glow_frame": "block005c_06_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1305": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_slope_01_001.png", - "glow_frame": "block005c_slope_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1306": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_slope_02_001.png", - "glow_frame": "block005c_slope_02_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1.2999999523162842, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1307": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_slope_square_01_001.png", - "glow_frame": "block005c_slope_square_01_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.6833333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1308": { - "can_color": true, - "children": [ - { - "frame": "block005_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block005c_slope_square_02_001.png", - "glow_frame": "block005c_slope_square_02_glow_001.png", - "gridH": 0.6166666746139526, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1309": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_slope_square_03_001.png", - "glow_frame": "block005c_slope_square_03_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1310": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_02_001.png", - "glow_frame": "block005c_02_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1311": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_03_001.png", - "glow_frame": "block005c_03_glow_001.png", - "gridH": 0.75, - "gridW": 0.75, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1312": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_04_001.png", - "glow_frame": "block005c_04_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.6000000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1313": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_10_001.png", - "glow_frame": "block005c_10_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1314": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_11_001.png", - "glow_frame": "block005c_11_glow_001.png", - "gridH": 0.4833333194255829, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1315": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_06_001.png", - "glow_frame": "block005c_06_glow_001.png", - "gridH": 0.7166666388511658, - "gridW": 0.4833333194255829, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1316": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_slope_01_001.png", - "glow_frame": "block005c_slope_01_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1317": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_slope_02_001.png", - "glow_frame": "block005c_slope_02_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1.2999999523162842, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1318": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_slope_square_01_001.png", - "glow_frame": "block005c_slope_square_01_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.6833333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1319": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_slope_square_02_001.png", - "glow_frame": "block005c_slope_square_02_glow_001.png", - "gridH": 0.6166666746139526, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1320": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block005c_slope_square_03_001.png", - "glow_frame": "block005c_slope_square_03_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1322": { - "can_color": true, - "children": [ - { - "frame": "block006_color_02_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_26_001.png", - "glow_frame": "block006_26_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1325": { - "can_color": true, - "children": [ - { - "frame": "block006_slope_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_slope_square_03_001.png", - "glow_frame": "block006_slope_square_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1326": { - "can_color": true, - "children": [ - { - "frame": "block006_slope_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block006_slope_square_04_001.png", - "glow_frame": "block006_slope_square_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1327": { - "can_color": true, - "default_base_color_channel": 1010, - "default_detail_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1328": { - "can_color": true, - "default_base_color_channel": 1010, - "default_detail_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 0.5, - "gridW": 0.2666666805744171, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1329": { - "type": "deco", - "frame": "secretCoin_2_01_001.png", - "gridW": 1, - "gridH": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1330": { - "type": "ring", - "frame": "dropRing_01_001.png", - "gridW": 1.2, - "gridH": 1.2, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1331": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_17_front_001.png", - "glow_frame": "portal_17_front_glow_001.png", - "gridH": 2.866666555404663, - "gridW": 1.1333333253860474, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10, - "portalParticle": true, - "portalParticleColor": 0x00ffff - }, - "1332": { - "type": "pad", - "frame": "bump_02_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.9666666388511658, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1333": { - "type": "ring", - "frame": "ring_02_001.png", - "gridW": 1.2, - "gridH": 1.2, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1334": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "boost_05_001.png", - "glow_frame": "boost_05_glow_001.png", - "gridH": 1.8666666746139526, - "gridW": 2.299999952316284, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -6, - "default_detail_color_channel": -1, - "default_z_layer": 4, - "default_z_order": -6 - }, - "1338": { - "can_color": true, - "children": [ - { - "frame": "blockOutline_14new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1339": { - "can_color": true, - "children": [ - { - "frame": "blockOutline_15new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 3, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 3 - }, - "1340": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "invisibleOutline_01_001.png", - "glow_frame": "invisibleOutline_01_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1341": { - "can_color": true, - "children": [ - { - "frame": "invisibleOutline_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1342": { - "can_color": true, - "children": [ - { - "frame": "invisibleOutline_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1343": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "invisibleOutline_b_01_001.png", - "glow_frame": "invisibleOutline_b_01_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1344": { - "can_color": true, - "children": [ - { - "frame": "invisibleOutline_b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1345": { - "can_color": true, - "children": [ - { - "frame": "invisibleOutline_b_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1346": { - "type": "trigger", - "frame": null, - "gridW": 0, - "gridH": 0, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1347": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1348": { - "can_color": true, - "children": [ - { - "frame": "block011_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_01_001.png", - "glow_frame": "block011_01_glow_001.png", - "gridH": 1.1833332777023315, - "gridW": 1.0833333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1349": { - "can_color": true, - "children": [ - { - "frame": "block011_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_02_001.png", - "glow_frame": "block011_02_glow_001.png", - "gridH": 1.1666666269302368, - "gridW": 0.949999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1350": { - "can_color": true, - "children": [ - { - "frame": "block011_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_03_001.png", - "glow_frame": "block011_03_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 1.0166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1351": { - "can_color": true, - "children": [ - { - "frame": "block011_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_04_001.png", - "glow_frame": "block011_04_glow_001.png", - "gridH": 1.1333333253860474, - "gridW": 1.1166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1352": { - "can_color": true, - "children": [ - { - "frame": "block011b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_01_001.png", - "glow_frame": "block011b_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1353": { - "can_color": true, - "children": [ - { - "frame": "block011b_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_02_001.png", - "glow_frame": "block011b_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1354": { - "can_color": true, - "children": [ - { - "frame": "block011b_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_03_001.png", - "glow_frame": "block011b_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1355": { - "can_color": true, - "children": [ - { - "frame": "block011b_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_04_001.png", - "glow_frame": "block011b_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1356": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_02_001.png", - "glow_frame": "block011_edge_02_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1357": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_03_001.png", - "glow_frame": "block011_edge_03_glow_001.png", - "gridH": 1.1666666269302368, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1358": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_04_001.png", - "glow_frame": "block011_edge_04_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.5666666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1359": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_05_001.png", - "glow_frame": "block011_edge_05_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 1.0166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1360": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_06_001.png", - "glow_frame": "block011_edge_06_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.9833333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1361": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_07_001.png", - "glow_frame": "block011_edge_07_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 1.0499999523162842, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1362": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_08_001.png", - "glow_frame": "block011_edge_08_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.949999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1363": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_09_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_09_001.png", - "glow_frame": "block011_edge_09_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1364": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_10_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_10_001.png", - "glow_frame": "block011_edge_10_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1365": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_11_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_11_001.png", - "glow_frame": "block011_edge_11_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1366": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block011_edge_12_001.png", - "glow_frame": "block011_edge_12_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1367": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_01_001.png", - "glow_frame": "block011_light_01_glow_001.png", - "gridH": 1.2333333492279053, - "gridW": 0.4833333194255829, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1368": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_02_001.png", - "glow_frame": "block011_light_02_glow_001.png", - "gridH": 0.8666666746139526, - "gridW": 0.4833333194255829, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1369": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_03_001.png", - "glow_frame": "block011_light_03_glow_001.png", - "gridH": 1.2166666984558105, - "gridW": 0.5833333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1370": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_04_001.png", - "glow_frame": "block011_light_04_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.5833333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1371": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_05_001.png", - "glow_frame": "block011_light_05_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1372": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_06_001.png", - "glow_frame": "block011_light_06_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 1.0166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1373": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_07_001.png", - "glow_frame": "block011_light_07_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 1.100000023841858, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1374": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_08_001.png", - "glow_frame": "block011_light_08_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.9833333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1375": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_09_001.png", - "glow_frame": "block011_light_09_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1376": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_10_001.png", - "glow_frame": "block011_light_10_glow_001.png", - "gridH": 0.4166666567325592, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1377": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_11_001.png", - "glow_frame": "block011_light_11_glow_001.png", - "gridH": 0.4833333194255829, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1378": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_12_001.png", - "glow_frame": "block011_light_12_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1379": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_13_001.png", - "glow_frame": "block011_light_13_glow_001.png", - "gridH": 1.1666666269302368, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1380": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_14_001.png", - "glow_frame": "block011_light_14_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1381": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_15_001.png", - "glow_frame": "block011_light_15_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.6000000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1382": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_16_001.png", - "glow_frame": "block011_light_16_glow_001.png", - "gridH": 1.2166666984558105, - "gridW": 0.6333333253860474, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1383": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_17_001.png", - "glow_frame": "block011_light_17_glow_001.png", - "gridH": 0.6499999761581421, - "gridW": 1.149999976158142, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1384": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_18_001.png", - "glow_frame": "block011_light_18_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1385": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_19_001.png", - "glow_frame": "block011_light_19_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.949999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1386": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block011_light_20_001.png", - "glow_frame": "block011_light_20_glow_001.png", - "gridH": 0.75, - "gridW": 1.1166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1387": { - "can_color": true, - "children": [ - { - "frame": "block011b_piece_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_piece_01_001.png", - "glow_frame": "block011b_piece_01_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 0.9166666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1388": { - "can_color": true, - "children": [ - { - "frame": "block011b_piece_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_piece_02_001.png", - "glow_frame": "block011b_piece_02_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 0.7666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1389": { - "can_color": true, - "children": [ - { - "frame": "block011b_piece_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_piece_03_001.png", - "glow_frame": "block011b_piece_03_glow_001.png", - "gridH": 0.6833333373069763, - "gridW": 0.8500000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1390": { - "can_color": true, - "children": [ - { - "frame": "block011b_piece_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_piece_04_001.png", - "glow_frame": "block011b_piece_04_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1391": { - "can_color": true, - "children": [ - { - "frame": "block011b_piece_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_piece_05_001.png", - "glow_frame": "block011b_piece_05_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 0.800000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1392": { - "can_color": true, - "children": [ - { - "frame": "block011b_piece_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_piece_06_001.png", - "glow_frame": "block011b_piece_06_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.6333333253860474, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1393": { - "can_color": true, - "children": [ - { - "frame": "block011b_piece_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_piece_07_001.png", - "glow_frame": "block011b_piece_07_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.8166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1394": { - "can_color": true, - "children": [ - { - "frame": "block011b_piece_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_piece_08_001.png", - "glow_frame": "block011b_piece_08_glow_001.png", - "gridH": 0.6833333373069763, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1395": { - "can_color": true, - "children": [ - { - "frame": "block011_edge_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block011_edge_01_001.png", - "glow_frame": "block011_edge_01_glow_001.png", - "gridH": 1.1666666269302368, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1431": { - "can_color": true, - "children": [ - { - "frame": "block012_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_01_001.png", - "glow_frame": "block012_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1432": { - "can_color": true, - "children": [ - { - "frame": "block012_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_02_001.png", - "glow_frame": "block012_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1433": { - "can_color": true, - "children": [ - { - "frame": "block012_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_03_001.png", - "glow_frame": "block012_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1434": { - "can_color": true, - "children": [ - { - "frame": "block012_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_04_001.png", - "glow_frame": "block012_04_glow_001.png", - "gridH": 1, - "gridW": 0.699999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1435": { - "can_color": true, - "children": [ - { - "frame": "block012_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_05_001.png", - "glow_frame": "block012_05_glow_001.png", - "gridH": 0.5833333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1436": { - "can_color": true, - "children": [ - { - "frame": "block012_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_06_001.png", - "glow_frame": "block012_06_glow_001.png", - "gridH": 1, - "gridW": 0.6000000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1437": { - "can_color": true, - "children": [ - { - "frame": "block012_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_07_001.png", - "glow_frame": "block012_07_glow_001.png", - "gridH": 0.7166666388511658, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1438": { - "can_color": true, - "children": [ - { - "frame": "block012_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_08_001.png", - "glow_frame": "block012_08_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1439": { - "can_color": true, - "children": [ - { - "frame": "block012_09_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_09_001.png", - "glow_frame": "block012_09_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.36666667461395264, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1440": { - "can_color": true, - "children": [ - { - "frame": "block012_10_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_10_001.png", - "glow_frame": "block012_10_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1441": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block012_11_001.png", - "glow_frame": "block012_11_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1442": { - "can_color": true, - "children": [ - { - "frame": "block012b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_01_001.png", - "glow_frame": "block012b_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1443": { - "can_color": true, - "children": [ - { - "frame": "block012b_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_02_001.png", - "glow_frame": "block012b_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1444": { - "can_color": true, - "children": [ - { - "frame": "block012b_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_03_001.png", - "glow_frame": "block012b_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1445": { - "can_color": true, - "children": [ - { - "frame": "block012b_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_04_001.png", - "glow_frame": "block012b_04_glow_001.png", - "gridH": 1, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1446": { - "can_color": true, - "children": [ - { - "frame": "block012b_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_05_001.png", - "glow_frame": "block012b_05_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1447": { - "can_color": true, - "children": [ - { - "frame": "block012b_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_06_001.png", - "glow_frame": "block012b_06_glow_001.png", - "gridH": 1, - "gridW": 0.4833333194255829, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1448": { - "can_color": true, - "children": [ - { - "frame": "block012b_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_07_001.png", - "glow_frame": "block012b_07_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1449": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "block012b_08_001.png", - "glow_frame": "block012b_08_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1450": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "block012b_09_001.png", - "glow_frame": "block012b_09_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1451": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "block012b_10_001.png", - "glow_frame": "block012b_10_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1452": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "block012b_11_001.png", - "glow_frame": "block012b_11_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1453": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block012_light_01_001.png", - "glow_frame": "block012_light_01_glow_001.png", - "gridH": 1, - "gridW": 0.28333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1454": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block012_light_02_001.png", - "glow_frame": "block012_light_02_glow_001.png", - "gridH": 0.28333333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1455": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block012_light_03_001.png", - "glow_frame": "block012_light_03_glow_001.png", - "gridH": 1, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1456": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block012_light_04_001.png", - "glow_frame": "block012_light_04_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1457": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block012_light_05_001.png", - "glow_frame": "block012_light_05_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5833333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1458": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block012_light_06_001.png", - "glow_frame": "block012_light_06_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1459": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block012_light_07_001.png", - "glow_frame": "block012_light_07_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5833333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1460": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block012_light_08_001.png", - "glow_frame": "block012_light_08_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1461": { - "can_color": true, - "children": [ - { - "frame": "block013_01c_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_01c_001.png", - "glow_frame": "block013_01c_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1462": { - "can_color": true, - "children": [ - { - "frame": "block013_02c_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_02c_001.png", - "glow_frame": "block013_02c_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1463": { - "can_color": true, - "children": [ - { - "frame": "block013_03c_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_03c_001.png", - "glow_frame": "block013_03c_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1464": { - "can_color": true, - "children": [ - { - "frame": "block013_04c_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_04c_001.png", - "glow_frame": "block013_04c_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1471": { - "can_color": true, - "children": [ - { - "frame": "block013_detail_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block013_detail_01_001.png", - "glow_frame": "block013_detail_01_glow_001.png", - "gridH": 0.4166666567325592, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1472": { - "can_color": true, - "children": [ - { - "frame": "block013_detail_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block013_detail_02_001.png", - "glow_frame": "block013_detail_02_glow_001.png", - "gridH": 0.3166666626930237, - "gridW": 0.10000000149011612, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1473": { - "can_color": true, - "children": [ - { - "frame": "block013_detail_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_detail_03_001.png", - "glow_frame": "block013_detail_03_glow_001.png", - "gridH": 0.5, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1496": { - "can_color": true, - "children": [ - { - "frame": "block013_detail_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_detail_04_001.png", - "glow_frame": "block013_detail_04_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.699999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1507": { - "can_color": true, - "children": [ - { - "frame": "block013_detail_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block013_detail_05_001.png", - "glow_frame": "block013_detail_05_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1510": { - "can_color": true, - "children": [ - { - "frame": "block012_12_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_12_001.png", - "glow_frame": "block012_12_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1511": { - "can_color": true, - "children": [ - { - "frame": "block012_13_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_13_001.png", - "glow_frame": "block012_13_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 0.8833333253860474, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1512": { - "can_color": true, - "children": [ - { - "frame": "block012_14_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_14_001.png", - "glow_frame": "block012_14_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 0.8500000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1513": { - "can_color": true, - "children": [ - { - "frame": "block012b_12_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_12_001.png", - "glow_frame": "block012b_12_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1514": { - "can_color": true, - "children": [ - { - "frame": "block012b_13_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_13_001.png", - "glow_frame": "block012b_13_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1515": { - "can_color": true, - "children": [ - { - "frame": "block012b_14_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_14_001.png", - "glow_frame": "block012b_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1516": { - "can_color": true, - "children": [ - { - "frame": "waterfallAnim_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "waterfallAnim_color_001.png", - "localDy": 0, - "tint": 52224 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "waterfallAnim_001.png", - "glow_frame": "waterfallAnim_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1517": { - "can_color": true, - "children": [ - { - "frame": "waterfallAnim_color_007.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "waterfallAnim_007.png", - "glow_frame": "waterfallAnim_007.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1518": { - "can_color": true, - "children": [ - { - "frame": "waterSplash_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "waterSplash_001.png", - "glow_frame": "waterSplash_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5833333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1519": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "starAnim_002.png", - "glow_frame": "starAnim_002.png", - "gridH": 0.3333333432674408, - "gridW": 0.3166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1520": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1521": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingLine_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_rotatingLine_01_001.png", - "glow_frame": "d_rotatingLine_01_glow_001.png", - "gridH": 2.0999999046325684, - "gridW": 0.20000000298023224, - "spriteH": 63, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1522": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingLine_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1006, - "frame": "d_rotatingLine_02_001.png", - "glow_frame": "d_rotatingLine_02_glow_001.png", - "gridH": 1.7000000476837158, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1523": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingLine_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_rotatingLine_03_001.png", - "glow_frame": "d_rotatingLine_03_glow_001.png", - "gridH": 1.2333333492279053, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1524": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingLine_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1006, - "frame": "d_rotatingLine_04_001.png", - "glow_frame": "d_rotatingLine_04_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 0.10000000149011612, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1525": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingSquare_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_rotatingSquare_01_001.png", - "glow_frame": "d_rotatingSquare_01_glow_001.png", - "gridH": 0.21666666865348816, - "gridW": 0.20000000298023224, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1526": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingSquare_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1006, - "frame": "d_rotatingSquare_02_001.png", - "glow_frame": "d_rotatingSquare_02_glow_001.png", - "gridH": 0.18333333730697632, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1527": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingSquare_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1005, - "frame": "d_rotatingSquare_03_001.png", - "glow_frame": "d_rotatingSquare_03_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1528": { - "can_color": true, - "children": [ - { - "frame": "d_rotatingSquare_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1006, - "frame": "d_rotatingSquare_04_001.png", - "glow_frame": "d_rotatingSquare_04_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.10000000149011612, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1529": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block013_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1530": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "persp_block013_09_001.png", - "glow_frame": "persp_block013_09_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1531": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1532": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block013_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1533": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block013_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1534": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1535": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1536": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_05_001.png", - "localDy": -7.5, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block013_05_001.png", - "localDy": 7.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1537": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_04_001.png", - "localDy": -7.5, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block013_04_001.png", - "localDy": 7.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1538": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_07_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block013_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1539": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block013_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1540": { - "can_color": true, - "children": [ - { - "frame": "persp_block013_08_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1552": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block011_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block011_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1553": { - "can_color": true, - "children": [ - { - "frame": "block008_topcolor_15_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block011_01b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block011_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1554": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_03_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block011_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1555": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_04_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block011_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block011_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1556": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_05_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block011_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block011_02_001.png", - "localDy": 2.5, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.550000011920929, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1557": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_06_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block011_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.38333332538604736, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1558": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_07_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block011_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1559": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_08_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block011_05_001.png", - "localDy": -11.25, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block011_05_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block011_05_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block011_05_001.png", - "localDy": 11.25, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 2.049999952316284, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1560": { - "can_color": true, - "children": [ - { - "frame": "persp_outline_09_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "persp_block011_04_001.png", - "localDy": -10, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block011_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "persp_block011_04_001.png", - "localDy": 10, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0499999523162842, - "gridW": 1.0499999523162842, - "spriteH": 31.5, - "spriteW": 31.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1561": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "persp_outline_01_001.png", - "glow_frame": "persp_outline_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1562": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block008_topcolor_15_001.png", - "glow_frame": "block008_topcolor_15_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1563": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "persp_outline_03_001.png", - "glow_frame": "persp_outline_03_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1564": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "persp_outline_04_001.png", - "glow_frame": "persp_outline_04_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4000000059604645, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1565": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "persp_outline_05_001.png", - "glow_frame": "persp_outline_05_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5666666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1566": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "persp_outline_06_001.png", - "glow_frame": "persp_outline_06_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4000000059604645, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1567": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "persp_outline_07_001.png", - "glow_frame": "persp_outline_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1568": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "persp_outline_08_001.png", - "glow_frame": "persp_outline_08_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 2.066666603088379, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1569": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "persp_outline_09_001.png", - "glow_frame": "persp_outline_09_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1582": { - "can_color": true, - "children": [ - { - "frame": "fireball_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "fireball_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "fireball_01_001.png", - "glow_frame": "fireball_01_glow_001.png", - "gridH": 0.8666666746139526, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 9, - "hitbox_radius": 4, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1583": { - "can_color": true, - "children": [ - { - "frame": "fireball_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "fireball_02_001.png", - "glow_frame": "fireball_02_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 1.0333333015441895, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 9, - "hitbox_radius": 4, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1584": { - "can_color": true, - "default_base_color_channel": 1010, - "default_detail_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1585": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1586": { - "can_color": true, - "children": [ - { - "frame": null, - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 1.2000000476837158, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "trigger", - "default_z_layer": 1, - "default_z_order": 0 - }, - "1587": { - "can_color": true, - "children": [ - { - "frame": "d_heart01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "d_heart01_001.png", - "glow_frame": "d_heart01_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1588": { - "can_color": true, - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "d_heart01_match_001.png", - "glow_frame": "d_heart01_match_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1589": { - "can_color": true, - "children": [ - { - "frame": "d_potion01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "d_potion01_001.png", - "glow_frame": "d_potion01_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1590": { - "can_color": true, - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "d_potion01_match_001.png", - "glow_frame": "d_potion01_match_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 0.8500000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1591": { - "can_color": true, - "children": [ - { - "frame": "lava_top_bubble_color_008.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "lava_top_bubble_008.png", - "glow_frame": "lava_top_bubble_008.png", - "gridH": 0.11666666716337204, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1592": { - "can_color": true, - "children": [ - { - "frame": "d_animSquare_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "d_animSquare_01_006.png", - "glow_frame": "d_animSquare_01_006.png", - "gridH": 0.25, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1593": { - "can_color": true, - "children": [ - { - "frame": "lava_top_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "lava_top_002.png", - "glow_frame": "lava_top_002.png", - "gridH": 0.11666666716337204, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1594": { - "type": "ring", - "frame": "ring_custom_01_001.png", - "gridW": 1.2, - "gridH": 1.2, - "default_detail_color_channel": 1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1595": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1596": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_skull_01_001.png", - "glow_frame": "d_skull_01_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.6499999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "1597": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_skull_02_001.png", - "glow_frame": "d_skull_02_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.6000000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 1 - }, - "1598": { - "can_color": true, - "children": [ - { - "frame": "d_skull01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "d_skull01_001.png", - "glow_frame": "d_skull01_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1599": { - "can_color": true, - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "d_skull01_match_001.png", - "glow_frame": "d_skull01_match_glow_001.png", - "gridH": 0.8666666746139526, - "gridW": 0.8500000238418579, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1600": { - "can_color": true, - "children": [ - { - "frame": "d_sign_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "d_sign_01_001.png", - "glow_frame": "d_sign_01_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.9666666388511658, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1601": { - "can_color": true, - "children": [ - { - "frame": "d_sign_pole_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "d_sign_pole_001.png", - "glow_frame": "d_sign_pole_glow_001.png", - "gridH": 1.3333333730697632, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 8, - "default_z_layer": 3, - "default_z_order": 8 - }, - "1602": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_sign_img_01_001.png", - "glow_frame": "d_sign_img_01_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 12, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1603": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_sign_img_02_001.png", - "glow_frame": "d_sign_img_02_glow_001.png", - "gridH": 0.4833333194255829, - "gridW": 0.5833333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 12, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1604": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_sign_img_03_001.png", - "glow_frame": "d_sign_img_03_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.6499999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 12, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1605": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_sign_img_04_001.png", - "glow_frame": "d_sign_img_04_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.6499999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 12, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1606": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_sign_img_05_001.png", - "glow_frame": "d_sign_img_05_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.23333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 12, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1607": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_sign_img_06_001.png", - "glow_frame": "d_sign_img_06_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.3499999940395355, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 12, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1608": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_sign_paint_01_001.png", - "glow_frame": "d_sign_paint_01_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.3166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1609": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_sign_paint_02_001.png", - "glow_frame": "d_sign_paint_02_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1610": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "d_sign_paint_03_001.png", - "glow_frame": "d_sign_paint_03_glow_001.png", - "gridH": 0.18333333730697632, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1611": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1612": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1613": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1614": { - "can_color": true, - "children": [ - { - "frame": "smallCoin_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "smallCoin_02_highlight_001.png", - "localDy": 0, - "tint": 5898073, - "z": 10 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1010, - "frame": "smallCoin_01_001.png", - "glow_frame": "smallCoin_01_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.8333333134651184, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "1615": { - "can_color": true, - "default_base_color_channel": 1, - "frame": null, - "glow_frame": "none", - "gridH": 1.0499999523162842, - "gridW": 1.4500000476837158, - "spriteH": 31.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1616": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1617": { - "can_color": true, - "children": [ - { - "frame": "block013_detail_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1012, - "frame": "block013_detail_06_001.png", - "glow_frame": "block013_detail_06_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1618": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "explosion_01_007.png", - "glow_frame": "explosion_01_007.png", - "gridH": 0.36666667461395264, - "gridW": 0.3333333432674408, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1619": { - "can_color": true, - "children": [ - { - "frame": "spinBlade01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "spinBlade01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "spinBlade01_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "spinBlade01_001.png", - "glow_frame": "spinBlade01_glow_001.png", - "gridH": 1.2999999523162842, - "gridW": 1.6333333253860474, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 25, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1620": { - "can_color": true, - "children": [ - { - "frame": "spinBlade02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "spinBlade02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "spinBlade02_001.png", - "glow_frame": "spinBlade02_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 15, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1621": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_01_001.png", - "glow_frame": "block013_edge_01_glow_001.png", - "gridH": 1, - "gridW": 0.30000001192092896, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1622": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_02_001.png", - "glow_frame": "block013_edge_02_glow_001.png", - "gridH": 1, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1623": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_03_001.png", - "glow_frame": "block013_edge_03_glow_001.png", - "gridH": 1, - "gridW": 0.28333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1624": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_04_001.png", - "glow_frame": "block013_edge_04_glow_001.png", - "gridH": 1, - "gridW": 0.3166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1625": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_05_001.png", - "glow_frame": "block013_edge_05_glow_001.png", - "gridH": 1, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1626": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_06_001.png", - "glow_frame": "block013_edge_06_glow_001.png", - "gridH": 1, - "gridW": 0.23333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1627": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_07_001.png", - "glow_frame": "block013_edge_07_glow_001.png", - "gridH": 1, - "gridW": 0.25, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1628": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_08_001.png", - "glow_frame": "block013_edge_08_glow_001.png", - "gridH": 1, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1629": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_09_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_09_001.png", - "glow_frame": "block013_edge_09_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1630": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_10_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_10_001.png", - "glow_frame": "block013_edge_10_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1631": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_11_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_11_001.png", - "glow_frame": "block013_edge_11_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1632": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_12_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_12_001.png", - "glow_frame": "block013_edge_12_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1633": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_13_001.png", - "glow_frame": "block013_edge_13_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1634": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_14_001.png", - "glow_frame": "block013_edge_14_glow_001.png", - "gridH": 0.28333333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1635": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_15_001.png", - "glow_frame": "block013_edge_15_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1636": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_16_001.png", - "glow_frame": "block013_edge_16_glow_001.png", - "gridH": 0.28333333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1637": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_c_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_c_01_001.png", - "glow_frame": "block013_edge_c_01_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1638": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_c_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_c_02_001.png", - "glow_frame": "block013_edge_c_02_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1639": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_c_03_001.png", - "glow_frame": "block013_edge_c_03_glow_001.png", - "gridH": 0.25, - "gridW": 0.23333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1640": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_c_04_001.png", - "glow_frame": "block013_edge_c_04_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1641": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_c_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_c_05_001.png", - "glow_frame": "block013_edge_c_05_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1642": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_c_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_c_06_001.png", - "glow_frame": "block013_edge_c_06_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1643": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_c_07_001.png", - "glow_frame": "block013_edge_c_07_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.15000000596046448, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1644": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_c_08_001.png", - "glow_frame": "block013_edge_c_08_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.20000000298023224, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1645": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_c_09_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_c_09_001.png", - "glow_frame": "block013_edge_c_09_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.25, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1646": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_c_10_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_c_10_001.png", - "glow_frame": "block013_edge_c_10_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1647": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_c_11_001.png", - "glow_frame": "block013_edge_c_11_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1648": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_c_12_001.png", - "glow_frame": "block013_edge_c_12_glow_001.png", - "gridH": 0.28333333134651184, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1649": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_c_13_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_c_13_001.png", - "glow_frame": "block013_edge_c_13_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.18333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1650": { - "can_color": true, - "children": [ - { - "frame": "block013_edge_c_14_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block013_edge_c_14_001.png", - "glow_frame": "block013_edge_c_14_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1651": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_c_15_001.png", - "glow_frame": "block013_edge_c_15_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1652": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_edge_c_16_001.png", - "glow_frame": "block013_edge_c_16_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1653": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_01_001.png", - "glow_frame": "block013_light_01_glow_001.png", - "gridH": 1, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1654": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_02_001.png", - "glow_frame": "block013_light_02_glow_001.png", - "gridH": 1, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1655": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_03_001.png", - "glow_frame": "block013_light_03_glow_001.png", - "gridH": 1, - "gridW": 0.25, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1656": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_04_001.png", - "glow_frame": "block013_light_04_glow_001.png", - "gridH": 1, - "gridW": 0.28333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1657": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_05_001.png", - "glow_frame": "block013_light_05_glow_001.png", - "gridH": 1, - "gridW": 0.23333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1658": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_06_001.png", - "glow_frame": "block013_light_06_glow_001.png", - "gridH": 1, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1659": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_07_001.png", - "glow_frame": "block013_light_07_glow_001.png", - "gridH": 1, - "gridW": 0.25, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1660": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_08_001.png", - "glow_frame": "block013_light_08_glow_001.png", - "gridH": 1, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1661": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_09_001.png", - "glow_frame": "block013_light_09_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1662": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_10_001.png", - "glow_frame": "block013_light_10_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1663": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_11_001.png", - "glow_frame": "block013_light_11_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1664": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_12_001.png", - "glow_frame": "block013_light_12_glow_001.png", - "gridH": 0.28333333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1665": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_13_001.png", - "glow_frame": "block013_light_13_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1666": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_14_001.png", - "glow_frame": "block013_light_14_glow_001.png", - "gridH": 0.18333333730697632, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1667": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_15_001.png", - "glow_frame": "block013_light_15_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1668": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_16_001.png", - "glow_frame": "block013_light_16_glow_001.png", - "gridH": 0.28333333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1669": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_01_001.png", - "glow_frame": "block013_light_c_01_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.18333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1670": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_02_001.png", - "glow_frame": "block013_light_c_02_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1671": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_03_001.png", - "glow_frame": "block013_light_c_03_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.28333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1672": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_04_001.png", - "glow_frame": "block013_light_c_04_glow_001.png", - "gridH": 0.25, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1673": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_05_001.png", - "glow_frame": "block013_light_c_05_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.3166666626930237, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1674": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_06_001.png", - "glow_frame": "block013_light_c_06_glow_001.png", - "gridH": 0.21666666865348816, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1675": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_07_001.png", - "glow_frame": "block013_light_c_07_glow_001.png", - "gridH": 0.25, - "gridW": 0.18333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1676": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_08_001.png", - "glow_frame": "block013_light_c_08_glow_001.png", - "gridH": 0.3166666626930237, - "gridW": 0.25, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1677": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_09_001.png", - "glow_frame": "block013_light_c_09_glow_001.png", - "gridH": 0.25, - "gridW": 0.30000001192092896, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1678": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_10_001.png", - "glow_frame": "block013_light_c_10_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1679": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_11_001.png", - "glow_frame": "block013_light_c_11_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1680": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_12_001.png", - "glow_frame": "block013_light_c_12_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1681": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_13_001.png", - "glow_frame": "block013_light_c_13_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.21666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1682": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_14_001.png", - "glow_frame": "block013_light_c_14_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1683": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_15_001.png", - "glow_frame": "block013_light_c_15_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.28333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1684": { - "can_color": true, - "default_base_color_channel": 4, - "frame": "block013_light_c_16_001.png", - "glow_frame": "block013_light_c_16_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1685": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1686": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1687": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1688": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1689": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1690": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1691": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1692": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1693": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1694": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1695": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1696": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1697": { - "can_color": true, - "default_base_color_channel": 1006, - "default_detail_color_channel": 1, - "frame": "d_zag_01_003.png", - "glow_frame": "d_zag_01_003.png", - "gridH": 0.4333333373069763, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1698": { - "can_color": true, - "default_base_color_channel": 1006, - "default_detail_color_channel": 1, - "frame": "d_zag_02_002.png", - "glow_frame": "d_zag_02_002.png", - "gridH": 0.6166666746139526, - "gridW": 0.6499999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1699": { - "can_color": true, - "default_base_color_channel": 1006, - "default_detail_color_channel": 1, - "frame": "d_zag_03_001.png", - "glow_frame": "d_zag_03_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1700": { - "can_color": true, - "children": [ - { - "frame": null, - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 1.2000000476837158, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "trigger", - "default_z_layer": 3, - "default_z_order": 0 - }, - "1701": { - "can_color": true, - "children": [ - { - "frame": "bladeTrap01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "bladeTrap01_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "bladeTrap01_001.png", - "glow_frame": "bladeTrap01_glow_001.png", - "gridH": 0.9333333373069763, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 6, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1702": { - "can_color": true, - "children": [ - { - "frame": "bladeTrap02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "bladeTrap02_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "bladeTrap02_001.png", - "glow_frame": "bladeTrap02_glow_001.png", - "gridH": 0.9666666388511658, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 6, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1703": { - "can_color": true, - "children": [ - { - "frame": "bladeTrap03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "bladeTrap03_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "bladeTrap03_001.png", - "glow_frame": "bladeTrap03_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 6, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1704": { - "type": "ring", - "frame": "dashRing_01_001.png", - "gridW": 1.2, - "gridH": 1.2, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1705": { - "can_color": true, - "children": [ - { - "frame": "sawblade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "sawblade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1010, - "frame": "sawblade_01_001.png", - "glow_frame": "sawblade_01_glow_001.png", - "gridH": 2.8333332538604736, - "gridW": 1.4666666984558105, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 32.29999923706055, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1706": { - "can_color": true, - "children": [ - { - "frame": "sawblade_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1010, - "frame": "sawblade_02_001.png", - "glow_frame": "sawblade_02_glow_001.png", - "gridH": 2, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 21.600000381469727, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1707": { - "can_color": true, - "children": [ - { - "frame": "sawblade_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1010, - "frame": "sawblade_03_001.png", - "glow_frame": "sawblade_03_glow_001.png", - "gridH": 1.3333333730697632, - "gridW": 1.3333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 11.77500057220459, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1708": { - "can_color": true, - "children": [ - { - "frame": "darkblade_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "darkblade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "darkblade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "darkblade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "darkblade_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1010, - "default_detail_color_channel": 1, - "frame": "darkblade_01_001.png", - "glow_frame": "darkblade_01_glow_001.png", - "gridH": 1.4333332777023315, - "gridW": 1.4333332777023315, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 28.899999618530273, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1709": { - "can_color": true, - "children": [ - { - "frame": "darkblade_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "darkblade_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1010, - "default_detail_color_channel": 1, - "frame": "darkblade_02_001.png", - "glow_frame": "darkblade_02_glow_001.png", - "gridH": 2.0999999046325684, - "gridW": 1.8333333730697632, - "spriteH": 63, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 17.440000534057617, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1710": { - "can_color": true, - "children": [ - { - "frame": "darkblade_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "darkblade_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1010, - "default_detail_color_channel": 1, - "frame": "darkblade_03_001.png", - "glow_frame": "darkblade_03_glow_001.png", - "gridH": 1.4333332777023315, - "gridW": 1.4333332777023315, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 12.90000057220459, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1711": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "pit_b_01_001.png", - "glow_frame": "pit_b_01_glow_001.png", - "gridH": 1.6666666269302368, - "gridW": 1.5666667222976685, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1712": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "pit_b_02_001.png", - "glow_frame": "pit_b_02_glow_001.png", - "gridH": 1.8666666746139526, - "gridW": 1.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1713": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "pit_b_03_001.png", - "glow_frame": "pit_b_03_glow_001.png", - "gridH": 1.6666666269302368, - "gridW": 1.2999999523162842, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1714": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "pit_b_04_001.png", - "glow_frame": "pit_b_04_glow_001.png", - "gridH": 1.3666666746139526, - "gridW": 1.2666666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1715": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_03_001.png", - "glow_frame": "pit_03_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1716": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_01_low_001.png", - "glow_frame": "pit_01_low_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1717": { - "can_color": true, - "children": [ - { - "frame": "pit_01_slope_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1010, - "frame": "pit_01_slope_01_001.png", - "glow_frame": "pit_01_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1718": { - "can_color": true, - "children": [ - { - "frame": "pit_01_slope_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1010, - "frame": "pit_01_slope_02_001.png", - "glow_frame": "pit_01_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1719": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_04_001.png", - "glow_frame": "pit_04_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1720": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_04_02_001.png", - "glow_frame": "pit_04_02_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1721": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_04_03_001.png", - "glow_frame": "pit_04_03_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1722": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_04_low_001.png", - "glow_frame": "pit_04_low_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1723": { - "can_color": true, - "children": [ - { - "frame": "pit_04_slope_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1010, - "frame": "pit_04_slope_01_001.png", - "glow_frame": "pit_04_slope_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1724": { - "can_color": true, - "children": [ - { - "frame": "pit_04_slope_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1010, - "frame": "pit_04_slope_02_001.png", - "glow_frame": "pit_04_slope_02_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1725": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_05_001.png", - "glow_frame": "pit_05_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1726": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_05_02_001.png", - "glow_frame": "pit_05_02_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1727": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_05_03_001.png", - "glow_frame": "pit_05_03_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1728": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_06_001.png", - "glow_frame": "pit_06_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1729": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_06_2_001.png", - "glow_frame": "pit_06_2_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.8666666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1730": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_07_001.png", - "glow_frame": "pit_07_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1731": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_07_2_001.png", - "glow_frame": "pit_07_2_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1732": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_07_3_001.png", - "glow_frame": "pit_07_3_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1733": { - "can_color": true, - "default_base_color_channel": 1010, - "frame": "pit_07_4_001.png", - "glow_frame": "pit_07_4_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1734": { - "can_color": true, - "children": [ - { - "frame": "blackCogwheel_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "blackCogwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "blackCogwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "blackCogwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - }, - { - "frame": "blackCogwheel_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1010, - "frame": "blackCogwheel_01_001.png", - "glow_frame": "blackCogwheel_01_glow_001.png", - "gridH": 1.3666666746139526, - "gridW": 1.3666666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 32, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1735": { - "can_color": true, - "children": [ - { - "frame": "blackCogwheel_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "blackCogwheel_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1010, - "frame": "blackCogwheel_02_001.png", - "glow_frame": "blackCogwheel_02_glow_001.png", - "gridH": 1.7666666507720947, - "gridW": 1.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 17.510000228881836, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1736": { - "can_color": true, - "children": [ - { - "frame": "blackCogwheel_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "blackCogwheel_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1010, - "frame": "blackCogwheel_03_001.png", - "glow_frame": "blackCogwheel_03_glow_001.png", - "gridH": 1.2999999523162842, - "gridW": 1.2999999523162842, - "spritesheet": "GJ_GameSheet-uhd", - "type": "hazard", - "z": 1, - "hitbox_radius": 12.479999542236328, - "default_z_layer": 5, - "default_z_order": 1 - }, - "1737": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_001_001.png", - "glow_frame": "d_pixelArt01_001_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1738": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_002_001.png", - "glow_frame": "d_pixelArt01_002_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1739": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_003_001.png", - "glow_frame": "d_pixelArt01_003_glow_001.png", - "gridH": 0.25, - "gridW": 0.25, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1740": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_004_001.png", - "glow_frame": "d_pixelArt01_004_glow_001.png", - "gridH": 1, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1741": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_005_001.png", - "glow_frame": "d_pixelArt01_005_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1742": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_pixelArt01_006_001.png", - "glow_frame": "d_pixelArt01_006_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1743": { - "can_color": true, - "children": [ - { - "frame": "blockOutline_14new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "frame": "triangle_a_02_001.png", - "glow_frame": "triangle_a_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1744": { - "can_color": true, - "children": [ - { - "frame": "blockOutline_15new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "frame": "triangle_a_04_001.png", - "glow_frame": "triangle_a_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1745": { - "can_color": true, - "children": [ - { - "frame": "blockOutline_14new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "frame": "triangle_c_02_001.png", - "glow_frame": "triangle_c_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1746": { - "can_color": true, - "children": [ - { - "frame": "blockOutline_15new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "frame": "triangle_c_04_001.png", - "glow_frame": "triangle_c_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1747": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "blockOutline_14new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "lighttriangle_01_02_color_001.png", - "glow_frame": "lighttriangle_01_02_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1748": { - "black": true, - "can_color": true, - "children": [ - { - "frame": "blockOutline_15new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "color_channel": "black", - "default_base_color_channel": 1004, - "frame": "lighttriangle_01_04_color_001.png", - "glow_frame": "lighttriangle_01_04_color_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1749": { - "can_color": true, - "children": [ - { - "frame": "blockOutline_14new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "frame": "triangle_f_02_001.png", - "glow_frame": "triangle_f_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1750": { - "can_color": true, - "children": [ - { - "frame": "blockOutline_15new_001.png", - "localDy": 0, - "tint": 65280, - "z": 2 - } - ], - "default_base_color_channel": 1004, - "frame": "triangle_f_04_001.png", - "glow_frame": "triangle_f_04_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1751": { - "type": "ring", - "frame": "dashRing_02_001.png", - "gridW": 1.2, - "gridH": 1.2, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "1752": { - "can_color": true, - "children": [ - { - "frame": "d_ringSpiral_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_ringSpiral_01_001.png", - "glow_frame": "d_ringSpiral_01_glow_001.png", - "gridH": 1.2166666984558105, - "gridW": 1.4166666269302368, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1753": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "gridLine01_001.png", - "glow_frame": "gridLine01_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1754": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "gridLine02_001.png", - "glow_frame": "gridLine02_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1755": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1756": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "d_link_b_06_001.png", - "glow_frame": "d_link_b_06_glow_001.png", - "gridH": 1, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1757": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "gridLine03_001.png", - "glow_frame": "gridLine03_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1758": { - "can_color": true, - "children": [ - { - "frame": "d_gradient_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1759": { - "can_color": true, - "children": [ - { - "frame": "d_gradient_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1760": { - "can_color": true, - "children": [ - { - "frame": "d_gradient_b_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1761": { - "can_color": true, - "children": [ - { - "frame": "d_gradient_b_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1762": { - "can_color": true, - "children": [ - { - "frame": "d_gradient_c_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1763": { - "can_color": true, - "children": [ - { - "frame": "d_gradient_c_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1764": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_small_ball_01_001.png", - "glow_frame": "d_small_ball_01_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1765": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_small_ball_02_001.png", - "glow_frame": "d_small_ball_02_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1766": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_small_ball_03_001.png", - "glow_frame": "d_small_ball_03_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1767": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_small_ball_04_001.png", - "glow_frame": "d_small_ball_04_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1768": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_small_ball_05_001.png", - "glow_frame": "d_small_ball_05_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.18333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1769": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_01c_001.png", - "glow_frame": "block013_01c_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1770": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_03c_001.png", - "glow_frame": "block013_03c_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1771": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_02c_001.png", - "glow_frame": "block013_02c_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1772": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block013_04c_001.png", - "glow_frame": "block013_04c_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1773": { - "can_color": true, - "children": [ - { - "frame": "block013_01c_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block013_02c_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1774": { - "can_color": true, - "children": [ - { - "frame": "block013_03c_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block013_04c_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1775": { - "can_color": true, - "children": [ - { - "frame": "block013_01c_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block013_02c_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1776": { - "can_color": true, - "children": [ - { - "frame": "block013_03c_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block013_04c_001.png", - "localDy": 0, - "tint": 65280 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1777": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block011_01_001.png", - "glow_frame": "block011_01_glow_001.png", - "gridH": 1.1833332777023315, - "gridW": 1.0833333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1778": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block011_02_001.png", - "glow_frame": "block011_02_glow_001.png", - "gridH": 1.1666666269302368, - "gridW": 0.949999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1779": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block011_03_001.png", - "glow_frame": "block011_03_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 1.0166666507720947, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1780": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block011_04_001.png", - "glow_frame": "block011_04_glow_001.png", - "gridH": 1.1333333253860474, - "gridW": 1.1166666746139526, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1781": { - "can_color": true, - "children": [ - { - "frame": "block011b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_01_001.png", - "glow_frame": "block011b_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1782": { - "can_color": true, - "children": [ - { - "frame": "block011b_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_02_001.png", - "glow_frame": "block011b_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1783": { - "can_color": true, - "children": [ - { - "frame": "block011b_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_03_001.png", - "glow_frame": "block011b_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1784": { - "can_color": true, - "children": [ - { - "frame": "block011b_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block011b_04_001.png", - "glow_frame": "block011b_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1785": { - "can_color": true, - "children": [ - { - "frame": "block011_01_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011_02_001.png", - "localDy": 0, - "tint": 65280 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1786": { - "can_color": true, - "children": [ - { - "frame": "block011_03_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011_04_001.png", - "localDy": 0, - "tint": 65280 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1787": { - "can_color": true, - "children": [ - { - "frame": "block011_01_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011_02_001.png", - "localDy": 0, - "tint": 65280 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1788": { - "can_color": true, - "children": [ - { - "frame": "block011_03_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011_04_001.png", - "localDy": 0, - "tint": 65280 - } - ], - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1789": { - "can_color": true, - "children": [ - { - "frame": "block011b_01_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011b_02_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011b_01_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1790": { - "can_color": true, - "children": [ - { - "frame": "block011b_03_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011b_04_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011b_03_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1791": { - "can_color": true, - "children": [ - { - "frame": "block011b_01_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011b_02_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011b_01_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1792": { - "can_color": true, - "children": [ - { - "frame": "block011b_03_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011b_04_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block011b_03_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1793": { - "can_color": true, - "children": [ - { - "frame": "block012_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_03_001.png", - "glow_frame": "block012_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1794": { - "can_color": true, - "children": [ - { - "frame": "block012_03_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block012_01_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1795": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "block012_12_001.png", - "glow_frame": "block012_12_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1796": { - "can_color": true, - "children": [ - { - "frame": "block012_13_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block012_13_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1797": { - "can_color": true, - "children": [ - { - "frame": "puzzle_base_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "puzzle_piece_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "puzzle_piece_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "puzzle_base_001.png", - "glow_frame": "puzzle_base_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1798": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1799": { - "can_color": true, - "children": [ - { - "frame": "block012b_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_03_001.png", - "glow_frame": "block012b_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1800": { - "can_color": true, - "children": [ - { - "frame": "block012b_03_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block012b_01_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1801": { - "can_color": true, - "children": [ - { - "frame": "block012b_12_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_12_001.png", - "glow_frame": "block012b_12_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1802": { - "can_color": true, - "children": [ - { - "frame": "block012b_13_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block012b_13_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1803": { - "can_color": true, - "children": [ - { - "frame": "block012_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_01_001.png", - "glow_frame": "block012_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1804": { - "can_color": true, - "children": [ - { - "frame": "block012_01_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block012_03_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1805": { - "can_color": true, - "children": [ - { - "frame": "block012b_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_01_001.png", - "glow_frame": "block012b_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1806": { - "can_color": true, - "children": [ - { - "frame": "block012b_01_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block012b_03_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1807": { - "can_color": true, - "children": [ - { - "frame": "block012_13_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "block012_13_001.png", - "glow_frame": "block012_13_glow_001.png", - "gridH": 0.8833333253860474, - "gridW": 0.8833333253860474, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1808": { - "can_color": true, - "children": [ - { - "frame": "block012_13_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block012_14_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1809": { - "can_color": true, - "children": [ - { - "frame": "block012b_13_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "block012b_13_001.png", - "glow_frame": "block012b_13_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1810": { - "can_color": true, - "children": [ - { - "frame": "block012b_13_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "block012b_14_001.png", - "localDy": 0, - "tint": 65280 - }, - { - "frame": "blockOutline_15_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -9, - "default_z_layer": 1, - "default_z_order": -9 - }, - "1811": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1812": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1813": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1814": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1815": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1816": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1817": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1818": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1819": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1820": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_02_01_color_001.png", - "glow_frame": "lightsquare_02_01_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1821": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_02_02_color_001.png", - "glow_frame": "lightsquare_02_02_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1823": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_02_03_color_001.png", - "glow_frame": "lightsquare_02_03_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1824": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_02_04_color_001.png", - "glow_frame": "lightsquare_02_04_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1825": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_02_05_color_001.png", - "glow_frame": "lightsquare_02_05_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1826": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_02_06_color_001.png", - "glow_frame": "lightsquare_02_06_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1827": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_02_07_color_001.png", - "glow_frame": "lightsquare_02_07_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1828": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "lightsquare_02_08_color_001.png", - "glow_frame": "lightsquare_02_08_color_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1829": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1830": { - "can_color": true, - "default_base_color_channel": 1007, - "frame": "gridLine04_001.png", - "glow_frame": "gridLine04_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1831": { - "can_color": true, - "children": [ - { - "frame": "d_scaleFadeRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_scaleFadeRing_01_001.png", - "glow_frame": "d_scaleFadeRing_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1832": { - "can_color": true, - "children": [ - { - "frame": "d_scaleFadeRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_scaleFadeRing_03_001.png", - "glow_frame": "d_scaleFadeRing_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1833": { - "can_color": true, - "children": [ - { - "frame": "d_scaleFadeRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_scaleFadeRing_02_001.png", - "glow_frame": "d_scaleFadeRing_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1834": { - "can_color": true, - "children": [ - { - "frame": "d_scaleFadeRing_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1007, - "frame": "d_scaleFadeRing_04_001.png", - "glow_frame": "d_scaleFadeRing_04_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1835": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_scaleFadeRing_01_001.png", - "glow_frame": "d_scaleFadeRing_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1836": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_scaleFadeRing_03_001.png", - "glow_frame": "d_scaleFadeRing_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1837": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_scaleFadeRing_02_001.png", - "glow_frame": "d_scaleFadeRing_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1838": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "d_scaleFadeRing_04_001.png", - "glow_frame": "d_scaleFadeRing_04_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1839": { - "can_color": true, - "children": [ - { - "frame": "d_scaleFadeRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "d_scaleFadeRing_01_001.png", - "glow_frame": "d_scaleFadeRing_01_glow_001.png", - "gridH": 2, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1840": { - "can_color": true, - "children": [ - { - "frame": "d_scaleFadeRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_03_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "d_scaleFadeRing_03_001.png", - "glow_frame": "d_scaleFadeRing_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1841": { - "can_color": true, - "children": [ - { - "frame": "d_scaleFadeRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "d_scaleFadeRing_02_001.png", - "glow_frame": "d_scaleFadeRing_02_glow_001.png", - "gridH": 2, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1842": { - "can_color": true, - "children": [ - { - "frame": "d_scaleFadeRing_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_scaleFadeRing_04_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "d_scaleFadeRing_04_001.png", - "glow_frame": "d_scaleFadeRing_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1843": { - "can_color": true, - "children": [ - { - "frame": "d_sign_tile_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "d_sign_tile_01_001.png", - "glow_frame": "d_sign_tile_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1844": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "gjHand_01_001.png", - "glow_frame": "gjHand_01_glow_001.png", - "gridH": 0.949999988079071, - "gridW": 1.875, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1845": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "gjHand_02_001.png", - "glow_frame": "gjHand_02_glow_001.png", - "gridH": 0.949999988079071, - "gridW": 1.2833333015441895, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1846": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "gjHand_03_001.png", - "glow_frame": "gjHand_03_glow_001.png", - "gridH": 1.4333332777023315, - "gridW": 1.2833333015441895, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1847": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "gjHand_04_001.png", - "glow_frame": "gjHand_04_glow_001.png", - "gridH": 1.850000023841858, - "gridW": 1.350000023841858, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1848": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "gjHand_05_001.png", - "glow_frame": "gjHand_05_glow_001.png", - "gridH": 1, - "gridW": 1.2833333015441895, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1849": { - "can_color": true, - "children": [ - { - "frame": "gj_smoke01_color_006.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_smoke01_006.png", - "glow_frame": "gj_smoke01_006.png", - "gridH": 0.5333333611488342, - "gridW": 1.2000000476837158, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1850": { - "can_color": true, - "children": [ - { - "frame": "gj_smoke02_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_smoke02_002.png", - "glow_frame": "gj_smoke02_002.png", - "gridH": 0.6833333373069763, - "gridW": 0.8500000238418579, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1851": { - "can_color": true, - "children": [ - { - "frame": "gj_drops01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_drops01_001.png", - "glow_frame": "gj_drops01_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.4000000059604645, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1852": { - "can_color": true, - "children": [ - { - "frame": "gj_drops02_color_008.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_drops02_008.png", - "glow_frame": "gj_drops02_008.png", - "gridH": 0.8333333134651184, - "gridW": 0.6666666865348816, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1853": { - "can_color": true, - "children": [ - { - "frame": "gj_drops03_color_006.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_drops03_006.png", - "glow_frame": "gj_drops03_006.png", - "gridH": 1.350000023841858, - "gridW": 0.13333334028720856, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1854": { - "can_color": true, - "children": [ - { - "frame": "gj_drops04_color_014.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_drops04_014.png", - "glow_frame": "gj_drops04_014.png", - "gridH": 0.6000000238418579, - "gridW": 0.3333333432674408, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1855": { - "can_color": true, - "children": [ - { - "frame": "explosion_01_007.png", - "localDy": 0, - "tint": 5898073, - "z": -1 - }, - { - "frame": "gj_drops05_color_016.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_drops05_016.png", - "glow_frame": "gj_drops05_016.png", - "gridH": 0.13333334028720856, - "gridW": 0.1666666716337204, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1856": { - "can_color": true, - "children": [ - { - "frame": "gj_bubble01_color_014.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_bubble01_014.png", - "glow_frame": "gj_bubble01_014.png", - "gridH": 0.38333332538604736, - "gridW": 0.5333333611488342, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1857": { - "can_color": true, - "children": [ - { - "frame": "gj_lightning01_color_002.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_lightning01_002.png", - "glow_frame": "gj_lightning01_002.png", - "gridH": 0.46666666865348816, - "gridW": 2, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1858": { - "can_color": true, - "children": [ - { - "frame": "gj_drops06_2_005.png", - "localDy": 0, - "tint": 5898073, - "z": -1 - }, - { - "frame": "gj_drops06_3_005.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1011, - "frame": "gj_drops06_005.png", - "glow_frame": "gj_drops06_005.png", - "gridH": 0.6833333373069763, - "gridW": 0.699999988079071, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1859": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1860": { - "can_color": true, - "children": [ - { - "frame": "gj_lightning02_color_010.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "gj_lightning02_010.png", - "glow_frame": "gj_lightning02_010.png", - "gridH": 0.4833333194255829, - "gridW": 1.4500000476837158, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1861": { - "can_color": true, - "children": [ - { - "frame": "blockDesign01_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign01_01_001.png", - "glow_frame": "blockDesign01_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1862": { - "can_color": true, - "children": [ - { - "frame": "blockDesign01_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign01_02_001.png", - "glow_frame": "blockDesign01_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1863": { - "can_color": true, - "children": [ - { - "frame": "blockDesign01_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign01_03_001.png", - "glow_frame": "blockDesign01_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1864": { - "can_color": true, - "children": [ - { - "frame": "blockDesign01_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign01_04_001.png", - "glow_frame": "blockDesign01_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1865": { - "can_color": true, - "children": [ - { - "frame": "blockDesign02_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign02_01_001.png", - "glow_frame": "blockDesign02_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1866": { - "can_color": true, - "children": [ - { - "frame": "blockDesign02_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign02_02_001.png", - "glow_frame": "blockDesign02_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1867": { - "can_color": true, - "children": [ - { - "frame": "blockDesign02_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign02_03_001.png", - "glow_frame": "blockDesign02_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1868": { - "can_color": true, - "children": [ - { - "frame": "blockDesign02_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign02_04_001.png", - "glow_frame": "blockDesign02_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1869": { - "can_color": true, - "children": [ - { - "frame": "blockDesign03_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign03_01_001.png", - "glow_frame": "blockDesign03_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1870": { - "can_color": true, - "children": [ - { - "frame": "blockDesign03_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign03_02_001.png", - "glow_frame": "blockDesign03_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1871": { - "can_color": true, - "children": [ - { - "frame": "blockDesign03_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign03_03_001.png", - "glow_frame": "blockDesign03_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1872": { - "can_color": true, - "children": [ - { - "frame": "blockDesign03_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign03_04_001.png", - "glow_frame": "blockDesign03_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1873": { - "can_color": true, - "children": [ - { - "frame": "blockDesign04_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign04_01_001.png", - "glow_frame": "blockDesign04_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1874": { - "can_color": true, - "children": [ - { - "frame": "blockDesign05_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign05_01_001.png", - "glow_frame": "blockDesign05_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1875": { - "can_color": true, - "children": [ - { - "frame": "blockDesign05_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign05_02_001.png", - "glow_frame": "blockDesign05_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1876": { - "can_color": true, - "children": [ - { - "frame": "blockDesign05_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign05_03_001.png", - "glow_frame": "blockDesign05_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1877": { - "can_color": true, - "children": [ - { - "frame": "blockDesign05_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign05_04_001.png", - "glow_frame": "blockDesign05_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1878": { - "can_color": true, - "children": [ - { - "frame": "blockDesign06_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign06_01_001.png", - "glow_frame": "blockDesign06_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1879": { - "can_color": true, - "children": [ - { - "frame": "blockDesign06_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign06_02_001.png", - "glow_frame": "blockDesign06_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1880": { - "can_color": true, - "children": [ - { - "frame": "blockDesign06_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign06_03_001.png", - "glow_frame": "blockDesign06_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1881": { - "can_color": true, - "children": [ - { - "frame": "blockDesign06_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign06_04_001.png", - "glow_frame": "blockDesign06_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1882": { - "can_color": true, - "children": [ - { - "frame": "blockDesign07_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign07_01_001.png", - "glow_frame": "blockDesign07_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1883": { - "can_color": true, - "children": [ - { - "frame": "blockDesign07_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign07_02_001.png", - "glow_frame": "blockDesign07_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1884": { - "can_color": true, - "children": [ - { - "frame": "blockDesign07_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign07_03_001.png", - "glow_frame": "blockDesign07_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1885": { - "can_color": true, - "children": [ - { - "frame": "blockDesign07_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockDesign07_04_001.png", - "glow_frame": "blockDesign07_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -7, - "default_z_layer": 1, - "default_z_order": -7 - }, - "1886": { - "can_color": true, - "children": [ - { - "frame": "d_gradient_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_gradient_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_gradient_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_gradient_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "emptyFrame.png", - "glow_frame": "emptyFrame.png", - "gridH": 1.3333333730697632, - "gridW": 1.3333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1887": { - "can_color": true, - "children": [ - { - "frame": "d_gradient_b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_gradient_b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_gradient_b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_gradient_b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "emptyFrame.png", - "glow_frame": "emptyFrame.png", - "gridH": 0.6666666865348816, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1888": { - "can_color": true, - "children": [ - { - "frame": "d_gradient_c_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_gradient_c_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_gradient_c_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "d_gradient_c_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "emptyFrame.png", - "glow_frame": "emptyFrame.png", - "gridH": 2, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 9 - }, - "1889": { - "type": "deco", - "frame": "fakeSpike_01_001.png", - "gridW": 0, - "gridH": 0, - "black": true, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -4 - }, - "1890": { - "type": "deco", - "frame": "fakeSpike_02_001.png", - "gridW": 0, - "gridH": 0, - "black": true, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -4 - }, - "1891": { - "type": "deco", - "frame": "fakeSpike_03_001.png", - "gridW": 0, - "gridH": 0, - "black": true, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -4 - }, - "1892": { - "type": "deco", - "frame": "fakeSpike_04_001.png", - "gridW": 0, - "gridH": 0, - "black": true, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -4 - }, - "1893": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "square_b_01_001.png", - "glow_frame": "square_b_01_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1894": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "square_b_02_001.png", - "glow_frame": "square_b_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1895": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "square_b_03_001.png", - "glow_frame": "square_b_03_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.4833333194255829, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1896": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "square_b_04_001.png", - "glow_frame": "square_b_04_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1897": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "square_b_05_001.png", - "glow_frame": "square_b_05_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1898": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "square_b_06_001.png", - "glow_frame": "square_b_06_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1899": { - "can_color": true, - "children": [ - { - "frame": "triangle_b_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1900": { - "can_color": true, - "children": [ - { - "frame": "triangle_b_02_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1901": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "triangle_b_square_01_001.png", - "glow_frame": "triangle_b_square_01_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.36666667461395264, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1902": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "triangle_b_square_02_001.png", - "glow_frame": "triangle_b_square_02_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.9666666388511658, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "1903": { - "can_color": true, - "children": [ - { - "frame": "plank_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "colorPlank_01_001.png", - "glow_frame": "colorPlank_01_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1904": { - "can_color": true, - "children": [ - { - "frame": "plank_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank_01_02_001.png", - "glow_frame": "plank_01_02_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1905": { - "can_color": true, - "children": [ - { - "frame": "plank_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank_01_03_001.png", - "glow_frame": "plank_01_03_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1906": { - "can_color": true, - "children": [ - { - "frame": "emptyFrame.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "plank_01_slope_01_001.png", - "localDy": 0, - "tint": 65280, - "z": 10 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_14_001.png", - "glow_frame": "blockOutline_14_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1907": { - "can_color": true, - "children": [ - { - "frame": "emptyFrame.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "plank_01_slope_02_001.png", - "localDy": 0, - "tint": 65280, - "z": 10 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_15_001.png", - "glow_frame": "blockOutline_15_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1908": { - "can_color": true, - "children": [ - { - "frame": "plank_01_square_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank_01_square_01_001.png", - "glow_frame": "plank_01_square_01_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1909": { - "can_color": true, - "children": [ - { - "frame": "plank_01_square_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "plank_01_square_02_001.png", - "glow_frame": "plank_01_square_02_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.8999999761581421, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1910": { - "can_color": true, - "children": [ - { - "frame": "square_01_small_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "blockOutline_10_001.png", - "glow_frame": "blockOutline_10_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1911": { - "can_color": true, - "children": [ - { - "frame": "plank_01_small_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "colorPlank_01_small_001.png", - "glow_frame": "colorPlank_01_small_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet-uhd", - "type": "solid", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1912": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1913": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1914": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1915": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1916": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1917": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1919": { - "can_color": true, - "children": [ - { - "frame": "bush_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "bush_01_001.png", - "glow_frame": "bush_01_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1920": { - "can_color": true, - "children": [ - { - "frame": "bush_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "bush_02_001.png", - "glow_frame": "bush_02_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1921": { - "can_color": true, - "children": [ - { - "frame": "bush_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "bush_03_001.png", - "glow_frame": "bush_03_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 3, - "default_z_order": -5 - }, - "1922": { - "can_color": true, - "children": [ - { - "frame": "edge_01_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "edge_01_01_001.png", - "glow_frame": "edge_01_01_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1923": { - "can_color": true, - "children": [ - { - "frame": "edge_01_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "edge_01_02_001.png", - "glow_frame": "edge_01_02_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1924": { - "can_color": true, - "children": [ - { - "frame": "edge_01_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "edge_01_03_001.png", - "glow_frame": "edge_01_03_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1925": { - "can_color": true, - "children": [ - { - "frame": "edge_01_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "edge_01_04_001.png", - "glow_frame": "edge_01_04_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1926": { - "can_color": true, - "children": [ - { - "frame": "edge_01_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "edge_01_05_001.png", - "glow_frame": "edge_01_05_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1927": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "blockPiece_001_001.png", - "glow_frame": "blockPiece_001_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1928": { - "can_color": true, - "children": [ - { - "frame": "edge_01_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1012, - "frame": "edge_01_07_001.png", - "glow_frame": "edge_01_07_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "1931": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1932": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1933": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_18_front_001.png", - "glow_frame": "portal_18_front_glow_001.png", - "gridH": 2.8333332538604736, - "gridW": 1.1166666746139526, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "1934": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1935": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1936": { - "can_color": true, - "children": [ - { - "frame": "fire_b_01_2_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "fire_b_01_003.png", - "glow_frame": "fire_b_01_003.png", - "gridH": 0.9916666746139526, - "gridW": 0.800000011920929, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1937": { - "can_color": true, - "children": [ - { - "frame": "fire_b_02_2_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "fire_b_02_003.png", - "glow_frame": "fire_b_02_003.png", - "gridH": 1.0666667222976685, - "gridW": 1.0416666269302368, - "spriteW": 31.25, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1938": { - "can_color": true, - "children": [ - { - "frame": "fire_b_03_2_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "fire_b_03_002.png", - "glow_frame": "fire_b_03_002.png", - "gridH": 0.7749999761581421, - "gridW": 0.5333333611488342, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1939": { - "can_color": true, - "children": [ - { - "frame": "fire_b_04_2_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1011, - "default_detail_color_channel": 1, - "frame": "fire_b_04_006.png", - "glow_frame": "fire_b_04_006.png", - "gridH": 0.8500000238418579, - "gridW": 0.5666666626930237, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "1964": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "blockPiece_001_001.png", - "glow_frame": "blockPiece_001_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "2012": { - "can_color": true, - "default_base_color_channel": 1010, - "default_detail_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "hitbox_radius": 15, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2015": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2016": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2020": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_01_006.png", - "glow_frame": "gj22_anim_01_006.png", - "gridH": 0.21666666865348816, - "gridW": 1, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2021": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_02_006.png", - "glow_frame": "gj22_anim_02_006.png", - "gridH": 0.28333333134651184, - "gridW": 0.699999988079071, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2022": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_03_003.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_03_006.png", - "glow_frame": "gj22_anim_03_006.png", - "gridH": 0.15000000596046448, - "gridW": 2.1500000953674316, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2023": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_04_002.png", - "glow_frame": "gj22_anim_04_002.png", - "gridH": 0.5166666507720947, - "gridW": 1.75, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2024": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_05_002.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_05_004.png", - "glow_frame": "gj22_anim_05_004.png", - "gridH": 1.2999999523162842, - "gridW": 1.4166666269302368, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2025": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_06_008.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_06_012.png", - "glow_frame": "gj22_anim_06_012.png", - "gridH": 1.8333333730697632, - "gridW": 1.2999999523162842, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2026": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_07_003.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_07_006.png", - "glow_frame": "gj22_anim_07_006.png", - "gridH": 1.1333333253860474, - "gridW": 0.8166666626930237, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2027": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_08_005.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_08_004.png", - "glow_frame": "gj22_anim_08_004.png", - "gridH": 1.8333333730697632, - "gridW": 0.7166666388511658, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2028": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_09_003.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_09_003.png", - "glow_frame": "gj22_anim_09_003.png", - "gridH": 1.5833333730697632, - "gridW": 0.7166666388511658, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2029": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_10_005.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_10_008.png", - "glow_frame": "gj22_anim_10_008.png", - "gridH": 1.0499999523162842, - "gridW": 0.8500000238418579, - "spriteH": 31.5, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2030": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_11_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_11_007.png", - "glow_frame": "gj22_anim_11_007.png", - "gridH": 0.25, - "gridW": 1.4666666984558105, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2031": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_12_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_12_006.png", - "glow_frame": "gj22_anim_12_006.png", - "gridH": 0.75, - "gridW": 1.9333332777023315, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2032": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_13_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_13_006.png", - "glow_frame": "gj22_anim_13_006.png", - "gridH": 0.8166666626930237, - "gridW": 0.7666666507720947, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2033": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_14_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_14_002.png", - "glow_frame": "gj22_anim_14_002.png", - "gridH": 1, - "gridW": 0.8833333253860474, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2034": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_15_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_15_003.png", - "glow_frame": "gj22_anim_15_003.png", - "gridH": 0.5666666626930237, - "gridW": 0.4166666567325592, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2035": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_16_002.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_16_006.png", - "glow_frame": "gj22_anim_16_006.png", - "gridH": 0.30000001192092896, - "gridW": 1.1166666746139526, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2036": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_17_002.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_17_005.png", - "glow_frame": "gj22_anim_17_005.png", - "gridH": 0.5166666507720947, - "gridW": 1.2999999523162842, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2037": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_18_003.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_18_009.png", - "glow_frame": "gj22_anim_18_009.png", - "gridH": 0.7666666507720947, - "gridW": 0.8166666626930237, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2038": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_19_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_19_004.png", - "glow_frame": "gj22_anim_19_004.png", - "gridH": 0.75, - "gridW": 1.2166666984558105, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2039": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_20_002.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_20_008.png", - "glow_frame": "gj22_anim_20_008.png", - "gridH": 0.5666666626930237, - "gridW": 1.0333333015441895, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2040": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_21_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_21_006.png", - "glow_frame": "gj22_anim_21_006.png", - "gridH": 0.44999998807907104, - "gridW": 0.28333333134651184, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2041": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gj22_anim_22_006.png", - "glow_frame": "gj22_anim_22_006.png", - "gridH": 1.2000000476837158, - "gridW": 1.1333333253860474, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2042": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gj22_anim_23_004.png", - "glow_frame": "gj22_anim_23_004.png", - "gridH": 1.2666666507720947, - "gridW": 1.2333333492279053, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2043": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_24_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_24_009.png", - "glow_frame": "gj22_anim_24_009.png", - "gridH": 0.7333333492279053, - "gridW": 1.3333333730697632, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2044": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_25_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_25_002.png", - "glow_frame": "gj22_anim_25_002.png", - "gridH": 0.4333333373069763, - "gridW": 0.5166666507720947, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2045": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_26_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_26_012.png", - "glow_frame": "gj22_anim_26_012.png", - "gridH": 0.5666666626930237, - "gridW": 0.800000011920929, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2046": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_27_color_009.png", - "localDy": 0, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_27_004.png", - "glow_frame": "gj22_anim_27_004.png", - "gridH": 0.7666666507720947, - "gridW": 0.8166666626930237, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2047": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_28_color_001.png", - "localDy": 0, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_28_011.png", - "glow_frame": "gj22_anim_28_011.png", - "gridH": 0.9333333373069763, - "gridW": 0.9833333492279053, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2048": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_29_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_29_002.png", - "glow_frame": "gj22_anim_29_002.png", - "gridH": 0.5833333134651184, - "gridW": 1, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2049": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_30_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_30_003.png", - "glow_frame": "gj22_anim_30_003.png", - "gridH": 0.3166666626930237, - "gridW": 0.9333333373069763, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2050": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_31_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_31_004.png", - "glow_frame": "gj22_anim_31_004.png", - "gridH": 0.4833333194255829, - "gridW": 0.8999999761581421, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2051": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_32_color_009.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_32_009.png", - "glow_frame": "gj22_anim_32_009.png", - "gridH": 0.5, - "gridW": 0.550000011920929, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2052": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_33_color_007.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_33_007.png", - "glow_frame": "gj22_anim_33_007.png", - "gridH": 0.2666666805744171, - "gridW": 0.5166666507720947, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2053": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_34_color_007.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_34_007.png", - "glow_frame": "gj22_anim_34_007.png", - "gridH": 0.21666666865348816, - "gridW": 0.4166666567325592, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2054": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_35_color_008.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_35_008.png", - "glow_frame": "gj22_anim_35_008.png", - "gridH": 0.21666666865348816, - "gridW": 1.4833333492279053, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2055": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_36_002.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_36_007.png", - "glow_frame": "gj22_anim_36_007.png", - "gridH": 0.949999988079071, - "gridW": 1.1666666269302368, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2062": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2063": { - "can_color": true, - "children": [ - { - "frame": "checkpoint_d_01_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "checkpoint_d_01_001.png", - "localDy": 3.304872512817383, - "tint": 65280, - "z": -1 - }, - { - "frame": "checkpoint_d_02_001.png", - "localDy": 0.8172760009765625, - "tint": 65280, - "z": -1 - }, - { - "frame": "checkpoint_d_03_001.png", - "localDy": 1.9917716979980469, - "tint": 65280, - "z": -1 - }, - { - "frame": "checkpoint_01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": "checkpoint_d_01_001.png", - "glow_frame": "checkpoint_d_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 3, - "default_z_order": 2 - }, - "2064": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_16_front_001.png", - "glow_frame": "portal_16_front_glow_001.png", - "gridH": 3, - "gridW": 1.2833333015441895, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "2065": { - "can_color": true, - "children": [ - { - "frame": null, - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": null, - "localDy": 0, - "tint": 65280, - "z": 1 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 1.1833332777023315, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2066": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2067": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2068": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2069": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2070": { - "can_color": true, - "children": [ - { - "frame": "pixelb_03_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_03_01_001.png", - "glow_frame": "pixelb_03_01_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2071": { - "can_color": true, - "children": [ - { - "frame": "pixelb_03_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_03_02_001.png", - "glow_frame": "pixelb_03_02_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2072": { - "can_color": true, - "children": [ - { - "frame": "pixelb_03_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_03_03_001.png", - "glow_frame": "pixelb_03_03_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2073": { - "can_color": true, - "children": [ - { - "frame": "pixelb_03_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_03_04_001.png", - "glow_frame": "pixelb_03_04_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2074": { - "can_color": true, - "children": [ - { - "frame": "pixelb_03_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_03_05_001.png", - "glow_frame": "pixelb_03_05_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2075": { - "can_color": true, - "children": [ - { - "frame": "pixelb_03_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_03_06_001.png", - "glow_frame": "pixelb_03_06_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2076": { - "can_color": true, - "children": [ - { - "frame": "pixelb_03_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_03_07_001.png", - "glow_frame": "pixelb_03_07_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2077": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelb_03_08_001.png", - "glow_frame": "pixelb_03_08_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2078": { - "can_color": true, - "children": [ - { - "frame": "pixelb_02_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_02_01_001.png", - "glow_frame": "pixelb_02_01_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2079": { - "can_color": true, - "children": [ - { - "frame": "pixelb_02_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_02_02_001.png", - "glow_frame": "pixelb_02_02_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2080": { - "can_color": true, - "children": [ - { - "frame": "pixelb_02_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_02_03_001.png", - "glow_frame": "pixelb_02_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2081": { - "can_color": true, - "children": [ - { - "frame": "pixelb_02_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_02_04_001.png", - "glow_frame": "pixelb_02_04_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2082": { - "can_color": true, - "children": [ - { - "frame": "pixelb_02_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_02_05_001.png", - "glow_frame": "pixelb_02_05_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2083": { - "can_color": true, - "children": [ - { - "frame": "pixelb_01_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_01_01_001.png", - "glow_frame": "pixelb_01_01_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2084": { - "can_color": true, - "children": [ - { - "frame": "pixelb_01_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_01_02_001.png", - "glow_frame": "pixelb_01_02_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2085": { - "can_color": true, - "children": [ - { - "frame": "pixelb_01_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_01_03_001.png", - "glow_frame": "pixelb_01_03_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2086": { - "can_color": true, - "children": [ - { - "frame": "pixelb_01_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_01_04_001.png", - "glow_frame": "pixelb_01_04_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2087": { - "can_color": true, - "children": [ - { - "frame": "pixelb_01_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_01_05_001.png", - "glow_frame": "pixelb_01_05_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2088": { - "can_color": true, - "children": [ - { - "frame": "pixelb_01_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_01_06_001.png", - "glow_frame": "pixelb_01_06_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2089": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_611_001.png", - "glow_frame": "pixelart_611_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 8 - }, - "2090": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelb_03_09_001.png", - "glow_frame": "pixelb_03_09_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2091": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelb_03_10_001.png", - "glow_frame": "pixelb_03_10_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2092": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_661_001.png", - "glow_frame": "pixelart_661_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 8 - }, - "2093": { - "can_color": true, - "children": [ - { - "frame": "pixelb_02_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelb_02_06_001.png", - "glow_frame": "pixelb_02_06_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2094": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelb_02_07_001.png", - "glow_frame": "pixelb_02_07_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2095": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelb_02_08_001.png", - "glow_frame": "pixelb_02_08_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2096": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelb_02_09_001.png", - "glow_frame": "pixelb_02_09_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2097": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelb_02_10_001.png", - "glow_frame": "pixelb_02_10_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 8 - }, - "2098": { - "can_color": true, - "children": [ - { - "frame": "pixelart_001_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_001_001.png", - "glow_frame": "pixelart_001_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2099": { - "can_color": true, - "children": [ - { - "frame": "pixelart_002_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_002_001.png", - "glow_frame": "pixelart_002_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2100": { - "can_color": true, - "children": [ - { - "frame": "pixelart_003_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_003_001.png", - "glow_frame": "pixelart_003_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2101": { - "can_color": true, - "children": [ - { - "frame": "pixelart_004_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_004_001.png", - "glow_frame": "pixelart_004_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2102": { - "can_color": true, - "children": [ - { - "frame": "pixelart_005_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_005_001.png", - "glow_frame": "pixelart_005_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2103": { - "can_color": true, - "children": [ - { - "frame": "pixelart_006_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_006_001.png", - "glow_frame": "pixelart_006_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2104": { - "can_color": true, - "children": [ - { - "frame": "pixelart_007_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_007_001.png", - "glow_frame": "pixelart_007_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2105": { - "can_color": true, - "children": [ - { - "frame": "pixelart_008_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_008_001.png", - "glow_frame": "pixelart_008_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2106": { - "can_color": true, - "children": [ - { - "frame": "pixelart_009_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_009_001.png", - "glow_frame": "pixelart_009_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2107": { - "can_color": true, - "children": [ - { - "frame": "pixelart_010_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_010_001.png", - "glow_frame": "pixelart_010_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2108": { - "can_color": true, - "children": [ - { - "frame": "pixelart_011_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_011_001.png", - "glow_frame": "pixelart_011_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2109": { - "can_color": true, - "children": [ - { - "frame": "pixelart_012_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_012_001.png", - "glow_frame": "pixelart_012_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2110": { - "can_color": true, - "children": [ - { - "frame": "pixelart_013_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_013_001.png", - "glow_frame": "pixelart_013_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2111": { - "can_color": true, - "children": [ - { - "frame": "pixelart_014_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_014_001.png", - "glow_frame": "pixelart_014_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2112": { - "can_color": true, - "children": [ - { - "frame": "pixelart_015_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_015_001.png", - "glow_frame": "pixelart_015_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2113": { - "can_color": true, - "children": [ - { - "frame": "pixelart_016_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_016_001.png", - "glow_frame": "pixelart_016_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2114": { - "can_color": true, - "children": [ - { - "frame": "pixelart_017_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_017_001.png", - "glow_frame": "pixelart_017_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2115": { - "can_color": true, - "children": [ - { - "frame": "pixelart_018_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_018_001.png", - "glow_frame": "pixelart_018_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2116": { - "can_color": true, - "children": [ - { - "frame": "pixelart_019_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_019_001.png", - "glow_frame": "pixelart_019_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2117": { - "can_color": true, - "children": [ - { - "frame": "pixelart_020_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_020_001.png", - "glow_frame": "pixelart_020_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2118": { - "can_color": true, - "children": [ - { - "frame": "pixelart_021_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_021_001.png", - "glow_frame": "pixelart_021_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2119": { - "can_color": true, - "children": [ - { - "frame": "pixelart_022_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_022_001.png", - "glow_frame": "pixelart_022_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2120": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelb_02_11_001.png", - "glow_frame": "pixelb_02_11_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2121": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelb_02_12_001.png", - "glow_frame": "pixelb_02_12_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2122": { - "can_color": true, - "children": [ - { - "frame": "pixelart_023_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_023_001.png", - "glow_frame": "pixelart_023_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2123": { - "can_color": true, - "children": [ - { - "frame": "pixelart_024_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_024_001.png", - "glow_frame": "pixelart_024_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2124": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_025_001.png", - "glow_frame": "pixelart_025_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2125": { - "can_color": true, - "children": [ - { - "frame": "pixelart_024b_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_024b_001.png", - "glow_frame": "pixelart_024b_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2126": { - "can_color": true, - "children": [ - { - "frame": "pixelart_026_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_026_001.png", - "glow_frame": "pixelart_026_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2127": { - "can_color": true, - "children": [ - { - "frame": "pixelart_027_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_027_001.png", - "glow_frame": "pixelart_027_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2128": { - "can_color": true, - "children": [ - { - "frame": "pixelart_028_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_028_001.png", - "glow_frame": "pixelart_028_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2129": { - "can_color": true, - "children": [ - { - "frame": "pixelart_029_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_029_001.png", - "glow_frame": "pixelart_029_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2130": { - "can_color": true, - "children": [ - { - "frame": "pixelart_030_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_030_001.png", - "glow_frame": "pixelart_030_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2131": { - "can_color": true, - "children": [ - { - "frame": "pixelart_031_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_031_001.png", - "glow_frame": "pixelart_031_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2132": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_032_001.png", - "glow_frame": "pixelart_032_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2133": { - "can_color": true, - "children": [ - { - "frame": "pixelart_033_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_033_001.png", - "glow_frame": "pixelart_033_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2134": { - "can_color": true, - "children": [ - { - "frame": "pixelart_034_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_034_001.png", - "glow_frame": "pixelart_034_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2135": { - "can_color": true, - "children": [ - { - "frame": "pixelart_035_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_035_001.png", - "glow_frame": "pixelart_035_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2136": { - "can_color": true, - "children": [ - { - "frame": "pixelart_036_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_036_001.png", - "glow_frame": "pixelart_036_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2137": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_037_001.png", - "glow_frame": "pixelart_037_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2138": { - "can_color": true, - "children": [ - { - "frame": "pixelart_038_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_038_001.png", - "glow_frame": "pixelart_038_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2139": { - "can_color": true, - "children": [ - { - "frame": "pixelart_039_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_039_001.png", - "glow_frame": "pixelart_039_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2140": { - "can_color": true, - "children": [ - { - "frame": "pixelart_040_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_040_001.png", - "glow_frame": "pixelart_040_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2141": { - "can_color": true, - "children": [ - { - "frame": "pixelart_041_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_041_001.png", - "glow_frame": "pixelart_041_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2142": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_042_001.png", - "glow_frame": "pixelart_042_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2143": { - "can_color": true, - "children": [ - { - "frame": "pixelart_043_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_043_001.png", - "glow_frame": "pixelart_043_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2144": { - "can_color": true, - "children": [ - { - "frame": "pixelart_044_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_044_001.png", - "glow_frame": "pixelart_044_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2145": { - "can_color": true, - "children": [ - { - "frame": "pixelart_045_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_045_001.png", - "glow_frame": "pixelart_045_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2146": { - "can_color": true, - "children": [ - { - "frame": "pixelart_046_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_046_001.png", - "glow_frame": "pixelart_046_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2147": { - "can_color": true, - "children": [ - { - "frame": "pixelart_047_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_047_001.png", - "glow_frame": "pixelart_047_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2148": { - "can_color": true, - "children": [ - { - "frame": "pixelart_048_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_048_001.png", - "glow_frame": "pixelart_048_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2149": { - "can_color": true, - "children": [ - { - "frame": "pixelart_049_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_049_001.png", - "glow_frame": "pixelart_049_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2150": { - "can_color": true, - "children": [ - { - "frame": "pixelart_050_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_050_001.png", - "glow_frame": "pixelart_050_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2151": { - "can_color": true, - "children": [ - { - "frame": "pixelart_051_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_051_001.png", - "glow_frame": "pixelart_051_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2152": { - "can_color": true, - "children": [ - { - "frame": "pixelart_052_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_052_001.png", - "glow_frame": "pixelart_052_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2153": { - "can_color": true, - "children": [ - { - "frame": "pixelart_053_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_053_001.png", - "glow_frame": "pixelart_053_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2154": { - "can_color": true, - "children": [ - { - "frame": "pixelart_054_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_054_001.png", - "glow_frame": "pixelart_054_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2155": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_055_001.png", - "glow_frame": "pixelart_055_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2156": { - "can_color": true, - "children": [ - { - "frame": "pixelart_056_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_056_001.png", - "glow_frame": "pixelart_056_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2157": { - "can_color": true, - "children": [ - { - "frame": "pixelart_057_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_057_001.png", - "glow_frame": "pixelart_057_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2158": { - "can_color": true, - "children": [ - { - "frame": "pixelart_058_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_058_001.png", - "glow_frame": "pixelart_058_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2159": { - "can_color": true, - "children": [ - { - "frame": "pixelart_059_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_059_001.png", - "glow_frame": "pixelart_059_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2160": { - "can_color": true, - "children": [ - { - "frame": "pixelart_060_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_060_001.png", - "glow_frame": "pixelart_060_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2161": { - "can_color": true, - "children": [ - { - "frame": "pixelart_061_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_061_001.png", - "glow_frame": "pixelart_061_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2162": { - "can_color": true, - "children": [ - { - "frame": "pixelart_062_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_062_001.png", - "glow_frame": "pixelart_062_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2163": { - "can_color": true, - "children": [ - { - "frame": "pixelart_063_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_063_001.png", - "glow_frame": "pixelart_063_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2164": { - "can_color": true, - "children": [ - { - "frame": "pixelart_064_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_064_001.png", - "glow_frame": "pixelart_064_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2165": { - "can_color": true, - "children": [ - { - "frame": "pixelart_065_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_065_001.png", - "glow_frame": "pixelart_065_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2166": { - "can_color": true, - "children": [ - { - "frame": "pixelart_066_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_066_001.png", - "glow_frame": "pixelart_066_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2167": { - "can_color": true, - "children": [ - { - "frame": "pixelart_067_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_067_001.png", - "glow_frame": "pixelart_067_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2168": { - "can_color": true, - "children": [ - { - "frame": "pixelart_068_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_068_001.png", - "glow_frame": "pixelart_068_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2169": { - "can_color": true, - "children": [ - { - "frame": "pixelart_069_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_069_001.png", - "glow_frame": "pixelart_069_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2170": { - "can_color": true, - "children": [ - { - "frame": "pixelart_070_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_070_001.png", - "glow_frame": "pixelart_070_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2171": { - "can_color": true, - "children": [ - { - "frame": "pixelart_071_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_071_001.png", - "glow_frame": "pixelart_071_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2172": { - "can_color": true, - "children": [ - { - "frame": "pixelart_072_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_072_001.png", - "glow_frame": "pixelart_072_glow_001.png", - "gridH": 0.5, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2173": { - "can_color": true, - "children": [ - { - "frame": "pixelart_073_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_073_001.png", - "glow_frame": "pixelart_073_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2174": { - "can_color": true, - "children": [ - { - "frame": "pixelart_074_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_074_001.png", - "glow_frame": "pixelart_074_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2175": { - "can_color": true, - "children": [ - { - "frame": "pixelart_075_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_075_001.png", - "glow_frame": "pixelart_075_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2176": { - "can_color": true, - "children": [ - { - "frame": "pixelart_076_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_076_001.png", - "glow_frame": "pixelart_076_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2177": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_077_001.png", - "glow_frame": "pixelart_077_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2178": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_078_001.png", - "glow_frame": "pixelart_078_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2179": { - "can_color": true, - "children": [ - { - "frame": "pixelart_079_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_079_001.png", - "glow_frame": "pixelart_079_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2180": { - "can_color": true, - "children": [ - { - "frame": "pixelart_080_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_080_001.png", - "glow_frame": "pixelart_080_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2181": { - "can_color": true, - "children": [ - { - "frame": "pixelart_081_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_081_001.png", - "glow_frame": "pixelart_081_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2182": { - "can_color": true, - "children": [ - { - "frame": "pixelart_082_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_082_001.png", - "glow_frame": "pixelart_082_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2183": { - "can_color": true, - "children": [ - { - "frame": "pixelart_083_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_083_001.png", - "glow_frame": "pixelart_083_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2184": { - "can_color": true, - "children": [ - { - "frame": "pixelart_084_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_084_001.png", - "glow_frame": "pixelart_084_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2185": { - "can_color": true, - "children": [ - { - "frame": "pixelart_085_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_085_001.png", - "glow_frame": "pixelart_085_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2186": { - "can_color": true, - "children": [ - { - "frame": "pixelart_086_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_086_001.png", - "glow_frame": "pixelart_086_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2187": { - "can_color": true, - "children": [ - { - "frame": "pixelart_087_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_087_001.png", - "glow_frame": "pixelart_087_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2188": { - "can_color": true, - "children": [ - { - "frame": "pixelart_088_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_088_001.png", - "glow_frame": "pixelart_088_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2189": { - "can_color": true, - "children": [ - { - "frame": "pixelart_089_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_089_001.png", - "glow_frame": "pixelart_089_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2190": { - "can_color": true, - "children": [ - { - "frame": "pixelart_090_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_090_001.png", - "glow_frame": "pixelart_090_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2191": { - "can_color": true, - "children": [ - { - "frame": "pixelart_091_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_091_001.png", - "glow_frame": "pixelart_091_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2192": { - "can_color": true, - "children": [ - { - "frame": "pixelart_092_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_092_001.png", - "glow_frame": "pixelart_092_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2193": { - "can_color": true, - "children": [ - { - "frame": "pixelart_093_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_093_001.png", - "glow_frame": "pixelart_093_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2194": { - "can_color": true, - "children": [ - { - "frame": "pixelart_094_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_094_001.png", - "glow_frame": "pixelart_094_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2195": { - "can_color": true, - "children": [ - { - "frame": "pixelart_095_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_095_001.png", - "glow_frame": "pixelart_095_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2196": { - "can_color": true, - "children": [ - { - "frame": "pixelart_096_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_096_001.png", - "glow_frame": "pixelart_096_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2197": { - "can_color": true, - "children": [ - { - "frame": "pixelart_097_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_097_001.png", - "glow_frame": "pixelart_097_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2198": { - "can_color": true, - "children": [ - { - "frame": "pixelart_098_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_098_001.png", - "glow_frame": "pixelart_098_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2199": { - "can_color": true, - "children": [ - { - "frame": "pixelart_099_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_099_001.png", - "glow_frame": "pixelart_099_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2200": { - "can_color": true, - "children": [ - { - "frame": "pixelart_100_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_100_001.png", - "glow_frame": "pixelart_100_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2201": { - "can_color": true, - "children": [ - { - "frame": "pixelart_101_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_101_001.png", - "glow_frame": "pixelart_101_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2202": { - "can_color": true, - "children": [ - { - "frame": "pixelart_102_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_102_001.png", - "glow_frame": "pixelart_102_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2203": { - "can_color": true, - "children": [ - { - "frame": "pixelart_103_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_103_001.png", - "glow_frame": "pixelart_103_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.800000011920929, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2204": { - "can_color": true, - "children": [ - { - "frame": "pixelart_104_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_104_001.png", - "glow_frame": "pixelart_104_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2205": { - "can_color": true, - "children": [ - { - "frame": "pixelart_105_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_105_001.png", - "glow_frame": "pixelart_105_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2206": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_106_001.png", - "glow_frame": "pixelart_106_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2207": { - "can_color": true, - "children": [ - { - "frame": "pixelart_107_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_107_001.png", - "glow_frame": "pixelart_107_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2208": { - "can_color": true, - "children": [ - { - "frame": "pixelart_108_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_108_001.png", - "glow_frame": "pixelart_108_glow_001.png", - "gridH": 0.6333333253860474, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2209": { - "can_color": true, - "children": [ - { - "frame": "pixelart_109_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_109_001.png", - "glow_frame": "pixelart_109_glow_001.png", - "gridH": 0.5, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2210": { - "can_color": true, - "children": [ - { - "frame": "pixelart_110_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_110_001.png", - "glow_frame": "pixelart_110_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2211": { - "can_color": true, - "children": [ - { - "frame": "pixelart_111_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_111_001.png", - "glow_frame": "pixelart_111_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2212": { - "can_color": true, - "children": [ - { - "frame": "pixelart_112_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_112_001.png", - "glow_frame": "pixelart_112_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2213": { - "can_color": true, - "children": [ - { - "frame": "pixelart_113_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_113_001.png", - "glow_frame": "pixelart_113_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2214": { - "can_color": true, - "children": [ - { - "frame": "pixelart_114_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_114_001.png", - "glow_frame": "pixelart_114_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2215": { - "can_color": true, - "children": [ - { - "frame": "pixelart_115_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_115_001.png", - "glow_frame": "pixelart_115_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2216": { - "can_color": true, - "children": [ - { - "frame": "pixelart_116_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_116_001.png", - "glow_frame": "pixelart_116_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2217": { - "can_color": true, - "children": [ - { - "frame": "pixelart_117_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_117_001.png", - "glow_frame": "pixelart_117_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2218": { - "can_color": true, - "children": [ - { - "frame": "pixelart_118_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_118_001.png", - "glow_frame": "pixelart_118_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2219": { - "can_color": true, - "children": [ - { - "frame": "pixelart_119_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_119_001.png", - "glow_frame": "pixelart_119_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2220": { - "can_color": true, - "children": [ - { - "frame": "pixelart_120_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_120_001.png", - "glow_frame": "pixelart_120_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2221": { - "can_color": true, - "children": [ - { - "frame": "pixelart_121_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_121_001.png", - "glow_frame": "pixelart_121_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2222": { - "can_color": true, - "children": [ - { - "frame": "pixelart_122_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_122_001.png", - "glow_frame": "pixelart_122_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2223": { - "can_color": true, - "children": [ - { - "frame": "pixelart_123_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_123_002.png", - "glow_frame": "pixelart_123_002.png", - "gridH": 0.20000000298023224, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2224": { - "can_color": true, - "children": [ - { - "frame": "pixelart_124_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_124_001.png", - "glow_frame": "pixelart_124_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2225": { - "can_color": true, - "children": [ - { - "frame": "pixelart_125_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_125_001.png", - "glow_frame": "pixelart_125_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2226": { - "can_color": true, - "children": [ - { - "frame": "pixelart_126_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_126_001.png", - "glow_frame": "pixelart_126_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2227": { - "can_color": true, - "children": [ - { - "frame": "pixelart_127_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_127_001.png", - "glow_frame": "pixelart_127_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2228": { - "can_color": true, - "children": [ - { - "frame": "pixelart_128_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_128_001.png", - "glow_frame": "pixelart_128_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2229": { - "can_color": true, - "children": [ - { - "frame": "pixelart_129_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_129_001.png", - "glow_frame": "pixelart_129_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2230": { - "can_color": true, - "children": [ - { - "frame": "pixelart_130_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_130_001.png", - "glow_frame": "pixelart_130_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_z_layer": 3, - "default_z_order": 11 - }, - "2231": { - "can_color": true, - "children": [ - { - "frame": "pixelart_131_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_131_001.png", - "glow_frame": "pixelart_131_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_z_layer": 3, - "default_z_order": 11 - }, - "2232": { - "can_color": true, - "children": [ - { - "frame": "pixelart_132_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_132_001.png", - "glow_frame": "pixelart_132_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_z_layer": 3, - "default_z_order": 11 - }, - "2233": { - "can_color": true, - "children": [ - { - "frame": "pixelart_133_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_133_001.png", - "glow_frame": "pixelart_133_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_z_layer": 3, - "default_z_order": 11 - }, - "2234": { - "can_color": true, - "children": [ - { - "frame": "pixelart_134_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_134_001.png", - "glow_frame": "pixelart_134_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_z_layer": 3, - "default_z_order": 11 - }, - "2235": { - "can_color": true, - "children": [ - { - "frame": "pixelart_135_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_135_001.png", - "glow_frame": "pixelart_135_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_z_layer": 3, - "default_z_order": 11 - }, - "2236": { - "can_color": true, - "children": [ - { - "frame": "pixelart_136_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_136_001.png", - "glow_frame": "pixelart_136_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_z_layer": 3, - "default_z_order": 11 - }, - "2237": { - "can_color": true, - "children": [ - { - "frame": "pixelart_137_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_137_001.png", - "glow_frame": "pixelart_137_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2238": { - "can_color": true, - "children": [ - { - "frame": "pixelart_138_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_138_001.png", - "glow_frame": "pixelart_138_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1.0666667222976685, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2239": { - "can_color": true, - "children": [ - { - "frame": "pixelart_139_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_139_001.png", - "glow_frame": "pixelart_139_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2240": { - "can_color": true, - "children": [ - { - "frame": "pixelart_140_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_140_001.png", - "glow_frame": "pixelart_140_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2241": { - "can_color": true, - "children": [ - { - "frame": "pixelart_141_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_141_001.png", - "glow_frame": "pixelart_141_glow_001.png", - "gridH": 0.5, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2242": { - "can_color": true, - "children": [ - { - "frame": "pixelart_142_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_142_001.png", - "glow_frame": "pixelart_142_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2243": { - "can_color": true, - "children": [ - { - "frame": "pixelart_143_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_143_001.png", - "glow_frame": "pixelart_143_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2244": { - "can_color": true, - "children": [ - { - "frame": "pixelart_144_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_144_001.png", - "glow_frame": "pixelart_144_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.9666666388511658, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2245": { - "can_color": true, - "children": [ - { - "frame": "pixelart_145_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_145_001.png", - "glow_frame": "pixelart_145_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2246": { - "can_color": true, - "children": [ - { - "frame": "pixelart_146_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_146_002.png", - "glow_frame": "pixelart_146_002.png", - "gridH": 0.36666667461395264, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2247": { - "can_color": true, - "children": [ - { - "frame": "pixelart_147_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_147_001.png", - "glow_frame": "pixelart_147_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2248": { - "can_color": true, - "children": [ - { - "frame": "pixelart_148_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_148_001.png", - "glow_frame": "pixelart_148_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2249": { - "can_color": true, - "children": [ - { - "frame": "pixelart_149_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_149_001.png", - "glow_frame": "pixelart_149_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2250": { - "can_color": true, - "children": [ - { - "frame": "pixelart_150_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_150_001.png", - "glow_frame": "pixelart_150_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.9333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2251": { - "can_color": true, - "children": [ - { - "frame": "pixelart_151_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_151_001.png", - "glow_frame": "pixelart_151_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2252": { - "can_color": true, - "children": [ - { - "frame": "pixelart_152_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_152_001.png", - "glow_frame": "pixelart_152_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2253": { - "can_color": true, - "children": [ - { - "frame": "pixelart_153_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_153_001.png", - "glow_frame": "pixelart_153_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2254": { - "can_color": true, - "children": [ - { - "frame": "pixelart_154_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_154_001.png", - "glow_frame": "pixelart_154_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2255": { - "can_color": true, - "children": [ - { - "frame": "pixelart_155_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_155_001.png", - "glow_frame": "pixelart_155_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2256": { - "can_color": true, - "children": [ - { - "frame": "pixelart_156_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_156_001.png", - "glow_frame": "pixelart_156_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2257": { - "can_color": true, - "children": [ - { - "frame": "pixelart_157_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_157_001.png", - "glow_frame": "pixelart_157_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2258": { - "can_color": true, - "children": [ - { - "frame": "pixelart_158_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_158_001.png", - "glow_frame": "pixelart_158_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2259": { - "can_color": true, - "children": [ - { - "frame": "pixelart_159_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_159_001.png", - "glow_frame": "pixelart_159_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2260": { - "can_color": true, - "children": [ - { - "frame": "pixelart_160_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_160_001.png", - "glow_frame": "pixelart_160_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2261": { - "can_color": true, - "children": [ - { - "frame": "pixelart_161_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_161_001.png", - "glow_frame": "pixelart_161_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2262": { - "can_color": true, - "children": [ - { - "frame": "pixelart_162_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_162_001.png", - "glow_frame": "pixelart_162_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2263": { - "can_color": true, - "children": [ - { - "frame": "pixelart_163_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_163_001.png", - "glow_frame": "pixelart_163_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2264": { - "can_color": true, - "children": [ - { - "frame": "pixelart_164_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_164_001.png", - "glow_frame": "pixelart_164_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2265": { - "can_color": true, - "children": [ - { - "frame": "pixelart_165_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_165_001.png", - "glow_frame": "pixelart_165_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2266": { - "can_color": true, - "children": [ - { - "frame": "pixelart_166_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_166_001.png", - "glow_frame": "pixelart_166_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2267": { - "can_color": true, - "children": [ - { - "frame": "pixelart_167_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_167_001.png", - "glow_frame": "pixelart_167_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2268": { - "can_color": true, - "children": [ - { - "frame": "pixelart_168_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_168_001.png", - "glow_frame": "pixelart_168_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2269": { - "can_color": true, - "children": [ - { - "frame": "pixelart_169_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_169_001.png", - "glow_frame": "pixelart_169_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2270": { - "can_color": true, - "children": [ - { - "frame": "pixelart_170_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_170_001.png", - "glow_frame": "pixelart_170_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2271": { - "can_color": true, - "children": [ - { - "frame": "pixelart_171_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_171_001.png", - "glow_frame": "pixelart_171_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2272": { - "can_color": true, - "children": [ - { - "frame": "pixelart_172_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_172_001.png", - "glow_frame": "pixelart_172_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2273": { - "can_color": true, - "children": [ - { - "frame": "pixelart_173_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_173_001.png", - "glow_frame": "pixelart_173_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2274": { - "can_color": true, - "children": [ - { - "frame": "pixelart_174_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_174_001.png", - "glow_frame": "pixelart_174_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2275": { - "can_color": true, - "children": [ - { - "frame": "pixelart_175_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_175_001.png", - "glow_frame": "pixelart_175_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2276": { - "can_color": true, - "children": [ - { - "frame": "pixelart_176_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_176_001.png", - "glow_frame": "pixelart_176_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2277": { - "can_color": true, - "children": [ - { - "frame": "pixelart_177_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_177_001.png", - "glow_frame": "pixelart_177_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2278": { - "can_color": true, - "children": [ - { - "frame": "pixelart_178_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_178_001.png", - "glow_frame": "pixelart_178_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2279": { - "can_color": true, - "children": [ - { - "frame": "pixelart_179_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_179_001.png", - "glow_frame": "pixelart_179_glow_001.png", - "gridH": 0.9666666388511658, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2280": { - "can_color": true, - "children": [ - { - "frame": "pixelart_180_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_180_001.png", - "glow_frame": "pixelart_180_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_z_layer": 3, - "default_z_order": 11 - }, - "2281": { - "can_color": true, - "children": [ - { - "frame": "pixelart_181_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_181_001.png", - "glow_frame": "pixelart_181_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2282": { - "can_color": true, - "children": [ - { - "frame": "pixelart_182_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_182_001.png", - "glow_frame": "pixelart_182_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2283": { - "can_color": true, - "children": [ - { - "frame": "pixelart_183_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_183_001.png", - "glow_frame": "pixelart_183_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2284": { - "can_color": true, - "children": [ - { - "frame": "pixelart_184_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_184_001.png", - "glow_frame": "pixelart_184_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2285": { - "can_color": true, - "children": [ - { - "frame": "pixelart_185_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_185_001.png", - "glow_frame": "pixelart_185_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2286": { - "can_color": true, - "children": [ - { - "frame": "pixelart_186_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_186_001.png", - "glow_frame": "pixelart_186_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2287": { - "can_color": true, - "children": [ - { - "frame": "pixelart_187_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_187_001.png", - "glow_frame": "pixelart_187_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2288": { - "can_color": true, - "children": [ - { - "frame": "pixelart_188_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_188_001.png", - "glow_frame": "pixelart_188_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2289": { - "can_color": true, - "children": [ - { - "frame": "pixelart_189_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_189_001.png", - "glow_frame": "pixelart_189_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2290": { - "can_color": true, - "children": [ - { - "frame": "pixelart_190_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_190_001.png", - "glow_frame": "pixelart_190_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2291": { - "can_color": true, - "children": [ - { - "frame": "pixelart_183_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_191_001.png", - "glow_frame": "pixelart_191_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2292": { - "can_color": true, - "children": [ - { - "frame": "pixelart_192_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_192_001.png", - "glow_frame": "pixelart_192_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2293": { - "can_color": true, - "children": [ - { - "frame": "pixelart_193_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_193_001.png", - "glow_frame": "pixelart_193_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2294": { - "can_color": true, - "children": [ - { - "frame": "pixelart_194_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_194_001.png", - "glow_frame": "pixelart_194_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2295": { - "can_color": true, - "children": [ - { - "frame": "pixelart_195_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_195_001.png", - "glow_frame": "pixelart_195_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2296": { - "can_color": true, - "children": [ - { - "frame": "pixelart_196_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_196_001.png", - "glow_frame": "pixelart_196_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2297": { - "can_color": true, - "children": [ - { - "frame": "pixelart_197_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_197_001.png", - "glow_frame": "pixelart_197_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2298": { - "can_color": true, - "children": [ - { - "frame": "pixelart_198_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_198_001.png", - "glow_frame": "pixelart_198_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2299": { - "can_color": true, - "children": [ - { - "frame": "pixelart_199_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_199_001.png", - "glow_frame": "pixelart_199_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2300": { - "can_color": true, - "children": [ - { - "frame": "pixelart_200_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_200_001.png", - "glow_frame": "pixelart_200_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2301": { - "can_color": true, - "children": [ - { - "frame": "pixelart_201_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_201_001.png", - "glow_frame": "pixelart_201_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2302": { - "can_color": true, - "children": [ - { - "frame": "pixelart_202_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_202_001.png", - "glow_frame": "pixelart_202_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2303": { - "can_color": true, - "children": [ - { - "frame": "pixelart_203_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_203_001.png", - "glow_frame": "pixelart_203_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2304": { - "can_color": true, - "children": [ - { - "frame": "pixelart_204_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_204_001.png", - "glow_frame": "pixelart_204_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2305": { - "can_color": true, - "children": [ - { - "frame": "pixelart_205_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_205_001.png", - "glow_frame": "pixelart_205_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2306": { - "can_color": true, - "children": [ - { - "frame": "pixelart_206_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_206_001.png", - "glow_frame": "pixelart_206_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2307": { - "can_color": true, - "children": [ - { - "frame": "pixelart_207_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_207_001.png", - "glow_frame": "pixelart_207_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2308": { - "can_color": true, - "children": [ - { - "frame": "pixelart_208_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_208_001.png", - "glow_frame": "pixelart_208_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2309": { - "can_color": true, - "children": [ - { - "frame": "pixelart_209_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_209_001.png", - "glow_frame": "pixelart_209_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2310": { - "can_color": true, - "children": [ - { - "frame": "pixelart_210_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_210_001.png", - "glow_frame": "pixelart_210_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2311": { - "can_color": true, - "children": [ - { - "frame": "pixelart_211_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_211_001.png", - "glow_frame": "pixelart_211_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2312": { - "can_color": true, - "children": [ - { - "frame": "pixelart_212_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_212_001.png", - "glow_frame": "pixelart_212_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2313": { - "can_color": true, - "children": [ - { - "frame": "pixelart_213_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_213_001.png", - "glow_frame": "pixelart_213_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2314": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_214_001.png", - "glow_frame": "pixelart_214_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2315": { - "can_color": true, - "children": [ - { - "frame": "pixelart_215_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_215_001.png", - "glow_frame": "pixelart_215_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2316": { - "can_color": true, - "children": [ - { - "frame": "pixelart_216_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_216_001.png", - "glow_frame": "pixelart_216_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2317": { - "can_color": true, - "children": [ - { - "frame": "pixelart_217_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_217_001.png", - "glow_frame": "pixelart_217_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2318": { - "can_color": true, - "children": [ - { - "frame": "pixelart_218_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_218_001.png", - "glow_frame": "pixelart_218_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2319": { - "can_color": true, - "children": [ - { - "frame": "pixelart_219_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_219_001.png", - "glow_frame": "pixelart_219_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2320": { - "can_color": true, - "children": [ - { - "frame": "pixelart_220_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_220_001.png", - "glow_frame": "pixelart_220_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2321": { - "can_color": true, - "children": [ - { - "frame": "pixelart_221_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_221_001.png", - "glow_frame": "pixelart_221_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2322": { - "can_color": true, - "children": [ - { - "frame": "pixelart_222_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_222_001.png", - "glow_frame": "pixelart_222_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2323": { - "can_color": true, - "children": [ - { - "frame": "pixelart_223_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_223_001.png", - "glow_frame": "pixelart_223_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2324": { - "can_color": true, - "children": [ - { - "frame": "pixelart_224_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_224_001.png", - "glow_frame": "pixelart_224_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2325": { - "can_color": true, - "children": [ - { - "frame": "pixelart_225_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_225_001.png", - "glow_frame": "pixelart_225_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2326": { - "can_color": true, - "children": [ - { - "frame": "pixelart_226_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_226_001.png", - "glow_frame": "pixelart_226_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2327": { - "can_color": true, - "children": [ - { - "frame": "pixelart_227_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_227_001.png", - "glow_frame": "pixelart_227_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2328": { - "can_color": true, - "children": [ - { - "frame": "pixelart_228_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_228_001.png", - "glow_frame": "pixelart_228_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2329": { - "can_color": true, - "children": [ - { - "frame": "pixelart_229_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_229_001.png", - "glow_frame": "pixelart_229_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2330": { - "can_color": true, - "children": [ - { - "frame": "pixelart_230_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_230_001.png", - "glow_frame": "pixelart_230_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2331": { - "can_color": true, - "children": [ - { - "frame": "pixelart_231_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_231_001.png", - "glow_frame": "pixelart_231_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2332": { - "can_color": true, - "children": [ - { - "frame": "pixelart_232_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_232_001.png", - "glow_frame": "pixelart_232_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2333": { - "can_color": true, - "children": [ - { - "frame": "pixelart_233_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_233_001.png", - "glow_frame": "pixelart_233_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2334": { - "can_color": true, - "children": [ - { - "frame": "pixelart_234_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_234_001.png", - "glow_frame": "pixelart_234_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2335": { - "can_color": true, - "children": [ - { - "frame": "pixelart_235_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_235_001.png", - "glow_frame": "pixelart_235_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2336": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_236_001.png", - "glow_frame": "pixelart_236_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2337": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_237_001.png", - "glow_frame": "pixelart_237_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2338": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_238_001.png", - "glow_frame": "pixelart_238_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2339": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_239_001.png", - "glow_frame": "pixelart_239_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2340": { - "can_color": true, - "children": [ - { - "frame": "pixelart_240_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_240_001.png", - "glow_frame": "pixelart_240_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2341": { - "can_color": true, - "children": [ - { - "frame": "pixelart_241_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_241_001.png", - "glow_frame": "pixelart_241_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2342": { - "can_color": true, - "children": [ - { - "frame": "pixelart_242_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_242_001.png", - "glow_frame": "pixelart_242_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2343": { - "can_color": true, - "children": [ - { - "frame": "pixelart_243_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_243_001.png", - "glow_frame": "pixelart_243_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2344": { - "can_color": true, - "children": [ - { - "frame": "pixelart_244_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_244_001.png", - "glow_frame": "pixelart_244_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2345": { - "can_color": true, - "children": [ - { - "frame": "pixelart_245_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_245_001.png", - "glow_frame": "pixelart_245_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2346": { - "can_color": true, - "children": [ - { - "frame": "pixelart_246_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_246_001.png", - "glow_frame": "pixelart_246_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2347": { - "can_color": true, - "children": [ - { - "frame": "pixelart_247_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_247_001.png", - "glow_frame": "pixelart_247_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2348": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_248_001.png", - "glow_frame": "pixelart_248_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2349": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_249_001.png", - "glow_frame": "pixelart_249_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2350": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_250_001.png", - "glow_frame": "pixelart_250_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2351": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_251_001.png", - "glow_frame": "pixelart_251_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2352": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_252_001.png", - "glow_frame": "pixelart_252_glow_001.png", - "gridH": 0.5, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2353": { - "can_color": true, - "children": [ - { - "frame": "pixelart_253_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_253_001.png", - "glow_frame": "pixelart_253_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2354": { - "can_color": true, - "children": [ - { - "frame": "pixelart_254_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_254_001.png", - "glow_frame": "pixelart_254_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2355": { - "can_color": true, - "children": [ - { - "frame": "pixelart_255_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_255_001.png", - "glow_frame": "pixelart_255_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2356": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_256_001.png", - "glow_frame": "pixelart_256_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2357": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_257_001.png", - "glow_frame": "pixelart_257_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2358": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_258_001.png", - "glow_frame": "pixelart_258_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2359": { - "can_color": true, - "children": [ - { - "frame": "pixelart_259_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_259_001.png", - "glow_frame": "pixelart_259_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2360": { - "can_color": true, - "children": [ - { - "frame": "pixelart_260_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_260_001.png", - "glow_frame": "pixelart_260_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2361": { - "can_color": true, - "children": [ - { - "frame": "pixelart_261_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_261_001.png", - "glow_frame": "pixelart_261_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2362": { - "can_color": true, - "children": [ - { - "frame": "pixelart_262_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_262_001.png", - "glow_frame": "pixelart_262_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2363": { - "can_color": true, - "children": [ - { - "frame": "pixelart_263_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_263_001.png", - "glow_frame": "pixelart_263_glow_001.png", - "gridH": 0.5, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2364": { - "can_color": true, - "children": [ - { - "frame": "pixelart_264_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_264_001.png", - "glow_frame": "pixelart_264_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2365": { - "can_color": true, - "children": [ - { - "frame": "pixelart_265_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_265_001.png", - "glow_frame": "pixelart_265_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2366": { - "can_color": true, - "children": [ - { - "frame": "pixelart_266_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_266_001.png", - "glow_frame": "pixelart_266_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2367": { - "can_color": true, - "children": [ - { - "frame": "pixelart_267_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_267_001.png", - "glow_frame": "pixelart_267_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2368": { - "can_color": true, - "children": [ - { - "frame": "pixelart_268_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_268_001.png", - "glow_frame": "pixelart_268_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2369": { - "can_color": true, - "children": [ - { - "frame": "pixelart_269_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_269_001.png", - "glow_frame": "pixelart_269_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2370": { - "can_color": true, - "children": [ - { - "frame": "pixelart_270_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_270_001.png", - "glow_frame": "pixelart_270_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2371": { - "can_color": true, - "children": [ - { - "frame": "pixelart_271_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_271_001.png", - "glow_frame": "pixelart_271_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2372": { - "can_color": true, - "children": [ - { - "frame": "pixelart_272_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_272_001.png", - "glow_frame": "pixelart_272_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2373": { - "can_color": true, - "children": [ - { - "frame": "pixelart_273_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_273_001.png", - "glow_frame": "pixelart_273_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2374": { - "can_color": true, - "children": [ - { - "frame": "pixelart_274_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_274_001.png", - "glow_frame": "pixelart_274_glow_001.png", - "gridH": 0.5, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2375": { - "can_color": true, - "children": [ - { - "frame": "pixelart_275_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_275_001.png", - "glow_frame": "pixelart_275_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2376": { - "can_color": true, - "children": [ - { - "frame": "pixelart_276_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_276_001.png", - "glow_frame": "pixelart_276_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2377": { - "can_color": true, - "children": [ - { - "frame": "pixelart_277_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_277_001.png", - "glow_frame": "pixelart_277_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2378": { - "can_color": true, - "children": [ - { - "frame": "pixelart_278_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_278_001.png", - "glow_frame": "pixelart_278_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2379": { - "can_color": true, - "children": [ - { - "frame": "pixelart_279_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_279_001.png", - "glow_frame": "pixelart_279_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2380": { - "can_color": true, - "children": [ - { - "frame": "pixelart_280_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_280_001.png", - "glow_frame": "pixelart_280_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2381": { - "can_color": true, - "children": [ - { - "frame": "pixelart_281_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_281_001.png", - "glow_frame": "pixelart_281_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2382": { - "can_color": true, - "children": [ - { - "frame": "pixelart_282_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_282_001.png", - "glow_frame": "pixelart_282_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2383": { - "can_color": true, - "children": [ - { - "frame": "pixelart_283_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_283_001.png", - "glow_frame": "pixelart_283_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2384": { - "can_color": true, - "children": [ - { - "frame": "pixelart_284_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_284_001.png", - "glow_frame": "pixelart_284_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2385": { - "can_color": true, - "children": [ - { - "frame": "pixelart_285_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_285_001.png", - "glow_frame": "pixelart_285_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2386": { - "can_color": true, - "children": [ - { - "frame": "pixelart_286_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_286_001.png", - "glow_frame": "pixelart_286_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2387": { - "can_color": true, - "children": [ - { - "frame": "pixelart_287_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_287_001.png", - "glow_frame": "pixelart_287_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2388": { - "can_color": true, - "children": [ - { - "frame": "pixelart_288_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_288_001.png", - "glow_frame": "pixelart_288_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2389": { - "can_color": true, - "children": [ - { - "frame": "pixelart_289_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_289_001.png", - "glow_frame": "pixelart_289_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2390": { - "can_color": true, - "children": [ - { - "frame": "pixelart_290_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_290_001.png", - "glow_frame": "pixelart_290_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2391": { - "can_color": true, - "children": [ - { - "frame": "pixelart_291_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_291_001.png", - "glow_frame": "pixelart_291_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2392": { - "can_color": true, - "children": [ - { - "frame": "pixelart_292_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_292_001.png", - "glow_frame": "pixelart_292_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2393": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_293_001.png", - "glow_frame": "pixelart_293_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2394": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_294_001.png", - "glow_frame": "pixelart_294_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2395": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_295_001.png", - "glow_frame": "pixelart_295_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2396": { - "can_color": true, - "children": [ - { - "frame": "pixelart_296_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_296_001.png", - "glow_frame": "pixelart_296_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2397": { - "can_color": true, - "children": [ - { - "frame": "pixelart_297_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_297_001.png", - "glow_frame": "pixelart_297_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2398": { - "can_color": true, - "children": [ - { - "frame": "pixelart_298_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_298_001.png", - "glow_frame": "pixelart_298_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2399": { - "can_color": true, - "children": [ - { - "frame": "pixelart_299_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_299_001.png", - "glow_frame": "pixelart_299_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2400": { - "can_color": true, - "children": [ - { - "frame": "pixelart_300_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_300_001.png", - "glow_frame": "pixelart_300_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2401": { - "can_color": true, - "children": [ - { - "frame": "pixelart_301_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_301_001.png", - "glow_frame": "pixelart_301_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2402": { - "can_color": true, - "children": [ - { - "frame": "pixelart_302_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_302_001.png", - "glow_frame": "pixelart_302_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2403": { - "can_color": true, - "children": [ - { - "frame": "pixelart_303_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_303_001.png", - "glow_frame": "pixelart_303_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2404": { - "can_color": true, - "children": [ - { - "frame": "pixelart_304_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_304_001.png", - "glow_frame": "pixelart_304_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2405": { - "can_color": true, - "children": [ - { - "frame": "pixelart_305_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_305_001.png", - "glow_frame": "pixelart_305_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2406": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_306_001.png", - "glow_frame": "pixelart_306_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2407": { - "can_color": true, - "children": [ - { - "frame": "pixelart_307_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_307_001.png", - "glow_frame": "pixelart_307_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2408": { - "can_color": true, - "children": [ - { - "frame": "pixelart_308_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_308_001.png", - "glow_frame": "pixelart_308_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2409": { - "can_color": true, - "children": [ - { - "frame": "pixelart_309_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_309_001.png", - "glow_frame": "pixelart_309_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2410": { - "can_color": true, - "children": [ - { - "frame": "pixelart_310_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_310_001.png", - "glow_frame": "pixelart_310_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2411": { - "can_color": true, - "children": [ - { - "frame": "pixelart_311_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_311_001.png", - "glow_frame": "pixelart_311_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2412": { - "can_color": true, - "children": [ - { - "frame": "pixelart_312_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_312_001.png", - "glow_frame": "pixelart_312_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2413": { - "can_color": true, - "children": [ - { - "frame": "pixelart_313_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_313_001.png", - "glow_frame": "pixelart_313_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2414": { - "can_color": true, - "children": [ - { - "frame": "pixelart_314_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_314_001.png", - "glow_frame": "pixelart_314_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2415": { - "can_color": true, - "children": [ - { - "frame": "pixelart_315_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_315_001.png", - "glow_frame": "pixelart_315_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2416": { - "can_color": true, - "children": [ - { - "frame": "pixelart_316_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_316_001.png", - "glow_frame": "pixelart_316_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2417": { - "can_color": true, - "children": [ - { - "frame": "pixelart_317_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_317_001.png", - "glow_frame": "pixelart_317_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2418": { - "can_color": true, - "children": [ - { - "frame": "pixelart_318_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_318_001.png", - "glow_frame": "pixelart_318_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2419": { - "can_color": true, - "children": [ - { - "frame": "pixelart_319_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_319_001.png", - "glow_frame": "pixelart_319_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2420": { - "can_color": true, - "children": [ - { - "frame": "pixelart_320_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_320_001.png", - "glow_frame": "pixelart_320_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2421": { - "can_color": true, - "children": [ - { - "frame": "pixelart_321_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_321_001.png", - "glow_frame": "pixelart_321_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2422": { - "can_color": true, - "children": [ - { - "frame": "pixelart_322_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_322_001.png", - "glow_frame": "pixelart_322_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2423": { - "can_color": true, - "children": [ - { - "frame": "pixelart_323_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_323_001.png", - "glow_frame": "pixelart_323_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2424": { - "can_color": true, - "children": [ - { - "frame": "pixelart_324_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_324_001.png", - "glow_frame": "pixelart_324_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2425": { - "can_color": true, - "children": [ - { - "frame": "pixelart_325_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_325_001.png", - "glow_frame": "pixelart_325_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2426": { - "can_color": true, - "children": [ - { - "frame": "pixelart_326_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_326_001.png", - "glow_frame": "pixelart_326_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2427": { - "can_color": true, - "children": [ - { - "frame": "pixelart_327_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_327_001.png", - "glow_frame": "pixelart_327_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2428": { - "can_color": true, - "children": [ - { - "frame": "pixelart_328_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_328_001.png", - "glow_frame": "pixelart_328_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2429": { - "can_color": true, - "children": [ - { - "frame": "pixelart_329_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_329_001.png", - "glow_frame": "pixelart_329_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2430": { - "can_color": true, - "children": [ - { - "frame": "pixelart_330_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_330_001.png", - "glow_frame": "pixelart_330_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2431": { - "can_color": true, - "children": [ - { - "frame": "pixelart_331_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_331_001.png", - "glow_frame": "pixelart_331_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2432": { - "can_color": true, - "children": [ - { - "frame": "pixelart_332_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_332_001.png", - "glow_frame": "pixelart_332_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2433": { - "can_color": true, - "children": [ - { - "frame": "pixelart_147_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_333_001.png", - "glow_frame": "pixelart_333_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2434": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_334_001.png", - "glow_frame": "pixelart_334_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2435": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_335_001.png", - "glow_frame": "pixelart_335_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2436": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_336_001.png", - "glow_frame": "pixelart_336_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2437": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_337_001.png", - "glow_frame": "pixelart_337_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2438": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_338_001.png", - "glow_frame": "pixelart_338_glow_001.png", - "gridH": 0.5, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2439": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_339_001.png", - "glow_frame": "pixelart_339_glow_001.png", - "gridH": 0.5, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2440": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_340_001.png", - "glow_frame": "pixelart_340_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2441": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_341_001.png", - "glow_frame": "pixelart_341_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2442": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_342_001.png", - "glow_frame": "pixelart_342_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2443": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_343_001.png", - "glow_frame": "pixelart_343_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2444": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_344_001.png", - "glow_frame": "pixelart_344_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2445": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_345_001.png", - "glow_frame": "pixelart_345_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2446": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_346_001.png", - "glow_frame": "pixelart_346_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2447": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_347_001.png", - "glow_frame": "pixelart_347_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2448": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_348_001.png", - "glow_frame": "pixelart_348_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2449": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_349_001.png", - "glow_frame": "pixelart_349_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2450": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_350_001.png", - "glow_frame": "pixelart_350_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2451": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_351_001.png", - "glow_frame": "pixelart_351_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2452": { - "can_color": true, - "children": [ - { - "frame": "pixelart_352_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_352_001.png", - "glow_frame": "pixelart_352_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2453": { - "can_color": true, - "children": [ - { - "frame": "pixelart_353_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_353_001.png", - "glow_frame": "pixelart_353_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2454": { - "can_color": true, - "children": [ - { - "frame": "pixelart_354_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_354_001.png", - "glow_frame": "pixelart_354_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2455": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_355_001.png", - "glow_frame": "pixelart_355_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2456": { - "can_color": true, - "children": [ - { - "frame": "pixelart_356_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_356_001.png", - "glow_frame": "pixelart_356_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2457": { - "can_color": true, - "children": [ - { - "frame": "pixelart_357_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_357_001.png", - "glow_frame": "pixelart_357_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2458": { - "can_color": true, - "children": [ - { - "frame": "pixelart_358_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_358_001.png", - "glow_frame": "pixelart_358_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2459": { - "can_color": true, - "children": [ - { - "frame": "pixelart_359_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_082_001.png", - "glow_frame": "pixelart_082_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2460": { - "can_color": true, - "children": [ - { - "frame": "pixelart_360_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_083_001.png", - "glow_frame": "pixelart_083_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2461": { - "can_color": true, - "children": [ - { - "frame": "pixelart_361_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_084_001.png", - "glow_frame": "pixelart_084_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2462": { - "can_color": true, - "children": [ - { - "frame": "pixelart_362_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_362_001.png", - "glow_frame": "pixelart_362_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2463": { - "can_color": true, - "children": [ - { - "frame": "pixelart_363_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_363_001.png", - "glow_frame": "pixelart_363_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2464": { - "can_color": true, - "children": [ - { - "frame": "pixelart_364_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_364_001.png", - "glow_frame": "pixelart_364_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2465": { - "can_color": true, - "children": [ - { - "frame": "pixelart_365_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_365_001.png", - "glow_frame": "pixelart_365_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2466": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_366_001.png", - "glow_frame": "pixelart_366_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 8 - }, - "2467": { - "can_color": true, - "children": [ - { - "frame": "pixelart_367_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_367_001.png", - "glow_frame": "pixelart_367_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2468": { - "can_color": true, - "children": [ - { - "frame": "pixelart_368_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_368_001.png", - "glow_frame": "pixelart_368_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2469": { - "can_color": true, - "children": [ - { - "frame": "pixelart_369_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_369_001.png", - "glow_frame": "pixelart_369_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2470": { - "can_color": true, - "children": [ - { - "frame": "pixelart_370_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_370_001.png", - "glow_frame": "pixelart_370_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2471": { - "can_color": true, - "children": [ - { - "frame": "pixelart_371_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_371_001.png", - "glow_frame": "pixelart_371_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2472": { - "can_color": true, - "children": [ - { - "frame": "pixelart_372_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_372_001.png", - "glow_frame": "pixelart_372_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2473": { - "can_color": true, - "children": [ - { - "frame": "pixelart_373_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_373_001.png", - "glow_frame": "pixelart_373_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1.0666667222976685, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2474": { - "can_color": true, - "children": [ - { - "frame": "pixelart_374_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_374_001.png", - "glow_frame": "pixelart_374_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2475": { - "can_color": true, - "children": [ - { - "frame": "pixelart_375_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_375_001.png", - "glow_frame": "pixelart_375_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2476": { - "can_color": true, - "children": [ - { - "frame": "pixelart_376_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_376_001.png", - "glow_frame": "pixelart_376_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2477": { - "can_color": true, - "children": [ - { - "frame": "pixelart_377_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_377_001.png", - "glow_frame": "pixelart_377_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2478": { - "can_color": true, - "children": [ - { - "frame": "pixelart_378_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_378_001.png", - "glow_frame": "pixelart_378_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2479": { - "can_color": true, - "children": [ - { - "frame": "pixelart_379_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_379_001.png", - "glow_frame": "pixelart_379_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2480": { - "can_color": true, - "children": [ - { - "frame": "pixelart_380_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_380_001.png", - "glow_frame": "pixelart_380_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2481": { - "can_color": true, - "children": [ - { - "frame": "pixelart_381_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_381_001.png", - "glow_frame": "pixelart_381_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2482": { - "can_color": true, - "children": [ - { - "frame": "pixelart_382_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_382_001.png", - "glow_frame": "pixelart_382_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2483": { - "can_color": true, - "children": [ - { - "frame": "pixelart_383_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_383_001.png", - "glow_frame": "pixelart_383_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2484": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_384_001.png", - "glow_frame": "pixelart_384_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2485": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_385_001.png", - "glow_frame": "pixelart_385_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2486": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_386_001.png", - "glow_frame": "pixelart_386_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2487": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_387_001.png", - "glow_frame": "pixelart_387_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2488": { - "can_color": true, - "children": [ - { - "frame": "pixelart_388_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_388_001.png", - "glow_frame": "pixelart_388_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2489": { - "can_color": true, - "children": [ - { - "frame": "pixelart_389_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_389_001.png", - "glow_frame": "pixelart_389_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2490": { - "can_color": true, - "children": [ - { - "frame": "pixelart_390_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_390_001.png", - "glow_frame": "pixelart_390_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2491": { - "can_color": true, - "children": [ - { - "frame": "pixelart_391_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_391_001.png", - "glow_frame": "pixelart_391_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2492": { - "can_color": true, - "children": [ - { - "frame": "pixelart_392_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_392_001.png", - "glow_frame": "pixelart_392_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2493": { - "can_color": true, - "children": [ - { - "frame": "pixelart_393_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_393_001.png", - "glow_frame": "pixelart_393_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2494": { - "can_color": true, - "children": [ - { - "frame": "pixelart_394_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_394_001.png", - "glow_frame": "pixelart_394_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2495": { - "can_color": true, - "children": [ - { - "frame": "pixelart_395_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_395_001.png", - "glow_frame": "pixelart_395_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2496": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_396_001.png", - "glow_frame": "pixelart_396_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2497": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_397_001.png", - "glow_frame": "pixelart_397_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2498": { - "can_color": true, - "children": [ - { - "frame": "pixelart_398_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_398_001.png", - "glow_frame": "pixelart_398_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2499": { - "can_color": true, - "children": [ - { - "frame": "pixelart_399_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_399_001.png", - "glow_frame": "pixelart_399_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2500": { - "can_color": true, - "children": [ - { - "frame": "pixelart_400_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_400_001.png", - "glow_frame": "pixelart_400_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2501": { - "can_color": true, - "children": [ - { - "frame": "pixelart_401_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_401_001.png", - "glow_frame": "pixelart_401_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2502": { - "can_color": true, - "children": [ - { - "frame": "pixelart_402_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_402_001.png", - "glow_frame": "pixelart_402_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2503": { - "can_color": true, - "children": [ - { - "frame": "pixelart_403_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_403_001.png", - "glow_frame": "pixelart_403_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2504": { - "can_color": true, - "children": [ - { - "frame": "pixelart_404_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_404_001.png", - "glow_frame": "pixelart_404_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2505": { - "can_color": true, - "children": [ - { - "frame": "pixelart_405_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_405_001.png", - "glow_frame": "pixelart_405_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2506": { - "can_color": true, - "children": [ - { - "frame": "pixelart_406_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_406_001.png", - "glow_frame": "pixelart_406_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2507": { - "can_color": true, - "children": [ - { - "frame": "pixelart_407_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_407_001.png", - "glow_frame": "pixelart_407_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2508": { - "can_color": true, - "children": [ - { - "frame": "pixelart_408_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_408_001.png", - "glow_frame": "pixelart_408_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2509": { - "can_color": true, - "children": [ - { - "frame": "pixelart_409_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_409_001.png", - "glow_frame": "pixelart_409_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2510": { - "can_color": true, - "children": [ - { - "frame": "pixelart_410_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_410_001.png", - "glow_frame": "pixelart_410_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2511": { - "can_color": true, - "children": [ - { - "frame": "pixelart_411_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_411_001.png", - "glow_frame": "pixelart_411_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.8333333134651184, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2512": { - "can_color": true, - "children": [ - { - "frame": "pixelart_412_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_412_001.png", - "glow_frame": "pixelart_412_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2513": { - "can_color": true, - "children": [ - { - "frame": "pixelart_413_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_413_001.png", - "glow_frame": "pixelart_413_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2514": { - "can_color": true, - "children": [ - { - "frame": "pixelart_414_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_414_001.png", - "glow_frame": "pixelart_414_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2515": { - "can_color": true, - "children": [ - { - "frame": "pixelart_415_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_415_001.png", - "glow_frame": "pixelart_415_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.800000011920929, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2516": { - "can_color": true, - "children": [ - { - "frame": "pixelart_416_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_416_001.png", - "glow_frame": "pixelart_416_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.800000011920929, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2517": { - "can_color": true, - "children": [ - { - "frame": "pixelart_417_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_417_001.png", - "glow_frame": "pixelart_417_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.800000011920929, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2518": { - "can_color": true, - "children": [ - { - "frame": "pixelart_418_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_418_001.png", - "glow_frame": "pixelart_418_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2519": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_419_001.png", - "glow_frame": "pixelart_419_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2520": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_420_001.png", - "glow_frame": "pixelart_420_glow_001.png", - "gridH": 0.5, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2521": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_421_001.png", - "glow_frame": "pixelart_421_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.800000011920929, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2522": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_422_001.png", - "glow_frame": "pixelart_422_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2523": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_423_001.png", - "glow_frame": "pixelart_423_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2524": { - "can_color": true, - "children": [ - { - "frame": "pixelart_424_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_424_001.png", - "glow_frame": "pixelart_424_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.9333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2525": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_425_001.png", - "glow_frame": "pixelart_425_glow_001.png", - "gridH": 0.5, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2526": { - "can_color": true, - "children": [ - { - "frame": "pixelart_426_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_426_001.png", - "glow_frame": "pixelart_426_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2527": { - "can_color": true, - "children": [ - { - "frame": "pixelart_427_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_427_001.png", - "glow_frame": "pixelart_427_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2528": { - "can_color": true, - "children": [ - { - "frame": "pixelart_428_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_428_001.png", - "glow_frame": "pixelart_428_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2529": { - "can_color": true, - "children": [ - { - "frame": "pixelart_429_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_429_001.png", - "glow_frame": "pixelart_429_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2530": { - "can_color": true, - "children": [ - { - "frame": "pixelart_430_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_430_001.png", - "glow_frame": "pixelart_430_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2531": { - "can_color": true, - "children": [ - { - "frame": "pixelart_431_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_431_001.png", - "glow_frame": "pixelart_431_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2532": { - "can_color": true, - "children": [ - { - "frame": "pixelart_432_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_432_001.png", - "glow_frame": "pixelart_432_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2533": { - "can_color": true, - "children": [ - { - "frame": "pixelart_433_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_433_001.png", - "glow_frame": "pixelart_433_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2534": { - "can_color": true, - "children": [ - { - "frame": "pixelart_434_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_434_001.png", - "glow_frame": "pixelart_434_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2535": { - "can_color": true, - "children": [ - { - "frame": "pixelart_435_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_435_001.png", - "glow_frame": "pixelart_435_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2536": { - "can_color": true, - "children": [ - { - "frame": "pixelart_436_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_436_001.png", - "glow_frame": "pixelart_436_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2537": { - "can_color": true, - "children": [ - { - "frame": "pixelart_437_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_437_001.png", - "glow_frame": "pixelart_437_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2538": { - "can_color": true, - "children": [ - { - "frame": "pixelart_438_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_438_001.png", - "glow_frame": "pixelart_438_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2539": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_439_001.png", - "glow_frame": "pixelart_439_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2540": { - "can_color": true, - "children": [ - { - "frame": "pixelart_440_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_440_001.png", - "glow_frame": "pixelart_440_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2541": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_441_001.png", - "glow_frame": "pixelart_441_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2542": { - "can_color": true, - "children": [ - { - "frame": "pixelart_442_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_442_001.png", - "glow_frame": "pixelart_442_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2543": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_443_001.png", - "glow_frame": "pixelart_443_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2544": { - "can_color": true, - "children": [ - { - "frame": "pixelart_444_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_444_001.png", - "glow_frame": "pixelart_444_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2545": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_445_001.png", - "glow_frame": "pixelart_445_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2546": { - "can_color": true, - "children": [ - { - "frame": "pixelart_446_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_446_001.png", - "glow_frame": "pixelart_446_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2547": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_447_001.png", - "glow_frame": "pixelart_447_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2548": { - "can_color": true, - "children": [ - { - "frame": "pixelart_448_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_448_001.png", - "glow_frame": "pixelart_448_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2549": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_449_001.png", - "glow_frame": "pixelart_449_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 8 - }, - "2550": { - "can_color": true, - "children": [ - { - "frame": "pixelart_450_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_450_001.png", - "glow_frame": "pixelart_450_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2551": { - "can_color": true, - "children": [ - { - "frame": "pixelart_451_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_451_001.png", - "glow_frame": "pixelart_451_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2552": { - "can_color": true, - "children": [ - { - "frame": "pixelart_452_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_452_001.png", - "glow_frame": "pixelart_452_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2553": { - "can_color": true, - "children": [ - { - "frame": "pixelart_453_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_453_001.png", - "glow_frame": "pixelart_453_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2554": { - "can_color": true, - "children": [ - { - "frame": "pixelart_454_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_454_001.png", - "glow_frame": "pixelart_454_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2555": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_455_001.png", - "glow_frame": "pixelart_455_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2556": { - "can_color": true, - "children": [ - { - "frame": "pixelart_456_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_456_001.png", - "glow_frame": "pixelart_456_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2557": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_455_001.png", - "glow_frame": "pixelart_455_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2558": { - "can_color": true, - "children": [ - { - "frame": "pixelart_458_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_458_001.png", - "glow_frame": "pixelart_458_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2559": { - "can_color": true, - "children": [ - { - "frame": "pixelart_459_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_459_001.png", - "glow_frame": "pixelart_459_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2560": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_460_001.png", - "glow_frame": "pixelart_460_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2561": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_461_001.png", - "glow_frame": "pixelart_461_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2562": { - "can_color": true, - "children": [ - { - "frame": "pixelart_462_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_462_001.png", - "glow_frame": "pixelart_462_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2563": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_463_001.png", - "glow_frame": "pixelart_463_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2564": { - "can_color": true, - "children": [ - { - "frame": "pixelart_464_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_464_001.png", - "glow_frame": "pixelart_464_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2565": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_465_001.png", - "glow_frame": "pixelart_465_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2566": { - "can_color": true, - "children": [ - { - "frame": "pixelart_466_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_466_001.png", - "glow_frame": "pixelart_466_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1.0666667222976685, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2567": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_467_001.png", - "glow_frame": "pixelart_467_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.8999999761581421, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2568": { - "can_color": true, - "children": [ - { - "frame": "pixelart_468_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_468_001.png", - "glow_frame": "pixelart_468_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2569": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1042_001.png", - "glow_frame": "pixelart_1042_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2570": { - "can_color": true, - "children": [ - { - "frame": "pixelart_470_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_470_001.png", - "glow_frame": "pixelart_470_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2571": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_471_001.png", - "glow_frame": "pixelart_471_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2572": { - "can_color": true, - "children": [ - { - "frame": "pixelart_472_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_472_001.png", - "glow_frame": "pixelart_472_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2573": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_441_001.png", - "glow_frame": "pixelart_441_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2574": { - "can_color": true, - "children": [ - { - "frame": "pixelart_474_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_474_001.png", - "glow_frame": "pixelart_474_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2575": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_475_001.png", - "glow_frame": "pixelart_475_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2576": { - "can_color": true, - "children": [ - { - "frame": "pixelart_476_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_476_001.png", - "glow_frame": "pixelart_476_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2577": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_477_001.png", - "glow_frame": "pixelart_477_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2578": { - "can_color": true, - "children": [ - { - "frame": "pixelart_478_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_478_001.png", - "glow_frame": "pixelart_478_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2579": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_479_001.png", - "glow_frame": "pixelart_479_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2580": { - "can_color": true, - "children": [ - { - "frame": "pixelart_480_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_480_001.png", - "glow_frame": "pixelart_480_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2581": { - "can_color": true, - "children": [ - { - "frame": "pixelart_481_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_481_001.png", - "glow_frame": "pixelart_481_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2582": { - "can_color": true, - "children": [ - { - "frame": "pixelart_482_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_482_001.png", - "glow_frame": "pixelart_482_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2583": { - "can_color": true, - "children": [ - { - "frame": "pixelart_483_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_483_001.png", - "glow_frame": "pixelart_483_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2584": { - "can_color": true, - "children": [ - { - "frame": "pixelart_484_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_484_001.png", - "glow_frame": "pixelart_484_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2585": { - "can_color": true, - "children": [ - { - "frame": "pixelart_485_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_485_001.png", - "glow_frame": "pixelart_485_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2586": { - "can_color": true, - "children": [ - { - "frame": "pixelart_486_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_486_001.png", - "glow_frame": "pixelart_486_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2587": { - "can_color": true, - "children": [ - { - "frame": "pixelart_487_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_487_001.png", - "glow_frame": "pixelart_487_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2588": { - "can_color": true, - "children": [ - { - "frame": "pixelart_488_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_488_001.png", - "glow_frame": "pixelart_488_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2589": { - "can_color": true, - "children": [ - { - "frame": "pixelart_489_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_489_001.png", - "glow_frame": "pixelart_489_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2590": { - "can_color": true, - "children": [ - { - "frame": "pixelart_490_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_490_001.png", - "glow_frame": "pixelart_490_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2591": { - "can_color": true, - "children": [ - { - "frame": "pixelart_491_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_491_001.png", - "glow_frame": "pixelart_491_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2592": { - "can_color": true, - "children": [ - { - "frame": "pixelart_492_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_492_001.png", - "glow_frame": "pixelart_492_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2593": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_493_001.png", - "glow_frame": "pixelart_493_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2594": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_494_001.png", - "glow_frame": "pixelart_494_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2595": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_495_001.png", - "glow_frame": "pixelart_495_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2596": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_496_001.png", - "glow_frame": "pixelart_496_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2597": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_497_001.png", - "glow_frame": "pixelart_497_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2598": { - "can_color": true, - "children": [ - { - "frame": "pixelart_498_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_498_001.png", - "glow_frame": "pixelart_498_glow_001.png", - "gridH": 0.5, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2599": { - "can_color": true, - "children": [ - { - "frame": "pixelart_499_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_499_001.png", - "glow_frame": "pixelart_499_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2600": { - "can_color": true, - "children": [ - { - "frame": "pixelart_500_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_500_001.png", - "glow_frame": "pixelart_500_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2601": { - "can_color": true, - "children": [ - { - "frame": "pixelart_501_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_501_001.png", - "glow_frame": "pixelart_501_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2602": { - "can_color": true, - "children": [ - { - "frame": "pixelart_502_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_502_001.png", - "glow_frame": "pixelart_502_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2603": { - "can_color": true, - "children": [ - { - "frame": "pixelart_503_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_503_001.png", - "glow_frame": "pixelart_503_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2604": { - "can_color": true, - "children": [ - { - "frame": "pixelart_504_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_504_001.png", - "glow_frame": "pixelart_504_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2605": { - "can_color": true, - "children": [ - { - "frame": "pixelart_505_color_006.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_505_006.png", - "glow_frame": "pixelart_505_006.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2606": { - "can_color": true, - "children": [ - { - "frame": "pixelart_506_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_506_001.png", - "glow_frame": "pixelart_506_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2607": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_507_001.png", - "glow_frame": "pixelart_507_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2608": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_508_001.png", - "glow_frame": "pixelart_508_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2609": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_509_001.png", - "glow_frame": "pixelart_509_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2610": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_510_001.png", - "glow_frame": "pixelart_510_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2611": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_511_001.png", - "glow_frame": "pixelart_511_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2612": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_512_001.png", - "glow_frame": "pixelart_512_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2613": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_513_001.png", - "glow_frame": "pixelart_513_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2614": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_514_001.png", - "glow_frame": "pixelart_514_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2615": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_515_001.png", - "glow_frame": "pixelart_515_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2616": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_516_001.png", - "glow_frame": "pixelart_516_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2617": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_517_001.png", - "glow_frame": "pixelart_517_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2618": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_518_001.png", - "glow_frame": "pixelart_518_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2619": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_519_001.png", - "glow_frame": "pixelart_519_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2620": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_520_001.png", - "glow_frame": "pixelart_520_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2621": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_521_001.png", - "glow_frame": "pixelart_521_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2622": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_522_001.png", - "glow_frame": "pixelart_522_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2623": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_523_001.png", - "glow_frame": "pixelart_523_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2624": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_524_001.png", - "glow_frame": "pixelart_524_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2625": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_525_001.png", - "glow_frame": "pixelart_525_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2626": { - "can_color": true, - "children": [ - { - "frame": "pixelart_526_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_526_001.png", - "glow_frame": "pixelart_526_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2627": { - "can_color": true, - "children": [ - { - "frame": "pixelart_527_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_527_001.png", - "glow_frame": "pixelart_527_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2628": { - "can_color": true, - "children": [ - { - "frame": "pixelart_528_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_528_001.png", - "glow_frame": "pixelart_528_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2629": { - "can_color": true, - "children": [ - { - "frame": "pixelart_529_color_003.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_529_003.png", - "glow_frame": "pixelart_529_003.png", - "gridH": 0.7666666507720947, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2630": { - "can_color": true, - "children": [ - { - "frame": "pixelart_530_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_530_001.png", - "glow_frame": "pixelart_530_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2631": { - "can_color": true, - "children": [ - { - "frame": "pixelart_454_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_531_001.png", - "glow_frame": "pixelart_531_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2632": { - "can_color": true, - "children": [ - { - "frame": "pixelart_532_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_532_001.png", - "glow_frame": "pixelart_532_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2633": { - "can_color": true, - "children": [ - { - "frame": "pixelart_533_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_533_001.png", - "glow_frame": "pixelart_533_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2634": { - "can_color": true, - "children": [ - { - "frame": "pixelart_291_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_534_001.png", - "glow_frame": "pixelart_534_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2635": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_535_001.png", - "glow_frame": "pixelart_535_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2636": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_536_001.png", - "glow_frame": "pixelart_536_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2637": { - "can_color": true, - "children": [ - { - "frame": "pixelart_537_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_537_001.png", - "glow_frame": "pixelart_537_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2638": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_538_001.png", - "glow_frame": "pixelart_538_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2639": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_539_001.png", - "glow_frame": "pixelart_539_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2640": { - "can_color": true, - "children": [ - { - "frame": "pixelart_540_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_540_001.png", - "glow_frame": "pixelart_540_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2641": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_541_001.png", - "glow_frame": "pixelart_541_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2642": { - "can_color": true, - "children": [ - { - "frame": "pixelart_542_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_542_001.png", - "glow_frame": "pixelart_542_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2643": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_543_001.png", - "glow_frame": "pixelart_543_glow_001.png", - "gridH": 0.5, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2644": { - "can_color": true, - "children": [ - { - "frame": "pixelart_544_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_544_001.png", - "glow_frame": "pixelart_544_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2645": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_545_001.png", - "glow_frame": "pixelart_545_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2646": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_546_001.png", - "glow_frame": "pixelart_546_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2647": { - "can_color": true, - "children": [ - { - "frame": "pixelart_547_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_547_001.png", - "glow_frame": "pixelart_547_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2648": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_548_001.png", - "glow_frame": "pixelart_548_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2649": { - "can_color": true, - "children": [ - { - "frame": "pixelart_549_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_549_001.png", - "glow_frame": "pixelart_549_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2650": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_543_001.png", - "glow_frame": "pixelart_543_glow_001.png", - "gridH": 0.5, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2651": { - "can_color": true, - "children": [ - { - "frame": "pixelart_551_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_551_001.png", - "glow_frame": "pixelart_551_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2652": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_552_001.png", - "glow_frame": "pixelart_552_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2653": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_539_001.png", - "glow_frame": "pixelart_539_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2654": { - "can_color": true, - "children": [ - { - "frame": "pixelart_554_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_554_001.png", - "glow_frame": "pixelart_554_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2655": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_555_001.png", - "glow_frame": "pixelart_555_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2656": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_556_001.png", - "glow_frame": "pixelart_556_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2657": { - "can_color": true, - "children": [ - { - "frame": "pixelart_557_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_557_001.png", - "glow_frame": "pixelart_557_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2658": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_558_001.png", - "glow_frame": "pixelart_558_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2659": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_559_001.png", - "glow_frame": "pixelart_559_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2660": { - "can_color": true, - "children": [ - { - "frame": "pixelart_560_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_560_001.png", - "glow_frame": "pixelart_560_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2661": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_561_001.png", - "glow_frame": "pixelart_561_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2662": { - "can_color": true, - "children": [ - { - "frame": "pixelart_562_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_562_001.png", - "glow_frame": "pixelart_562_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2663": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_563_001.png", - "glow_frame": "pixelart_563_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2664": { - "can_color": true, - "children": [ - { - "frame": "pixelart_564_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_564_001.png", - "glow_frame": "pixelart_564_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2665": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_565_001.png", - "glow_frame": "pixelart_565_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2666": { - "can_color": true, - "children": [ - { - "frame": "pixelart_566_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_566_001.png", - "glow_frame": "pixelart_566_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2667": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_567_001.png", - "glow_frame": "pixelart_567_glow_001.png", - "gridH": 0.5, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2668": { - "can_color": true, - "children": [ - { - "frame": "pixelart_568_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_568_001.png", - "glow_frame": "pixelart_568_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2669": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_569_001.png", - "glow_frame": "pixelart_569_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2670": { - "can_color": true, - "children": [ - { - "frame": "pixelart_570_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_570_001.png", - "glow_frame": "pixelart_570_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2671": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_543_001.png", - "glow_frame": "pixelart_543_glow_001.png", - "gridH": 0.5, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2672": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_572_001.png", - "glow_frame": "pixelart_572_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2673": { - "can_color": true, - "children": [ - { - "frame": "pixelart_573_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_573_001.png", - "glow_frame": "pixelart_573_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2674": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_548_001.png", - "glow_frame": "pixelart_548_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2675": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1394_color_001.png", - "glow_frame": "pixelart_1394_color_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2676": { - "can_color": true, - "children": [ - { - "frame": "pixelart_576_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_576_001.png", - "glow_frame": "pixelart_576_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2677": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_543_001.png", - "glow_frame": "pixelart_543_glow_001.png", - "gridH": 0.5, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2678": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_578_001.png", - "glow_frame": "pixelart_578_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2679": { - "can_color": true, - "children": [ - { - "frame": "pixelart_579_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_579_001.png", - "glow_frame": "pixelart_579_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2680": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_580_001.png", - "glow_frame": "pixelart_580_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2681": { - "can_color": true, - "children": [ - { - "frame": "pixelart_581_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_581_001.png", - "glow_frame": "pixelart_581_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2682": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_555_001.png", - "glow_frame": "pixelart_555_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2683": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_583_001.png", - "glow_frame": "pixelart_583_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2684": { - "can_color": true, - "children": [ - { - "frame": "pixelart_584_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_584_001.png", - "glow_frame": "pixelart_584_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2685": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_585_001.png", - "glow_frame": "pixelart_585_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2686": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_586_001.png", - "glow_frame": "pixelart_586_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2687": { - "can_color": true, - "children": [ - { - "frame": "pixelart_587_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_587_001.png", - "glow_frame": "pixelart_587_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1.0666667222976685, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2688": { - "can_color": true, - "children": [ - { - "frame": "pixelart_588_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_588_001.png", - "glow_frame": "pixelart_588_glow_001.png", - "gridH": 0.5, - "gridW": 1.1333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2689": { - "can_color": true, - "children": [ - { - "frame": "pixelart_589_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_589_001.png", - "glow_frame": "pixelart_589_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.9333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2690": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1258_color_001.png", - "glow_frame": "pixelart_1258_color_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2691": { - "can_color": true, - "children": [ - { - "frame": "pixelart_591_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_591_001.png", - "glow_frame": "pixelart_591_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 1.0666667222976685, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2692": { - "can_color": true, - "children": [ - { - "frame": "pixelart_592_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_592_001.png", - "glow_frame": "pixelart_592_glow_001.png", - "gridH": 0.5, - "gridW": 1.1333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "2693": { - "can_color": true, - "children": [ - { - "frame": "pixelart_593_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_593_001.png", - "glow_frame": "pixelart_593_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.8999999761581421, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2694": { - "can_color": true, - "children": [ - { - "frame": "pixelart_594_color_004.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_594_004.png", - "glow_frame": "pixelart_594_004.png", - "gridH": 0.9666666388511658, - "gridW": 1.100000023841858, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2695": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1126_001.png", - "glow_frame": "pixelart_1126_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2696": { - "can_color": true, - "children": [ - { - "frame": "pixelart_596_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_596_001.png", - "glow_frame": "pixelart_596_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2697": { - "can_color": true, - "children": [ - { - "frame": "pixelart_597_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_596_001.png", - "glow_frame": "pixelart_596_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2698": { - "can_color": true, - "children": [ - { - "frame": "pixelart_598_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_598_001.png", - "glow_frame": "pixelart_598_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2699": { - "can_color": true, - "children": [ - { - "frame": "pixelart_599_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_599_001.png", - "glow_frame": "pixelart_599_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2700": { - "can_color": true, - "children": [ - { - "frame": "pixelart_600_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_600_001.png", - "glow_frame": "pixelart_600_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "2703": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2704": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2708": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_01_001.png", - "glow_frame": "gdh_01_1_01_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2709": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_01_o_001.png", - "glow_frame": "gdh_01_1_01_o_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2710": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_01_s_001.png", - "glow_frame": "gdh_01_1_01_s_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2711": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_01b_001.png", - "glow_frame": "gdh_01_1_01b_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2712": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_01b_o_001.png", - "glow_frame": "gdh_01_1_01b_o_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2713": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_01b_s_001.png", - "glow_frame": "gdh_01_1_01b_s_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2714": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_02_001.png", - "glow_frame": "gdh_01_1_02_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2715": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_02_o_001.png", - "glow_frame": "gdh_01_1_02_o_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2716": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_02_s_001.png", - "glow_frame": "gdh_01_1_02_s_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2717": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_02b_001.png", - "glow_frame": "gdh_01_1_02b_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2718": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_02b_o_001.png", - "glow_frame": "gdh_01_1_02b_o_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2719": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_02b_s_001.png", - "glow_frame": "gdh_01_1_02b_s_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2720": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_03_001.png", - "glow_frame": "gdh_01_1_03_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2721": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_03_o_001.png", - "glow_frame": "gdh_01_1_03_o_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2722": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_03_s_001.png", - "glow_frame": "gdh_01_1_03_s_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2723": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_03b_001.png", - "glow_frame": "gdh_01_1_03b_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2724": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_03b_o_001.png", - "glow_frame": "gdh_01_1_03b_o_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2725": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_03b_s_001.png", - "glow_frame": "gdh_01_1_03b_s_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2726": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_04_001.png", - "glow_frame": "gdh_01_1_04_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2727": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_04_o_001.png", - "glow_frame": "gdh_01_1_04_o_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2728": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_04_s_001.png", - "glow_frame": "gdh_01_1_04_s_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2729": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_04b_001.png", - "glow_frame": "gdh_01_1_04b_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2730": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_04b_o_001.png", - "glow_frame": "gdh_01_1_04b_o_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2731": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_04b_s_001.png", - "glow_frame": "gdh_01_1_04b_s_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2732": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_05_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_05_001.png", - "glow_frame": "gdh_01_1_05_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2733": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_05_o_001.png", - "glow_frame": "gdh_01_1_05_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2734": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_05_s_001.png", - "glow_frame": "gdh_01_1_05_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2735": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_05b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_05b_001.png", - "glow_frame": "gdh_01_1_05b_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2736": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_05b_o_001.png", - "glow_frame": "gdh_01_1_05b_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.10000000149011612, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2737": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_05b_s_001.png", - "glow_frame": "gdh_01_1_05b_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2738": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_06_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_06_001.png", - "glow_frame": "gdh_01_1_06_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2739": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_06_o_001.png", - "glow_frame": "gdh_01_1_06_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2740": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_06_s_001.png", - "glow_frame": "gdh_01_1_06_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2741": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_06b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_06b_001.png", - "glow_frame": "gdh_01_1_06b_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2742": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_06b_o_001.png", - "glow_frame": "gdh_01_1_06b_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2743": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_06b_s_001.png", - "glow_frame": "gdh_01_1_06b_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.15000000596046448, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2744": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_07_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_07_001.png", - "glow_frame": "gdh_01_1_07_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2745": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_07b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_07b_001.png", - "glow_frame": "gdh_01_1_07b_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2746": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_08_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_08_001.png", - "glow_frame": "gdh_01_1_08_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2747": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_08b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_08b_001.png", - "glow_frame": "gdh_01_1_08b_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2748": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_09_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_09_001.png", - "glow_frame": "gdh_01_1_09_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2749": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_09b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_09b_001.png", - "glow_frame": "gdh_01_1_09b_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2750": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_10_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_10_001.png", - "glow_frame": "gdh_01_1_10_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2751": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_10b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_10b_001.png", - "glow_frame": "gdh_01_1_10b_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2752": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_11_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_11_001.png", - "glow_frame": "gdh_01_1_11_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2753": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_11_o_001.png", - "glow_frame": "gdh_01_1_11_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2754": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_11_s_001.png", - "glow_frame": "gdh_01_1_11_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2755": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_11b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_11b_001.png", - "glow_frame": "gdh_01_1_11b_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2756": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_11b_o_001.png", - "glow_frame": "gdh_01_1_11b_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2757": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_11b_s_001.png", - "glow_frame": "gdh_01_1_11b_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2758": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_12_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_12_001.png", - "glow_frame": "gdh_01_1_12_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2759": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_12_o_001.png", - "glow_frame": "gdh_01_1_12_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.15000000596046448, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2760": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_12_s_001.png", - "glow_frame": "gdh_01_1_12_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.15000000596046448, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2761": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_12b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_12b_001.png", - "glow_frame": "gdh_01_1_12b_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2762": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_12b_o_001.png", - "glow_frame": "gdh_01_1_12b_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2763": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_1_12b_s_001.png", - "glow_frame": "gdh_01_1_12b_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2764": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_01_001.png", - "glow_frame": "gdh_01_2_01_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2765": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_01b_001.png", - "glow_frame": "gdh_01_2_01b_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2766": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_02_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_02_001.png", - "glow_frame": "gdh_01_2_02_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2767": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_02b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_02b_001.png", - "glow_frame": "gdh_01_2_02b_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2768": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_03_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_03_001.png", - "glow_frame": "gdh_01_2_03_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2769": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_03b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_03b_001.png", - "glow_frame": "gdh_01_2_03b_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2770": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_04_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_04_001.png", - "glow_frame": "gdh_01_2_04_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2773": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_04b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_04b_001.png", - "glow_frame": "gdh_01_2_04b_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2776": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_05_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_05_001.png", - "glow_frame": "gdh_01_2_05_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2777": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_05_o_001.png", - "glow_frame": "gdh_01_2_05_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2778": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_05_s_001.png", - "glow_frame": "gdh_01_2_05_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2779": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_05b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_05b_001.png", - "glow_frame": "gdh_01_2_05b_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2780": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_05b_o_001.png", - "glow_frame": "gdh_01_2_05b_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.15000000596046448, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2781": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_05b_s_001.png", - "glow_frame": "gdh_01_2_05b_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2782": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_06_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_06_001.png", - "glow_frame": "gdh_01_2_06_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2783": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_06_o_001.png", - "glow_frame": "gdh_01_2_06_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2784": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_06_s_001.png", - "glow_frame": "gdh_01_2_06_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2785": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_06b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_06b_001.png", - "glow_frame": "gdh_01_2_06b_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.10000000149011612, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2786": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_06b_o_001.png", - "glow_frame": "gdh_01_2_06b_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.10000000149011612, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2787": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_06b_s_001.png", - "glow_frame": "gdh_01_2_06b_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2788": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_07_001.png", - "glow_frame": "gdh_01_2_07_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2789": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_07b_001.png", - "glow_frame": "gdh_01_2_07b_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2790": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_08_001.png", - "glow_frame": "gdh_01_2_08_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2791": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_08b_001.png", - "glow_frame": "gdh_01_2_08b_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2792": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_09_001.png", - "glow_frame": "gdh_01_2_09_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2793": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_09b_001.png", - "glow_frame": "gdh_01_2_09b_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2794": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_10_001.png", - "glow_frame": "gdh_01_2_10_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2795": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_10b_001.png", - "glow_frame": "gdh_01_2_10b_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2796": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_11_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_11_001.png", - "glow_frame": "gdh_01_2_11_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.10000000149011612, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2797": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_11_o_001.png", - "glow_frame": "gdh_01_2_11_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2798": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_11_s_001.png", - "glow_frame": "gdh_01_2_11_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2799": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_11b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_11b_001.png", - "glow_frame": "gdh_01_2_11b_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2800": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_11b_o_001.png", - "glow_frame": "gdh_01_2_11b_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2801": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_11b_s_001.png", - "glow_frame": "gdh_01_2_11b_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2802": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_12_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_12_001.png", - "glow_frame": "gdh_01_2_12_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2803": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_12_o_001.png", - "glow_frame": "gdh_01_2_12_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2804": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_12_s_001.png", - "glow_frame": "gdh_01_2_12_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2805": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_12b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_12b_001.png", - "glow_frame": "gdh_01_2_12b_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.0833333358168602, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2806": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_12b_o_001.png", - "glow_frame": "gdh_01_2_12b_o_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2807": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_12b_s_001.png", - "glow_frame": "gdh_01_2_12b_s_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.10000000149011612, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2808": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_01b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_02_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2809": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_09_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_10b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2810": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_12b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2811": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_05b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2812": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_12b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_05b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2813": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_01b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_02_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_09_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_10b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2814": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_01_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_02_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_12_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2815": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_01b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_02b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2816": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_09_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_10_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_11b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_12b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2817": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_09b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_10b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_05b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_06b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2818": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_01_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_02b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_12_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2819": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_09b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_10_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_11b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_12b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_05b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_06b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2820": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_01_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_02_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_09_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_10_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_11b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_12_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2821": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_01b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_02b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_09b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_10b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_06b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2822": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_1_01_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_02b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_09b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_10_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_06b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_11b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_12_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_1_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_1_001.png", - "glow_frame": "gdh_01_1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2823": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_02_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2824": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_09_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_10b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2825": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_11b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_12_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2826": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_06b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2827": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_11b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_12_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_06b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2828": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_02_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_09_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_10b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2829": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_02_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_11b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_12b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2830": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_02b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_05b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_06b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2831": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_09_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_10_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_12_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2832": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_09b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_10b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2833": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_02b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_11b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_12b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_05b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_06b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2834": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_09b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_10_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_12_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_05_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2835": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_02_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_09_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_10_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_12b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2836": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_02b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_09b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_10b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_05b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2837": { - "can_color": true, - "children": [ - { - "frame": "gdh_01_2_01_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_02b_001.png", - "localDy": 14.799999237060547, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_09b_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_10_001.png", - "localDy": -14.800000190734863, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_05b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_06_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_11_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_12b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_01_2_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_01_2_001.png", - "glow_frame": "gdh_01_2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2838": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_1_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_1_001.png", - "glow_frame": "gdh_02_1_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2839": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_2_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_2_001.png", - "glow_frame": "gdh_02_2_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2840": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_3_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_3_001.png", - "glow_frame": "gdh_02_3_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2841": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_4_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_4_001.png", - "glow_frame": "gdh_02_4_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2842": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_1b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_1b_001.png", - "glow_frame": "gdh_02_1b_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2843": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_2b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_2b_001.png", - "glow_frame": "gdh_02_2b_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2844": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_3b_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_3b_001.png", - "glow_frame": "gdh_02_3b_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2845": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_4_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_4b_001.png", - "glow_frame": "gdh_02_4b_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2846": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_1c_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_1c_001.png", - "glow_frame": "gdh_02_1c_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2847": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_2_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_2c_001.png", - "glow_frame": "gdh_02_2c_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2848": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_3_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_3c_001.png", - "glow_frame": "gdh_02_3c_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2849": { - "can_color": true, - "children": [ - { - "frame": "gdh_02_4_2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gdh_02_4c_001.png", - "glow_frame": "gdh_02_4c_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2850": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_5_001.png", - "glow_frame": "gdh_02_5_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2851": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_5b_001.png", - "glow_frame": "gdh_02_5b_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2852": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_01_001.png", - "glow_frame": "gdh_02_o_01_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2853": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_02_001.png", - "glow_frame": "gdh_02_o_02_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2854": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_03_001.png", - "glow_frame": "gdh_02_o_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.18333333730697632, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2855": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_04_001.png", - "glow_frame": "gdh_02_o_04_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2856": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_05_001.png", - "glow_frame": "gdh_02_o_05_glow_001.png", - "gridH": 0.4833333194255829, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2857": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_06_001.png", - "glow_frame": "gdh_02_o_06_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2858": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_07_001.png", - "glow_frame": "gdh_02_o_07_glow_001.png", - "gridH": 0.0833333358168602, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2859": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_08_001.png", - "glow_frame": "gdh_02_o_08_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2860": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_09_001.png", - "glow_frame": "gdh_02_o_09_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2861": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_10_001.png", - "glow_frame": "gdh_02_o_10_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.18333333730697632, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2862": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_11_001.png", - "glow_frame": "gdh_02_o_11_glow_001.png", - "gridH": 0.0833333358168602, - "gridW": 0.0833333358168602, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2863": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_02_o_12_001.png", - "glow_frame": "gdh_02_o_12_glow_001.png", - "gridH": 0.4833333194255829, - "gridW": 0.18333333730697632, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -2, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -2 - }, - "2864": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_37_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_37_002.png", - "glow_frame": "gj22_anim_37_002.png", - "gridH": 0.7666666507720947, - "gridW": 1.4166666269302368, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2865": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_38_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_38_002.png", - "glow_frame": "gj22_anim_38_002.png", - "gridH": 0.7666666507720947, - "gridW": 0.6666666865348816, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2866": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "blockOutline_01_001.png", - "glow_frame": "blockOutline_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2867": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_39_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_36_007.png", - "glow_frame": "gj22_anim_36_007.png", - "gridH": 0.800000011920929, - "gridW": 1.2166666984558105, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2868": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gj22_anim_39b_003.png", - "glow_frame": "gj22_anim_39b_003.png", - "gridH": 0.13333334028720856, - "gridW": 0.4833333194255829, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2869": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_40_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_40_013.png", - "glow_frame": "gj22_anim_40_013.png", - "gridH": 0.15000000596046448, - "gridW": 0.18333333730697632, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2870": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gj22_anim_40b_006.png", - "glow_frame": "gj22_anim_40b_006.png", - "gridH": 0.0833333358168602, - "gridW": 0.15000000596046448, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2871": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_41_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_41_008.png", - "glow_frame": "gj22_anim_41_008.png", - "gridH": 0.3499999940395355, - "gridW": 0.5833333134651184, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2872": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_42_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_42_012.png", - "glow_frame": "gj22_anim_42_012.png", - "gridH": 1, - "gridW": 0.5666666626930237, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2873": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_43_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_43_002.png", - "glow_frame": "gj22_anim_43_002.png", - "gridH": 0.550000011920929, - "gridW": 0.8666666746139526, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2874": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_44_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_44_001.png", - "glow_frame": "gj22_anim_44_glow_001.png", - "gridH": 0.38333332538604736, - "gridW": 0.75, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2875": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_45_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_45_003.png", - "glow_frame": "gj22_anim_45_003.png", - "gridH": 0.06666667014360428, - "gridW": 0.20000000298023224, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2876": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_46_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_46_008.png", - "glow_frame": "gj22_anim_46_008.png", - "gridH": 0.4000000059604645, - "gridW": 1.0166666507720947, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2877": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_47_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_47_009.png", - "glow_frame": "gj22_anim_47_009.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2878": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_48_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_48_002.png", - "glow_frame": "gj22_anim_48_002.png", - "gridH": 0.3166666626930237, - "gridW": 0.3166666626930237, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2879": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_49_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_49_001.png", - "glow_frame": "gj22_anim_49_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 0.3499999940395355, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2880": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_50_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_50_007.png", - "glow_frame": "gj22_anim_50_007.png", - "gridH": 0.10000000149011612, - "gridW": 0.21666666865348816, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2881": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_51_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_51_009.png", - "glow_frame": "gj22_anim_51_009.png", - "gridH": 0.6833333373069763, - "gridW": 0.8833333253860474, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2882": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_52_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_52_007.png", - "glow_frame": "gj22_anim_52_007.png", - "gridH": 0.1666666716337204, - "gridW": 0.25, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2883": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_53_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_53_005.png", - "glow_frame": "gj22_anim_53_005.png", - "gridH": 0.20000000298023224, - "gridW": 1.350000023841858, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2884": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_54_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_54_003.png", - "glow_frame": "gj22_anim_54_003.png", - "gridH": 0.4333333373069763, - "gridW": 0.25, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2885": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_55_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_55_008.png", - "glow_frame": "gj22_anim_55_008.png", - "gridH": 0.20000000298023224, - "gridW": 0.2666666805744171, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2886": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_56_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_56_001.png", - "glow_frame": "gj22_anim_56_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 2.0166666507720947, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2887": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_57_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_57_001.png", - "glow_frame": "gj22_anim_57_glow_001.png", - "gridH": 0.5, - "gridW": 1.9166666269302368, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2888": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_58_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_58_002.png", - "glow_frame": "gj22_anim_58_002.png", - "gridH": 0.4333333373069763, - "gridW": 2, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2889": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_59_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_59_003.png", - "glow_frame": "gj22_anim_59_003.png", - "gridH": 0.4833333194255829, - "gridW": 1.9833333492279053, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2890": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_60_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_60_005.png", - "glow_frame": "gj22_anim_60_005.png", - "gridH": 0.5, - "gridW": 1.9833333492279053, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2891": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_61_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_61_004.png", - "glow_frame": "gj22_anim_61_004.png", - "gridH": 0.5166666507720947, - "gridW": 2, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2892": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_62_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "gj22_anim_62_002.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_62_001.png", - "glow_frame": "gj22_anim_62_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 1.7999999523162842, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2893": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_63_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "gj22_anim_63_002.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_63_001.png", - "glow_frame": "gj22_anim_63_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 0.4000000059604645, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2894": { - "can_color": true, - "children": [ - { - "frame": "gj22_anim_64_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "gj22_anim_64_008.png", - "glow_frame": "gj22_anim_64_008.png", - "gridH": 0.3499999940395355, - "gridW": 2.0333333015441895, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 2, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2895": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "smartBlock01_001.png", - "glow_frame": "smartBlock01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2896": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "smartBlock02_001.png", - "glow_frame": "smartBlock02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2897": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": "smartBlock03_001.png", - "glow_frame": "smartBlock03_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2899": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2900": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2901": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2902": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_15_front_001.png", - "glow_frame": "portal_15_front_glow_001.png", - "gridH": 3, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "2903": { - "can_color": true, - "children": [ - { - "frame": null, - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1004, - "default_detail_color_channel": 1, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "default_z_layer": 5, - "default_z_order": 0 - }, - "2904": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2905": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2907": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2909": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2910": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2911": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2912": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2913": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2914": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2915": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2916": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2917": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2919": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2920": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2921": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2922": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2923": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2924": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2925": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "2926": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "portal_19_front_001.png", - "glow_frame": "portal_19_front_glow_001.png", - "gridH": 2.5166666507720947, - "gridW": 0.7916666865348816, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "portal", - "sub": "gravity_toggle", - "portalParticle": true, - "portalParticleColor": 9699539, - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "2927": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_07_o_001.png", - "glow_frame": "gdh_01_2_07_o_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2928": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_07_s_001.png", - "glow_frame": "gdh_01_2_07_s_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2929": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_07b_o_001.png", - "glow_frame": "gdh_01_2_07b_o_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2930": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_07b_s_001.png", - "glow_frame": "gdh_01_2_07b_s_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2931": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_08_o_001.png", - "glow_frame": "gdh_01_2_08_o_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2932": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_08_s_001.png", - "glow_frame": "gdh_01_2_08_s_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2933": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_08b_o_001.png", - "glow_frame": "gdh_01_2_08b_o_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2934": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_08b_s_001.png", - "glow_frame": "gdh_01_2_08b_s_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2935": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_09_o_001.png", - "glow_frame": "gdh_01_2_09_o_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2936": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_09_s_001.png", - "glow_frame": "gdh_01_2_09_s_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2937": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_09b_o_001.png", - "glow_frame": "gdh_01_2_09b_o_glow_001.png", - "gridH": 0.15000000596046448, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2938": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_09b_s_001.png", - "glow_frame": "gdh_01_2_09b_s_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2939": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_10_o_001.png", - "glow_frame": "gdh_01_2_10_o_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2940": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_10_s_001.png", - "glow_frame": "gdh_01_2_10_s_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2941": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_10b_o_001.png", - "glow_frame": "gdh_01_2_10b_o_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2942": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_01_2_10b_s_001.png", - "glow_frame": "gdh_01_2_10b_s_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.5166666507720947, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": -5 - }, - "2943": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_03_1_b5_001.png", - "glow_frame": "gdh_03_1_b5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2944": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b4_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b4_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_001.png", - "glow_frame": "gdh_03_1_b5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2945": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b1_001.png", - "localDy": 7.5, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b1_001.png", - "localDy": -7.5, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b1_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_001.png", - "glow_frame": "gdh_03_1_b5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2946": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b4_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b1_001.png", - "localDy": -7.5, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b1_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_001.png", - "glow_frame": "gdh_03_1_b5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2947": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b2_001.png", - "localDy": 7.5, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_001.png", - "localDy": -7.5, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_001.png", - "glow_frame": "gdh_03_1_b5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2948": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b2_001.png", - "localDy": 7.5, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_001.png", - "glow_frame": "gdh_03_1_b5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2949": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b2_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_001.png", - "localDy": -7.5, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_001.png", - "glow_frame": "gdh_03_1_b5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2950": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b3_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_001.png", - "glow_frame": "gdh_03_1_b5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2951": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b3_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_001.png", - "glow_frame": "gdh_03_1_b5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2952": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_03_1_b5_s_001.png", - "glow_frame": "gdh_03_1_b5_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2953": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b4_s_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b4_s_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_s_001.png", - "glow_frame": "gdh_03_1_b5_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2954": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b1_s_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b1_s_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b1_s_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_s_001.png", - "glow_frame": "gdh_03_1_b5_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2955": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b4_s_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b1_s_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b1_s_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_s_001.png", - "glow_frame": "gdh_03_1_b5_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2956": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_s_001.png", - "glow_frame": "gdh_03_1_b5_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2957": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": 3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_s_001.png", - "glow_frame": "gdh_03_1_b5_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2958": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": -3.75, - "tint": 65280, - "z": -1 - }, - { - "frame": "gdh_03_1_b2_s_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_s_001.png", - "glow_frame": "gdh_03_1_b5_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2959": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b3_s_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_s_001.png", - "glow_frame": "gdh_03_1_b5_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2960": { - "can_color": true, - "children": [ - { - "frame": "gdh_03_1_b3_s_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_03_1_b5_s_001.png", - "glow_frame": "gdh_03_1_b5_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": -5, - "default_z_layer": -1, - "default_z_order": -5 - }, - "2961": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c1_001.png", - "glow_frame": "gdh_03_1_c1_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2962": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c2_001.png", - "glow_frame": "gdh_03_1_c2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2963": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c3_001.png", - "glow_frame": "gdh_03_1_c3_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2964": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c4_001.png", - "glow_frame": "gdh_03_1_c4_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 0.9666666388511658, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2965": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c5_001.png", - "glow_frame": "gdh_03_1_c5_glow_001.png", - "gridH": 0.05000000074505806, - "gridW": 0.800000011920929, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2966": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c6_001.png", - "glow_frame": "gdh_03_1_c6_glow_001.png", - "gridH": 0.6499999761581421, - "gridW": 0.6499999761581421, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2967": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c7_001.png", - "glow_frame": "gdh_03_1_c7_glow_001.png", - "gridH": 0.7833333611488342, - "gridW": 1.5666667222976685, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2968": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c1_s_001.png", - "glow_frame": "gdh_03_1_c1_s_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2969": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c2_s_001.png", - "glow_frame": "gdh_03_1_c2_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2970": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c3_s_001.png", - "glow_frame": "gdh_03_1_c3_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2971": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c4_s_001.png", - "glow_frame": "gdh_03_1_c4_s_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2972": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_03_1_c5_s_001.png", - "glow_frame": "gdh_03_1_c5_s_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.36666667461395264, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 0 - }, - "2973": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o1_001.png", - "glow_frame": "gdh_03_1_o1_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2974": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o2_001.png", - "glow_frame": "gdh_03_1_o2_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2975": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o3_001.png", - "glow_frame": "gdh_03_1_o3_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2976": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o4_001.png", - "glow_frame": "gdh_03_1_o4_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 0.9833333492279053, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2977": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o5_001.png", - "glow_frame": "gdh_03_1_o5_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2978": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o6_001.png", - "glow_frame": "gdh_03_1_o6_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2979": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o7_001.png", - "glow_frame": "gdh_03_1_o7_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 0.9833333492279053, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2980": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o8_001.png", - "glow_frame": "gdh_03_1_o8_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2981": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o9_001.png", - "glow_frame": "gdh_03_1_o9_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2982": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o10_001.png", - "glow_frame": "gdh_03_1_o10_glow_001.png", - "gridH": 0.9833333492279053, - "gridW": 1.9833333492279053, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2983": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o1_s_001.png", - "glow_frame": "gdh_03_1_o1_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2984": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o2_s_001.png", - "glow_frame": "gdh_03_1_o2_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2985": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o3_s_001.png", - "glow_frame": "gdh_03_1_o3_s_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2986": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "gdh_03_1_o4_s_001.png", - "glow_frame": "gdh_03_1_o4_s_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2987": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_01_001.png", - "glow_frame": "gdh_g_01_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2988": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_02_001.png", - "glow_frame": "gdh_g_01_02_glow_001.png", - "gridH": 0.9166666865348816, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2989": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_03_001.png", - "glow_frame": "gdh_g_01_03_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2990": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_04_001.png", - "glow_frame": "gdh_g_01_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2991": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_05_001.png", - "glow_frame": "gdh_g_01_05_glow_001.png", - "gridH": 1.0166666507720947, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2992": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_06_001.png", - "glow_frame": "gdh_g_01_06_glow_001.png", - "gridH": 1.0166666507720947, - "gridW": 0.5666666626930237, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2993": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_07_001.png", - "glow_frame": "gdh_g_01_07_glow_001.png", - "gridH": 0.7833333611488342, - "gridW": 0.25, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2994": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_08_001.png", - "glow_frame": "gdh_g_01_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2995": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_09_001.png", - "glow_frame": "gdh_g_01_09_glow_001.png", - "gridH": 0.9333333373069763, - "gridW": 0.9833333492279053, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2996": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_10_001.png", - "glow_frame": "gdh_g_01_10_glow_001.png", - "gridH": 1, - "gridW": 2, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2997": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_11_001.png", - "glow_frame": "gdh_g_01_11_glow_001.png", - "gridH": 0.9666666388511658, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2998": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_g_01_12_001.png", - "glow_frame": "gdh_g_01_12_glow_001.png", - "gridH": 0.550000011920929, - "gridW": 0.6000000238418579, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 5 - }, - "2999": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3000": { - "can_color": true, - "children": [ - { - "frame": "d_animWave_01b_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "d_animWave_01b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "d_animWave_01b_001.png", - "glow_frame": "d_animWave_01b_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 1, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3001": { - "can_color": true, - "children": [ - { - "frame": "d_animWave_02b_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "d_animWave_02b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "d_animWave_02b_001.png", - "glow_frame": "d_animWave_02b_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 1, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3002": { - "can_color": true, - "children": [ - { - "frame": "d_animWave_03b_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - }, - { - "frame": "d_animWave_03b_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "d_animWave_03b_001.png", - "glow_frame": "d_animWave_03b_glow_001.png", - "gridH": 0.28333333134651184, - "gridW": 1, - "spritesheet": "FireSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3004": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "spiderRing_001.png", - "glow_frame": "spiderRing_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 12, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "3005": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "spiderBump_001.png", - "glow_frame": "spiderBump_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.949999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 12, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 12 - }, - "3006": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3007": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3008": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3009": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3010": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3011": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3012": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3013": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3014": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3015": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3016": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3017": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3018": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3019": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3020": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3021": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3022": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3023": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3024": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3027": { - "can_color": false, - "children": [ - { - "frame": "teleportRing_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 0, - "default_detail_color_channel": 1, - "frame": "teleportRing_001.png", - "glow_frame": "teleportRing_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": 12, - "default_z_layer": 3, - "default_z_order": 12 - }, - "3029": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3030": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3031": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3032": { - "can_color": false, - "default_base_color_channel": 0, - "frame": "keyframeIcon_001.png", - "glow_frame": "keyframeIcon_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 0.699999988079071, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3033": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3034": { - "can_color": true, - "children": [ - { - "frame": "gdh_spike_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_spike_01_001.png", - "glow_frame": "gdh_spike_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "hazard", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3035": { - "can_color": true, - "children": [ - { - "frame": "gdh_spike_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_spike_02_001.png", - "glow_frame": "gdh_spike_02_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.6666666865348816, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "hazard", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3036": { - "can_color": true, - "children": [ - { - "frame": "gdh_spike_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_spike_03_001.png", - "glow_frame": "gdh_spike_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "hazard", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3037": { - "can_color": true, - "children": [ - { - "frame": "gdh_spike_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_spike_04_001.png", - "glow_frame": "gdh_spike_04_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "hazard", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3038": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_spike_01_color2_001.png", - "glow_frame": "gdh_spike_01_color2_glow_001.png", - "gridH": 0.8500000238418579, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3039": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_spike_02_color2_001.png", - "glow_frame": "gdh_spike_02_color2_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3040": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_spike_03_color2_001.png", - "glow_frame": "gdh_spike_03_color2_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.18333333730697632, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3041": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_spike_04_color2_001.png", - "glow_frame": "gdh_spike_04_color2_glow_001.png", - "gridH": 0.18333333730697632, - "gridW": 0.10000000149011612, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3042": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_spike_01_g_001.png", - "glow_frame": "gdh_spike_01_g_glow_001.png", - "gridH": 0.8166666626930237, - "gridW": 0.800000011920929, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3043": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_spike_02_g_001.png", - "glow_frame": "gdh_spike_02_g_glow_001.png", - "gridH": 0.5166666507720947, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3044": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_spike_03_g_001.png", - "glow_frame": "gdh_spike_03_g_glow_001.png", - "gridH": 0.3499999940395355, - "gridW": 0.3333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3045": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_spike_04_g_001.png", - "glow_frame": "gdh_spike_04_g_glow_001.png", - "gridH": 0.18333333730697632, - "gridW": 0.1666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3046": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_spike_01_g2_001.png", - "glow_frame": "gdh_spike_01_g2_glow_001.png", - "gridH": 0.949999988079071, - "gridW": 0.9333333373069763, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3047": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_spike_02_g2_001.png", - "glow_frame": "gdh_spike_02_g2_glow_001.png", - "gridH": 0.6166666746139526, - "gridW": 0.6166666746139526, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3048": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_spike_03_g2_001.png", - "glow_frame": "gdh_spike_03_g2_glow_001.png", - "gridH": 0.44999998807907104, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3049": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "gdh_spike_04_g2_001.png", - "glow_frame": "gdh_spike_04_g2_glow_001.png", - "gridH": 0.28333333134651184, - "gridW": 0.28333333134651184, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3050": { - "can_color": true, - "children": [ - { - "frame": "gdh_chain_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_chain_01_001.png", - "glow_frame": "gdh_chain_01_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3051": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_chain_01_color2_001.png", - "glow_frame": "gdh_chain_01_color2_glow_001.png", - "gridH": 0.25, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3052": { - "can_color": true, - "children": [ - { - "frame": "gdh_chain_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_chain_02_001.png", - "glow_frame": "gdh_chain_02_glow_001.png", - "gridH": 0.7333333492279053, - "gridW": 0.23333333432674408, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 7, - "default_z_layer": 1, - "default_z_order": 7 - }, - "3053": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_chain_02_color2_001.png", - "glow_frame": "gdh_chain_02_color2_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.13333334028720856, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3054": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_01_001.png", - "glow_frame": "gdh_platform1_01_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3055": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_02_001.png", - "glow_frame": "gdh_platform1_02_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3056": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_03_001.png", - "glow_frame": "gdh_platform1_03_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3057": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_04_001.png", - "glow_frame": "gdh_platform1_04_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3058": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_05_001.png", - "glow_frame": "gdh_platform1_05_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3059": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_06_001.png", - "glow_frame": "gdh_platform1_06_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3060": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_07_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_07_001.png", - "glow_frame": "gdh_platform1_07_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3061": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_08_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_08_001.png", - "glow_frame": "gdh_platform1_08_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3062": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_09_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_09_001.png", - "glow_frame": "gdh_platform1_09_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3063": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_10_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_10_001.png", - "glow_frame": "gdh_platform1_10_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3064": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_11_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_11_001.png", - "glow_frame": "gdh_platform1_11_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3065": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_12_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_12_001.png", - "glow_frame": "gdh_platform1_12_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3066": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_13_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_13_001.png", - "glow_frame": "gdh_platform1_13_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3067": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_01_color2_001.png", - "glow_frame": "gdh_platform1_01_color2_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3068": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_02_color2_001.png", - "glow_frame": "gdh_platform1_02_color2_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3069": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_03_color2_001.png", - "glow_frame": "gdh_platform1_03_color2_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3070": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_04_color2_001.png", - "glow_frame": "gdh_platform1_04_color2_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4166666567325592, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3071": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_05_color2_001.png", - "glow_frame": "gdh_platform1_05_color2_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3072": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_06_color2_001.png", - "glow_frame": "gdh_platform1_06_color2_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.4333333373069763, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3073": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_07_color2_001.png", - "glow_frame": "gdh_platform1_07_color2_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3074": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_08_color2_001.png", - "glow_frame": "gdh_platform1_08_color2_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.4000000059604645, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3075": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_09_color2_001.png", - "glow_frame": "gdh_platform1_09_color2_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3076": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_10_color2_001.png", - "glow_frame": "gdh_platform1_10_color2_glow_001.png", - "gridH": 0.11666666716337204, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3077": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_11_color2_001.png", - "glow_frame": "gdh_platform1_11_color2_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3078": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_12_color2_001.png", - "glow_frame": "gdh_platform1_12_color2_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3079": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_13_color2_001.png", - "glow_frame": "gdh_platform1_13_color2_glow_001.png", - "gridH": 0.5, - "gridW": 0.11666666716337204, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3080": { - "can_color": true, - "children": [ - { - "frame": "gdh_platformArt_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "gdh_platformArt_01_001.png", - "glow_frame": "gdh_platformArt_01_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3081": { - "can_color": true, - "children": [ - { - "frame": "gdh_platformArt_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "gdh_platformArt_02_001.png", - "glow_frame": "gdh_platformArt_02_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3082": { - "can_color": true, - "children": [ - { - "frame": "gdh_platformArt_03_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "gdh_platformArt_03_001.png", - "glow_frame": "gdh_platformArt_03_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3083": { - "can_color": true, - "children": [ - { - "frame": "gdh_platformArt_04_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "gdh_platformArt_04_001.png", - "glow_frame": "gdh_platformArt_04_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3084": { - "can_color": true, - "children": [ - { - "frame": "gdh_platformArt_05_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "gdh_platformArt_05_001.png", - "glow_frame": "gdh_platformArt_05_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3085": { - "can_color": true, - "children": [ - { - "frame": "gdh_platformArt_06_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 2, - "default_detail_color_channel": 1, - "frame": "gdh_platformArt_06_001.png", - "glow_frame": "gdh_platformArt_06_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3086": { - "can_color": true, - "children": [ - { - "frame": "gdh_crystal_01_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_crystal_01_001.png", - "glow_frame": "gdh_crystal_01_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 0.9333333373069763, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3087": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_crystal_01_color2_001.png", - "glow_frame": "gdh_crystal_01_color2_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 1.0333333015441895, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3088": { - "can_color": true, - "children": [ - { - "frame": "gdh_crystal_02_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_crystal_02_001.png", - "glow_frame": "gdh_crystal_02_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.9666666388511658, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3089": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_crystal_02_color2_001.png", - "glow_frame": "gdh_crystal_02_color2_glow_001.png", - "gridH": 0.75, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 8, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 8 - }, - "3090": { - "can_color": true, - "children": [ - { - "frame": "gdh_platform1_14_color_001.png", - "localDy": 0, - "tint": 52224, - "z": -100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1, - "frame": "gdh_platform1_14_001.png", - "glow_frame": "gdh_platform1_14_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 5, - "default_z_layer": 1, - "default_z_order": 5 - }, - "3091": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "gdh_platform1_14_color2_001.png", - "glow_frame": "gdh_platform1_14_color2_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 6, - "default_detail_color_channel": -1, - "default_z_layer": 1, - "default_z_order": 6 - }, - "3092": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3093": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3094": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3095": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3096": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3097": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3101": { - "can_color": true, - "children": [ - { - "frame": "pixelart_601_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_601_001.png", - "glow_frame": "pixelart_601_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3102": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_602_001.png", - "glow_frame": "pixelart_602_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3103": { - "can_color": true, - "children": [ - { - "frame": "pixelart_603_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_603_001.png", - "glow_frame": "pixelart_603_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3104": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_604_001.png", - "glow_frame": "pixelart_604_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3105": { - "can_color": true, - "children": [ - { - "frame": "pixelart_605_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_605_001.png", - "glow_frame": "pixelart_605_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3106": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_606_001.png", - "glow_frame": "pixelart_606_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3107": { - "can_color": true, - "children": [ - { - "frame": "pixelart_607_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_607_001.png", - "glow_frame": "pixelart_607_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3108": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_608_001.png", - "glow_frame": "pixelart_608_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3109": { - "can_color": true, - "children": [ - { - "frame": "pixelart_609_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_609_001.png", - "glow_frame": "pixelart_609_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3110": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_610_001.png", - "glow_frame": "pixelart_610_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3111": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_611_001.png", - "glow_frame": "pixelart_611_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3112": { - "can_color": true, - "children": [ - { - "frame": "pixelart_612_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_612_001.png", - "glow_frame": "pixelart_612_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3113": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_613_001.png", - "glow_frame": "pixelart_613_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3114": { - "can_color": true, - "children": [ - { - "frame": "pixelart_614_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_614_001.png", - "glow_frame": "pixelart_614_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3115": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_615_001.png", - "glow_frame": "pixelart_615_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3116": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_616_001.png", - "glow_frame": "pixelart_616_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3117": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_617_001.png", - "glow_frame": "pixelart_617_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3118": { - "can_color": true, - "children": [ - { - "frame": "pixelart_618_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_618_001.png", - "glow_frame": "pixelart_618_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3119": { - "can_color": true, - "children": [ - { - "frame": "pixelart_619_color_004.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_619_004.png", - "glow_frame": "pixelart_619_004.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3120": { - "can_color": true, - "children": [ - { - "frame": "pixelart_620_color_003.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_620_003.png", - "glow_frame": "pixelart_620_003.png", - "gridH": 0.10000000149011612, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3121": { - "can_color": true, - "children": [ - { - "frame": "pixelart_621_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_621_002.png", - "glow_frame": "pixelart_621_002.png", - "gridH": 0.10000000149011612, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3122": { - "can_color": true, - "children": [ - { - "frame": "pixelart_622_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_622_001.png", - "glow_frame": "pixelart_622_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3123": { - "can_color": true, - "children": [ - { - "frame": "pixelart_623_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_623_001.png", - "glow_frame": "pixelart_623_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3124": { - "can_color": true, - "children": [ - { - "frame": "pixelart_624_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_624_001.png", - "glow_frame": "pixelart_624_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3125": { - "can_color": true, - "children": [ - { - "frame": "pixelart_625_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_625_001.png", - "glow_frame": "pixelart_625_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3126": { - "can_color": true, - "children": [ - { - "frame": "pixelart_626_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_626_001.png", - "glow_frame": "pixelart_626_glow_001.png", - "gridH": 0.5, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3127": { - "can_color": true, - "children": [ - { - "frame": "pixelart_627_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_627_001.png", - "glow_frame": "pixelart_627_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3128": { - "can_color": true, - "children": [ - { - "frame": "pixelart_628_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_628_001.png", - "glow_frame": "pixelart_628_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3129": { - "can_color": true, - "children": [ - { - "frame": "pixelart_629_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_629_001.png", - "glow_frame": "pixelart_629_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3130": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_630_001.png", - "glow_frame": "pixelart_630_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3131": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_631_001.png", - "glow_frame": "pixelart_631_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3132": { - "can_color": true, - "children": [ - { - "frame": "pixelart_632_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_632_001.png", - "glow_frame": "pixelart_632_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3133": { - "can_color": true, - "children": [ - { - "frame": "pixelart_633_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_633_001.png", - "glow_frame": "pixelart_633_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3134": { - "can_color": true, - "children": [ - { - "frame": "pixelart_634_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_634_001.png", - "glow_frame": "pixelart_634_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3135": { - "can_color": true, - "children": [ - { - "frame": "pixelart_635_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_635_001.png", - "glow_frame": "pixelart_635_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3136": { - "can_color": true, - "children": [ - { - "frame": "pixelart_636_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_636_001.png", - "glow_frame": "pixelart_636_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3137": { - "can_color": true, - "children": [ - { - "frame": "pixelart_637_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_637_001.png", - "glow_frame": "pixelart_637_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3138": { - "can_color": true, - "children": [ - { - "frame": "pixelart_638_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_638_001.png", - "glow_frame": "pixelart_638_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3139": { - "can_color": true, - "children": [ - { - "frame": "pixelart_639_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_639_001.png", - "glow_frame": "pixelart_639_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3140": { - "can_color": true, - "children": [ - { - "frame": "pixelart_640_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_640_001.png", - "glow_frame": "pixelart_640_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3141": { - "can_color": true, - "children": [ - { - "frame": "pixelart_641_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_641_001.png", - "glow_frame": "pixelart_641_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3142": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_642_001.png", - "glow_frame": "pixelart_642_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3143": { - "can_color": true, - "children": [ - { - "frame": "pixelart_643_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_643_001.png", - "glow_frame": "pixelart_643_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3144": { - "can_color": true, - "children": [ - { - "frame": "pixelart_644_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_644_001.png", - "glow_frame": "pixelart_644_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3145": { - "can_color": true, - "children": [ - { - "frame": "pixelart_645_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_645_001.png", - "glow_frame": "pixelart_645_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3146": { - "can_color": true, - "children": [ - { - "frame": "pixelart_646_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_646_001.png", - "glow_frame": "pixelart_646_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3147": { - "can_color": true, - "children": [ - { - "frame": "pixelart_647_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_647_001.png", - "glow_frame": "pixelart_647_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3148": { - "can_color": true, - "children": [ - { - "frame": "pixelart_648_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_648_001.png", - "glow_frame": "pixelart_648_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3149": { - "can_color": true, - "children": [ - { - "frame": "pixelart_649_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_649_001.png", - "glow_frame": "pixelart_649_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3150": { - "can_color": true, - "children": [ - { - "frame": "pixelart_650_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_650_001.png", - "glow_frame": "pixelart_650_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3151": { - "can_color": true, - "children": [ - { - "frame": "pixelart_651_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_651_001.png", - "glow_frame": "pixelart_651_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3152": { - "can_color": true, - "children": [ - { - "frame": "pixelart_652_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_652_001.png", - "glow_frame": "pixelart_652_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3153": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_653_001.png", - "glow_frame": "pixelart_653_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3154": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_654_001.png", - "glow_frame": "pixelart_654_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3155": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_655_001.png", - "glow_frame": "pixelart_655_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3156": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_656_001.png", - "glow_frame": "pixelart_656_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3157": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_657_001.png", - "glow_frame": "pixelart_657_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3158": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_658_001.png", - "glow_frame": "pixelart_658_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3159": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_659_001.png", - "glow_frame": "pixelart_659_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3160": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_660_001.png", - "glow_frame": "pixelart_660_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3161": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_661_001.png", - "glow_frame": "pixelart_661_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3162": { - "can_color": true, - "children": [ - { - "frame": "pixelart_662_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_662_001.png", - "glow_frame": "pixelart_662_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3163": { - "can_color": true, - "children": [ - { - "frame": "pixelart_663_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_663_001.png", - "glow_frame": "pixelart_663_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3164": { - "can_color": true, - "children": [ - { - "frame": "pixelart_664_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_664_001.png", - "glow_frame": "pixelart_664_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3165": { - "can_color": true, - "children": [ - { - "frame": "pixelart_665_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_665_001.png", - "glow_frame": "pixelart_665_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3166": { - "can_color": true, - "children": [ - { - "frame": "pixelart_666_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_666_001.png", - "glow_frame": "pixelart_666_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3167": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_667_001.png", - "glow_frame": "pixelart_667_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3168": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_668_001.png", - "glow_frame": "pixelart_668_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3169": { - "can_color": true, - "children": [ - { - "frame": "pixelart_669_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_669_001.png", - "glow_frame": "pixelart_669_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3170": { - "can_color": true, - "children": [ - { - "frame": "pixelart_670_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_670_001.png", - "glow_frame": "pixelart_670_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3171": { - "can_color": true, - "children": [ - { - "frame": "pixelart_671_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_671_001.png", - "glow_frame": "pixelart_671_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3172": { - "can_color": true, - "children": [ - { - "frame": "pixelart_672_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_672_001.png", - "glow_frame": "pixelart_672_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3173": { - "can_color": true, - "children": [ - { - "frame": "pixelart_673_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_673_001.png", - "glow_frame": "pixelart_673_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3174": { - "can_color": true, - "children": [ - { - "frame": "pixelart_674_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_674_001.png", - "glow_frame": "pixelart_674_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3175": { - "can_color": true, - "children": [ - { - "frame": "pixelart_675_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_675_001.png", - "glow_frame": "pixelart_675_glow_001.png", - "gridH": 0.5, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3176": { - "can_color": true, - "children": [ - { - "frame": "pixelart_676_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_676_001.png", - "glow_frame": "pixelart_676_glow_001.png", - "gridH": 0.5, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3177": { - "can_color": true, - "children": [ - { - "frame": "pixelart_677_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_677_001.png", - "glow_frame": "pixelart_677_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3178": { - "can_color": true, - "children": [ - { - "frame": "pixelart_678_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_678_001.png", - "glow_frame": "pixelart_678_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3179": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_679_001.png", - "glow_frame": "pixelart_679_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3180": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_680_001.png", - "glow_frame": "pixelart_680_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3181": { - "can_color": true, - "children": [ - { - "frame": "pixelart_681_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_681_001.png", - "glow_frame": "pixelart_681_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3182": { - "can_color": true, - "children": [ - { - "frame": "pixelart_682_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_682_001.png", - "glow_frame": "pixelart_682_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3183": { - "can_color": true, - "children": [ - { - "frame": "pixelart_683_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_683_001.png", - "glow_frame": "pixelart_683_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3184": { - "can_color": true, - "children": [ - { - "frame": "pixelart_684_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_684_001.png", - "glow_frame": "pixelart_684_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3185": { - "can_color": true, - "children": [ - { - "frame": "pixelart_685_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_685_001.png", - "glow_frame": "pixelart_685_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3186": { - "can_color": true, - "children": [ - { - "frame": "pixelart_686_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_686_001.png", - "glow_frame": "pixelart_686_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3187": { - "can_color": true, - "children": [ - { - "frame": "pixelart_687_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_687_001.png", - "glow_frame": "pixelart_687_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3188": { - "can_color": true, - "children": [ - { - "frame": "pixelart_688_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_688_001.png", - "glow_frame": "pixelart_688_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3189": { - "can_color": true, - "children": [ - { - "frame": "pixelart_689_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_689_001.png", - "glow_frame": "pixelart_689_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3190": { - "can_color": true, - "children": [ - { - "frame": "pixelart_690_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_690_001.png", - "glow_frame": "pixelart_690_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3191": { - "can_color": true, - "children": [ - { - "frame": "pixelart_691_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_691_001.png", - "glow_frame": "pixelart_691_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3192": { - "can_color": true, - "children": [ - { - "frame": "pixelart_692_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_692_001.png", - "glow_frame": "pixelart_692_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3193": { - "can_color": true, - "children": [ - { - "frame": "pixelart_693_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_693_001.png", - "glow_frame": "pixelart_693_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3194": { - "can_color": true, - "children": [ - { - "frame": "pixelart_694_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_694_001.png", - "glow_frame": "pixelart_694_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3195": { - "can_color": true, - "children": [ - { - "frame": "pixelart_695_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_695_001.png", - "glow_frame": "pixelart_695_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3196": { - "can_color": true, - "children": [ - { - "frame": "pixelart_696_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_696_001.png", - "glow_frame": "pixelart_696_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3197": { - "can_color": true, - "children": [ - { - "frame": "pixelart_697_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_697_001.png", - "glow_frame": "pixelart_697_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3198": { - "can_color": true, - "children": [ - { - "frame": "pixelart_698_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_698_001.png", - "glow_frame": "pixelart_698_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3199": { - "can_color": true, - "children": [ - { - "frame": "pixelart_699_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_699_001.png", - "glow_frame": "pixelart_699_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3200": { - "can_color": true, - "children": [ - { - "frame": "pixelart_700_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_700_001.png", - "glow_frame": "pixelart_700_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3201": { - "can_color": true, - "children": [ - { - "frame": "pixelart_701_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_701_001.png", - "glow_frame": "pixelart_701_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3202": { - "can_color": true, - "children": [ - { - "frame": "pixelart_702_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_702_001.png", - "glow_frame": "pixelart_702_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3203": { - "can_color": true, - "children": [ - { - "frame": "pixelart_703_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_703_001.png", - "glow_frame": "pixelart_703_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3204": { - "can_color": true, - "children": [ - { - "frame": "pixelart_704_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_704_001.png", - "glow_frame": "pixelart_704_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3205": { - "can_color": true, - "children": [ - { - "frame": "pixelart_705_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_705_001.png", - "glow_frame": "pixelart_705_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3206": { - "can_color": true, - "children": [ - { - "frame": "pixelart_706_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_706_001.png", - "glow_frame": "pixelart_706_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3207": { - "can_color": true, - "children": [ - { - "frame": "pixelart_707_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_707_001.png", - "glow_frame": "pixelart_707_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3208": { - "can_color": true, - "children": [ - { - "frame": "pixelart_708_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_708_001.png", - "glow_frame": "pixelart_708_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3209": { - "can_color": true, - "children": [ - { - "frame": "pixelart_709_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_709_001.png", - "glow_frame": "pixelart_709_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3210": { - "can_color": true, - "children": [ - { - "frame": "pixelart_710_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_710_001.png", - "glow_frame": "pixelart_710_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3211": { - "can_color": true, - "children": [ - { - "frame": "pixelart_711_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_711_001.png", - "glow_frame": "pixelart_711_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3212": { - "can_color": true, - "children": [ - { - "frame": "pixelart_712_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_712_001.png", - "glow_frame": "pixelart_712_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3213": { - "can_color": true, - "children": [ - { - "frame": "pixelart_713_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_713_001.png", - "glow_frame": "pixelart_713_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3214": { - "can_color": true, - "children": [ - { - "frame": "pixelart_714_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_714_001.png", - "glow_frame": "pixelart_714_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3215": { - "can_color": true, - "children": [ - { - "frame": "pixelart_715_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_715_001.png", - "glow_frame": "pixelart_715_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3216": { - "can_color": true, - "children": [ - { - "frame": "pixelart_716_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_716_001.png", - "glow_frame": "pixelart_716_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3217": { - "can_color": true, - "children": [ - { - "frame": "pixelart_717_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_717_001.png", - "glow_frame": "pixelart_717_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3218": { - "can_color": true, - "children": [ - { - "frame": "pixelart_718_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_718_001.png", - "glow_frame": "pixelart_718_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3219": { - "can_color": true, - "children": [ - { - "frame": "pixelart_719_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_719_002.png", - "glow_frame": "pixelart_719_002.png", - "gridH": 0.23333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3220": { - "can_color": true, - "children": [ - { - "frame": "pixelart_720_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_720_001.png", - "glow_frame": "pixelart_720_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3221": { - "can_color": true, - "children": [ - { - "frame": "pixelart_721_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_721_001.png", - "glow_frame": "pixelart_721_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3222": { - "can_color": true, - "children": [ - { - "frame": "pixelart_722_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_722_001.png", - "glow_frame": "pixelart_722_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3223": { - "can_color": true, - "children": [ - { - "frame": "pixelart_723_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_723_001.png", - "glow_frame": "pixelart_723_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3224": { - "can_color": true, - "children": [ - { - "frame": "pixelart_724_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_724_001.png", - "glow_frame": "pixelart_724_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3225": { - "can_color": true, - "children": [ - { - "frame": "pixelart_725_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_725_001.png", - "glow_frame": "pixelart_725_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3226": { - "can_color": true, - "children": [ - { - "frame": "pixelart_726_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_726_001.png", - "glow_frame": "pixelart_726_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3227": { - "can_color": true, - "children": [ - { - "frame": "pixelart_727_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_727_001.png", - "glow_frame": "pixelart_727_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3228": { - "can_color": true, - "children": [ - { - "frame": "pixelart_728_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_728_001.png", - "glow_frame": "pixelart_728_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3229": { - "can_color": true, - "children": [ - { - "frame": "pixelart_729_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_729_001.png", - "glow_frame": "pixelart_729_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3230": { - "can_color": true, - "children": [ - { - "frame": "pixelart_730_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_730_001.png", - "glow_frame": "pixelart_730_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3231": { - "can_color": true, - "children": [ - { - "frame": "pixelart_731_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_731_001.png", - "glow_frame": "pixelart_731_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3232": { - "can_color": true, - "children": [ - { - "frame": "pixelart_732_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_732_001.png", - "glow_frame": "pixelart_732_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3233": { - "can_color": true, - "children": [ - { - "frame": "pixelart_733_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_732_001.png", - "glow_frame": "pixelart_732_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3234": { - "can_color": true, - "children": [ - { - "frame": "pixelart_734_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_734_001.png", - "glow_frame": "pixelart_734_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3235": { - "can_color": true, - "children": [ - { - "frame": "pixelart_735_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_735_001.png", - "glow_frame": "pixelart_735_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3236": { - "can_color": true, - "children": [ - { - "frame": "pixelart_736_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_736_001.png", - "glow_frame": "pixelart_736_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3237": { - "can_color": true, - "children": [ - { - "frame": "pixelart_737_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_737_001.png", - "glow_frame": "pixelart_737_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3238": { - "can_color": true, - "children": [ - { - "frame": "pixelart_738_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_738_001.png", - "glow_frame": "pixelart_738_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3239": { - "can_color": true, - "children": [ - { - "frame": "pixelart_739_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_739_001.png", - "glow_frame": "pixelart_739_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3240": { - "can_color": true, - "children": [ - { - "frame": "pixelart_740_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_740_001.png", - "glow_frame": "pixelart_740_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3241": { - "can_color": true, - "children": [ - { - "frame": "pixelart_741_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_741_001.png", - "glow_frame": "pixelart_741_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3242": { - "can_color": true, - "children": [ - { - "frame": "pixelart_742_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_742_001.png", - "glow_frame": "pixelart_742_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3243": { - "can_color": true, - "children": [ - { - "frame": "pixelart_743_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_743_001.png", - "glow_frame": "pixelart_743_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3244": { - "can_color": true, - "children": [ - { - "frame": "pixelart_744_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_744_001.png", - "glow_frame": "pixelart_744_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3245": { - "can_color": true, - "children": [ - { - "frame": "pixelart_745_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_745_001.png", - "glow_frame": "pixelart_745_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3246": { - "can_color": true, - "children": [ - { - "frame": "pixelart_746_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_746_001.png", - "glow_frame": "pixelart_746_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3247": { - "can_color": true, - "children": [ - { - "frame": "pixelart_747_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_747_001.png", - "glow_frame": "pixelart_747_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3248": { - "can_color": true, - "children": [ - { - "frame": "pixelart_748_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_748_001.png", - "glow_frame": "pixelart_748_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3249": { - "can_color": true, - "children": [ - { - "frame": "pixelart_749_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_749_001.png", - "glow_frame": "pixelart_749_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3250": { - "can_color": true, - "children": [ - { - "frame": "pixelart_750_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_750_001.png", - "glow_frame": "pixelart_750_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3251": { - "can_color": true, - "children": [ - { - "frame": "pixelart_751_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_751_001.png", - "glow_frame": "pixelart_751_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3252": { - "can_color": true, - "children": [ - { - "frame": "pixelart_752_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_752_001.png", - "glow_frame": "pixelart_752_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3253": { - "can_color": true, - "children": [ - { - "frame": "pixelart_753_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_753_001.png", - "glow_frame": "pixelart_753_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3254": { - "can_color": true, - "children": [ - { - "frame": "pixelart_754_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_754_001.png", - "glow_frame": "pixelart_754_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3255": { - "can_color": true, - "children": [ - { - "frame": "pixelart_755_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_755_001.png", - "glow_frame": "pixelart_755_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3256": { - "can_color": true, - "children": [ - { - "frame": "pixelart_756_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_756_001.png", - "glow_frame": "pixelart_756_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3257": { - "can_color": true, - "children": [ - { - "frame": "pixelart_757_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_757_001.png", - "glow_frame": "pixelart_757_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3258": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1139_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3259": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1126_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3260": { - "can_color": true, - "children": [ - { - "frame": "pixelart_760_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_760_001.png", - "glow_frame": "pixelart_760_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3261": { - "can_color": true, - "children": [ - { - "frame": "pixelart_761_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_124_001.png", - "glow_frame": "pixelart_124_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3262": { - "can_color": true, - "children": [ - { - "frame": "pixelart_762_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_124_001.png", - "glow_frame": "pixelart_124_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3263": { - "can_color": true, - "children": [ - { - "frame": "pixelart_763_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_763_001.png", - "glow_frame": "pixelart_763_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3264": { - "can_color": true, - "children": [ - { - "frame": "pixelart_764_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_764_001.png", - "glow_frame": "pixelart_764_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3265": { - "can_color": true, - "children": [ - { - "frame": "pixelart_765_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_765_001.png", - "glow_frame": "pixelart_765_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3266": { - "can_color": true, - "children": [ - { - "frame": "pixelart_766_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_766_001.png", - "glow_frame": "pixelart_766_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3267": { - "can_color": true, - "children": [ - { - "frame": "pixelart_767_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_767_001.png", - "glow_frame": "pixelart_767_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3268": { - "can_color": true, - "children": [ - { - "frame": "pixelart_768_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_124_001.png", - "glow_frame": "pixelart_124_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3269": { - "can_color": true, - "children": [ - { - "frame": "pixelart_769_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_124_001.png", - "glow_frame": "pixelart_124_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3270": { - "can_color": true, - "children": [ - { - "frame": "pixelart_770_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_770_001.png", - "glow_frame": "pixelart_770_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3271": { - "can_color": true, - "children": [ - { - "frame": "pixelart_771_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_124_001.png", - "glow_frame": "pixelart_124_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3272": { - "can_color": true, - "children": [ - { - "frame": "pixelart_772_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_770_001.png", - "glow_frame": "pixelart_770_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3273": { - "can_color": true, - "children": [ - { - "frame": "pixelart_773_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_773_001.png", - "glow_frame": "pixelart_773_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3274": { - "can_color": true, - "children": [ - { - "frame": "pixelart_774_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_774_001.png", - "glow_frame": "pixelart_774_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3275": { - "can_color": true, - "children": [ - { - "frame": "pixelart_775_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_775_001.png", - "glow_frame": "pixelart_775_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3276": { - "can_color": true, - "children": [ - { - "frame": "pixelart_776_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_776_001.png", - "glow_frame": "pixelart_776_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3277": { - "can_color": true, - "children": [ - { - "frame": "pixelart_777_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_777_001.png", - "glow_frame": "pixelart_777_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3278": { - "can_color": true, - "children": [ - { - "frame": "pixelart_778_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_778_001.png", - "glow_frame": "pixelart_778_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3279": { - "can_color": true, - "children": [ - { - "frame": "pixelart_779_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_779_001.png", - "glow_frame": "pixelart_779_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3280": { - "can_color": true, - "children": [ - { - "frame": "pixelart_780_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_780_001.png", - "glow_frame": "pixelart_780_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3281": { - "can_color": true, - "children": [ - { - "frame": "pixelart_781_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_781_001.png", - "glow_frame": "pixelart_781_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3282": { - "can_color": true, - "children": [ - { - "frame": "pixelart_782_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_782_001.png", - "glow_frame": "pixelart_782_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3283": { - "can_color": true, - "children": [ - { - "frame": "pixelart_783_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_783_001.png", - "glow_frame": "pixelart_783_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3284": { - "can_color": true, - "children": [ - { - "frame": "pixelart_784_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_784_001.png", - "glow_frame": "pixelart_784_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3285": { - "can_color": true, - "children": [ - { - "frame": "pixelart_785_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_785_001.png", - "glow_frame": "pixelart_785_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3286": { - "can_color": true, - "children": [ - { - "frame": "pixelart_786_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_786_001.png", - "glow_frame": "pixelart_786_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3287": { - "can_color": true, - "children": [ - { - "frame": "pixelart_787_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_787_001.png", - "glow_frame": "pixelart_787_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3288": { - "can_color": true, - "children": [ - { - "frame": "pixelart_788_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_788_001.png", - "glow_frame": "pixelart_788_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3289": { - "can_color": true, - "children": [ - { - "frame": "pixelart_789_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_789_001.png", - "glow_frame": "pixelart_789_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3290": { - "can_color": true, - "children": [ - { - "frame": "pixelart_790_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_790_001.png", - "glow_frame": "pixelart_790_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3291": { - "can_color": true, - "children": [ - { - "frame": "pixelart_791_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_790_001.png", - "glow_frame": "pixelart_790_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3292": { - "can_color": true, - "children": [ - { - "frame": "pixelart_792_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_792_001.png", - "glow_frame": "pixelart_792_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3293": { - "can_color": true, - "children": [ - { - "frame": "pixelart_793_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_793_001.png", - "glow_frame": "pixelart_793_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3294": { - "can_color": true, - "children": [ - { - "frame": "pixelart_794_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_794_001.png", - "glow_frame": "pixelart_794_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3295": { - "can_color": true, - "children": [ - { - "frame": "pixelart_795_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_795_001.png", - "glow_frame": "pixelart_795_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3296": { - "can_color": true, - "children": [ - { - "frame": "pixelart_796_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_796_001.png", - "glow_frame": "pixelart_796_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3297": { - "can_color": true, - "children": [ - { - "frame": "pixelart_797_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_797_001.png", - "glow_frame": "pixelart_797_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3298": { - "can_color": true, - "children": [ - { - "frame": "pixelart_798_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_798_001.png", - "glow_frame": "pixelart_798_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3299": { - "can_color": true, - "children": [ - { - "frame": "pixelart_799_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_799_001.png", - "glow_frame": "pixelart_799_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3300": { - "can_color": true, - "children": [ - { - "frame": "pixelart_800_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_800_001.png", - "glow_frame": "pixelart_800_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3301": { - "can_color": true, - "children": [ - { - "frame": "pixelart_801_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_801_001.png", - "glow_frame": "pixelart_801_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3302": { - "can_color": true, - "children": [ - { - "frame": "pixelart_802_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_802_001.png", - "glow_frame": "pixelart_802_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3303": { - "can_color": true, - "children": [ - { - "frame": "pixelart_803_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_803_002.png", - "glow_frame": "pixelart_803_002.png", - "gridH": 0.23333333432674408, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3304": { - "can_color": true, - "children": [ - { - "frame": "pixelart_804_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_804_002.png", - "glow_frame": "pixelart_804_002.png", - "gridH": 0.30000001192092896, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3305": { - "can_color": true, - "children": [ - { - "frame": "pixelart_805_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_805_001.png", - "glow_frame": "pixelart_805_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3306": { - "can_color": true, - "children": [ - { - "frame": "pixelart_806_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_806_001.png", - "glow_frame": "pixelart_806_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3307": { - "can_color": true, - "children": [ - { - "frame": "pixelart_807_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_806_001.png", - "glow_frame": "pixelart_806_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3308": { - "can_color": true, - "children": [ - { - "frame": "pixelart_808_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_808_001.png", - "glow_frame": "pixelart_808_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3309": { - "can_color": true, - "children": [ - { - "frame": "pixelart_809_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_809_001.png", - "glow_frame": "pixelart_809_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3310": { - "can_color": true, - "children": [ - { - "frame": "pixelart_810_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_810_001.png", - "glow_frame": "pixelart_810_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3311": { - "can_color": true, - "children": [ - { - "frame": "pixelart_811_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_811_001.png", - "glow_frame": "pixelart_811_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3312": { - "can_color": true, - "children": [ - { - "frame": "pixelart_812_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_812_001.png", - "glow_frame": "pixelart_812_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3313": { - "can_color": true, - "children": [ - { - "frame": "pixelart_813_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_813_001.png", - "glow_frame": "pixelart_813_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3314": { - "can_color": true, - "children": [ - { - "frame": "pixelart_814_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_814_001.png", - "glow_frame": "pixelart_814_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3315": { - "can_color": true, - "children": [ - { - "frame": "pixelart_815_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_815_001.png", - "glow_frame": "pixelart_815_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3316": { - "can_color": true, - "children": [ - { - "frame": "pixelart_816_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_816_001.png", - "glow_frame": "pixelart_816_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3317": { - "can_color": true, - "children": [ - { - "frame": "pixelart_817_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_817_001.png", - "glow_frame": "pixelart_817_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3318": { - "can_color": true, - "children": [ - { - "frame": "pixelart_818_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_818_001.png", - "glow_frame": "pixelart_818_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3319": { - "can_color": true, - "children": [ - { - "frame": "pixelart_819_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_819_001.png", - "glow_frame": "pixelart_819_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3320": { - "can_color": true, - "children": [ - { - "frame": "pixelart_820_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_820_001.png", - "glow_frame": "pixelart_820_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3321": { - "can_color": true, - "children": [ - { - "frame": "pixelart_821_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_821_001.png", - "glow_frame": "pixelart_821_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3322": { - "can_color": true, - "children": [ - { - "frame": "pixelart_822_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_822_001.png", - "glow_frame": "pixelart_822_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3323": { - "can_color": true, - "children": [ - { - "frame": "pixelart_823_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_823_001.png", - "glow_frame": "pixelart_823_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3324": { - "can_color": true, - "children": [ - { - "frame": "pixelart_824_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_824_001.png", - "glow_frame": "pixelart_824_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3325": { - "can_color": true, - "children": [ - { - "frame": "pixelart_825_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_825_001.png", - "glow_frame": "pixelart_825_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3326": { - "can_color": true, - "children": [ - { - "frame": "pixelart_826_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_826_001.png", - "glow_frame": "pixelart_826_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3327": { - "can_color": true, - "children": [ - { - "frame": "pixelart_827_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_827_001.png", - "glow_frame": "pixelart_827_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3328": { - "can_color": true, - "children": [ - { - "frame": "pixelart_828_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_828_001.png", - "glow_frame": "pixelart_828_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3329": { - "can_color": true, - "children": [ - { - "frame": "pixelart_829_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_829_001.png", - "glow_frame": "pixelart_829_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3330": { - "can_color": true, - "children": [ - { - "frame": "pixelart_830_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_830_001.png", - "glow_frame": "pixelart_830_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3331": { - "can_color": true, - "children": [ - { - "frame": "pixelart_831_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_831_001.png", - "glow_frame": "pixelart_831_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3332": { - "can_color": true, - "children": [ - { - "frame": "pixelart_832_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_832_001.png", - "glow_frame": "pixelart_832_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3333": { - "can_color": true, - "children": [ - { - "frame": "pixelart_833_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_833_001.png", - "glow_frame": "pixelart_833_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3334": { - "can_color": true, - "children": [ - { - "frame": "pixelart_834_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_834_001.png", - "glow_frame": "pixelart_834_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3335": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_835_001.png", - "glow_frame": "pixelart_835_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3336": { - "can_color": true, - "children": [ - { - "frame": "pixelart_836_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_836_001.png", - "glow_frame": "pixelart_836_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3337": { - "can_color": true, - "children": [ - { - "frame": "pixelart_837_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_837_001.png", - "glow_frame": "pixelart_837_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3338": { - "can_color": true, - "children": [ - { - "frame": "pixelart_838_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_838_001.png", - "glow_frame": "pixelart_838_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3339": { - "can_color": true, - "children": [ - { - "frame": "pixelart_839_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_839_001.png", - "glow_frame": "pixelart_839_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3340": { - "can_color": true, - "children": [ - { - "frame": "pixelart_840_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_840_001.png", - "glow_frame": "pixelart_840_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3341": { - "can_color": true, - "children": [ - { - "frame": "pixelart_841_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_841_001.png", - "glow_frame": "pixelart_841_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3342": { - "can_color": true, - "children": [ - { - "frame": "pixelart_842_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_842_001.png", - "glow_frame": "pixelart_842_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3343": { - "can_color": true, - "children": [ - { - "frame": "pixelart_843_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_843_001.png", - "glow_frame": "pixelart_843_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3344": { - "can_color": true, - "children": [ - { - "frame": "pixelart_844_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_844_001.png", - "glow_frame": "pixelart_844_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3345": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1139_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3346": { - "can_color": true, - "children": [ - { - "frame": "pixelart_846_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_846_001.png", - "glow_frame": "pixelart_846_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3347": { - "can_color": true, - "children": [ - { - "frame": "pixelart_847_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_847_001.png", - "glow_frame": "pixelart_847_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3348": { - "can_color": true, - "children": [ - { - "frame": "pixelart_848_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_848_001.png", - "glow_frame": "pixelart_848_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3349": { - "can_color": true, - "children": [ - { - "frame": "pixelart_849_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_849_001.png", - "glow_frame": "pixelart_849_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3350": { - "can_color": true, - "children": [ - { - "frame": "pixelart_850_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_850_001.png", - "glow_frame": "pixelart_850_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3351": { - "can_color": true, - "children": [ - { - "frame": "pixelart_851_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_851_001.png", - "glow_frame": "pixelart_851_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3352": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_852_001.png", - "glow_frame": "pixelart_852_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3353": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_853_001.png", - "glow_frame": "pixelart_853_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3354": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_854_001.png", - "glow_frame": "pixelart_854_glow_001.png", - "gridH": 0.5, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3355": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1206_color_001.png", - "glow_frame": "pixelart_1206_color_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3356": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_856_001.png", - "glow_frame": "pixelart_856_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3357": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_857_001.png", - "glow_frame": "pixelart_857_glow_001.png", - "gridH": 0.5, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3358": { - "can_color": true, - "children": [ - { - "frame": "pixelart_858_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_858_001.png", - "glow_frame": "pixelart_858_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3359": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_859_001.png", - "glow_frame": "pixelart_859_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3360": { - "can_color": true, - "children": [ - { - "frame": "pixelart_860_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_860_001.png", - "glow_frame": "pixelart_860_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3361": { - "can_color": true, - "children": [ - { - "frame": "pixelart_861_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_861_001.png", - "glow_frame": "pixelart_861_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3362": { - "can_color": true, - "children": [ - { - "frame": "pixelart_862_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_862_001.png", - "glow_frame": "pixelart_862_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3363": { - "can_color": true, - "children": [ - { - "frame": "pixelart_863_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_863_001.png", - "glow_frame": "pixelart_863_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3364": { - "can_color": true, - "children": [ - { - "frame": "pixelart_864_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3365": { - "can_color": true, - "children": [ - { - "frame": "pixelart_865_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_865_001.png", - "glow_frame": "pixelart_865_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3366": { - "can_color": true, - "children": [ - { - "frame": "pixelart_866_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_866_001.png", - "glow_frame": "pixelart_866_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3367": { - "can_color": true, - "children": [ - { - "frame": "pixelart_867_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_867_001.png", - "glow_frame": "pixelart_867_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3368": { - "can_color": true, - "children": [ - { - "frame": "pixelart_868_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_868_001.png", - "glow_frame": "pixelart_868_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3369": { - "can_color": true, - "children": [ - { - "frame": "pixelart_869_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_869_001.png", - "glow_frame": "pixelart_869_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3370": { - "can_color": true, - "children": [ - { - "frame": "pixelart_870_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_869_001.png", - "glow_frame": "pixelart_869_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3371": { - "can_color": true, - "children": [ - { - "frame": "pixelart_871_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_871_001.png", - "glow_frame": "pixelart_871_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3372": { - "can_color": true, - "children": [ - { - "frame": "pixelart_872_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_872_001.png", - "glow_frame": "pixelart_872_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3373": { - "can_color": true, - "children": [ - { - "frame": "pixelart_873_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_873_001.png", - "glow_frame": "pixelart_873_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3374": { - "can_color": true, - "children": [ - { - "frame": "pixelart_874_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_874_001.png", - "glow_frame": "pixelart_874_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3375": { - "can_color": true, - "children": [ - { - "frame": "pixelart_875_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_875_001.png", - "glow_frame": "pixelart_875_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3376": { - "can_color": true, - "children": [ - { - "frame": "pixelart_876_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_876_001.png", - "glow_frame": "pixelart_876_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3377": { - "can_color": true, - "children": [ - { - "frame": "pixelart_877_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_877_001.png", - "glow_frame": "pixelart_877_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3378": { - "can_color": true, - "children": [ - { - "frame": "pixelart_878_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_878_001.png", - "glow_frame": "pixelart_878_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3379": { - "can_color": true, - "children": [ - { - "frame": "pixelart_879_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_879_001.png", - "glow_frame": "pixelart_879_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3380": { - "can_color": true, - "children": [ - { - "frame": "pixelart_880_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_880_001.png", - "glow_frame": "pixelart_880_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3381": { - "can_color": true, - "children": [ - { - "frame": "pixelart_881_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_881_001.png", - "glow_frame": "pixelart_881_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3382": { - "can_color": true, - "children": [ - { - "frame": "pixelart_882_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_882_001.png", - "glow_frame": "pixelart_882_glow_001.png", - "gridH": 0.5, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3383": { - "can_color": true, - "children": [ - { - "frame": "pixelart_883_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_883_001.png", - "glow_frame": "pixelart_883_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3384": { - "can_color": true, - "children": [ - { - "frame": "pixelart_884_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_884_001.png", - "glow_frame": "pixelart_884_glow_001.png", - "gridH": 0.5, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3385": { - "can_color": true, - "children": [ - { - "frame": "pixelart_885_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_885_001.png", - "glow_frame": "pixelart_885_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3386": { - "can_color": true, - "children": [ - { - "frame": "pixelart_886_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_886_001.png", - "glow_frame": "pixelart_886_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3387": { - "can_color": true, - "children": [ - { - "frame": "pixelart_887_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_887_001.png", - "glow_frame": "pixelart_887_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3388": { - "can_color": true, - "children": [ - { - "frame": "pixelart_888_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_888_001.png", - "glow_frame": "pixelart_888_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3389": { - "can_color": true, - "children": [ - { - "frame": "pixelart_889_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_889_001.png", - "glow_frame": "pixelart_889_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3390": { - "can_color": true, - "children": [ - { - "frame": "pixelart_890_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_890_001.png", - "glow_frame": "pixelart_890_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.6333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3391": { - "can_color": true, - "children": [ - { - "frame": "pixelart_891_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_891_001.png", - "glow_frame": "pixelart_891_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.6333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3392": { - "can_color": true, - "children": [ - { - "frame": "pixelart_892_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_892_001.png", - "glow_frame": "pixelart_892_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3393": { - "can_color": true, - "children": [ - { - "frame": "pixelart_893_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_893_001.png", - "glow_frame": "pixelart_893_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3394": { - "can_color": true, - "children": [ - { - "frame": "pixelart_894_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_894_001.png", - "glow_frame": "pixelart_894_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3395": { - "can_color": true, - "children": [ - { - "frame": "pixelart_895_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_895_001.png", - "glow_frame": "pixelart_895_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3396": { - "can_color": true, - "children": [ - { - "frame": "pixelart_896_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_896_001.png", - "glow_frame": "pixelart_896_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3397": { - "can_color": true, - "children": [ - { - "frame": "pixelart_897_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_897_001.png", - "glow_frame": "pixelart_897_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3398": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_898_001.png", - "glow_frame": "pixelart_898_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "3399": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1206_color_001.png", - "glow_frame": "pixelart_1206_color_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "3400": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1206_color_001.png", - "glow_frame": "pixelart_1206_color_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "3401": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_901_001.png", - "glow_frame": "pixelart_901_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "3402": { - "can_color": true, - "children": [ - { - "frame": "pixelart_902_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_902_001.png", - "glow_frame": "pixelart_902_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3403": { - "can_color": true, - "children": [ - { - "frame": "pixelart_903_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_903_001.png", - "glow_frame": "pixelart_903_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3404": { - "can_color": true, - "children": [ - { - "frame": "pixelart_904_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_904_001.png", - "glow_frame": "pixelart_904_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3405": { - "can_color": true, - "children": [ - { - "frame": "pixelart_905_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_905_001.png", - "glow_frame": "pixelart_905_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3406": { - "can_color": true, - "children": [ - { - "frame": "pixelart_906_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_906_001.png", - "glow_frame": "pixelart_906_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3407": { - "can_color": true, - "children": [ - { - "frame": "pixelart_907_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_907_001.png", - "glow_frame": "pixelart_907_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3408": { - "can_color": true, - "children": [ - { - "frame": "pixelart_908_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_908_001.png", - "glow_frame": "pixelart_908_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3409": { - "can_color": true, - "children": [ - { - "frame": "pixelart_909_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_909_001.png", - "glow_frame": "pixelart_909_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3410": { - "can_color": true, - "children": [ - { - "frame": "pixelart_910_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_910_001.png", - "glow_frame": "pixelart_910_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3411": { - "can_color": true, - "children": [ - { - "frame": "pixelart_911_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_911_001.png", - "glow_frame": "pixelart_911_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3412": { - "can_color": true, - "children": [ - { - "frame": "pixelart_912_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_912_001.png", - "glow_frame": "pixelart_912_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3413": { - "can_color": true, - "children": [ - { - "frame": "pixelart_913_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_913_001.png", - "glow_frame": "pixelart_913_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3414": { - "can_color": true, - "children": [ - { - "frame": "pixelart_914_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_914_001.png", - "glow_frame": "pixelart_914_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3415": { - "can_color": true, - "children": [ - { - "frame": "pixelart_915_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_915_001.png", - "glow_frame": "pixelart_915_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3416": { - "can_color": true, - "children": [ - { - "frame": "pixelart_916_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_916_001.png", - "glow_frame": "pixelart_916_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3417": { - "can_color": true, - "children": [ - { - "frame": "pixelart_917_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_917_001.png", - "glow_frame": "pixelart_917_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3418": { - "can_color": true, - "children": [ - { - "frame": "pixelart_918_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_918_001.png", - "glow_frame": "pixelart_918_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3419": { - "can_color": true, - "children": [ - { - "frame": "pixelart_919_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_919_001.png", - "glow_frame": "pixelart_919_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3420": { - "can_color": true, - "children": [ - { - "frame": "pixelart_920_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_920_001.png", - "glow_frame": "pixelart_920_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3421": { - "can_color": true, - "children": [ - { - "frame": "pixelart_921_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_921_001.png", - "glow_frame": "pixelart_921_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3422": { - "can_color": true, - "children": [ - { - "frame": "pixelart_922_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_922_001.png", - "glow_frame": "pixelart_922_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3423": { - "can_color": true, - "children": [ - { - "frame": "pixelart_923_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_923_001.png", - "glow_frame": "pixelart_923_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3424": { - "can_color": true, - "children": [ - { - "frame": "pixelart_924_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_924_001.png", - "glow_frame": "pixelart_924_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3425": { - "can_color": true, - "children": [ - { - "frame": "pixelart_925_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_925_001.png", - "glow_frame": "pixelart_925_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3426": { - "can_color": true, - "children": [ - { - "frame": "pixelart_926_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_926_001.png", - "glow_frame": "pixelart_926_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3427": { - "can_color": true, - "children": [ - { - "frame": "pixelart_927_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_927_001.png", - "glow_frame": "pixelart_927_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3428": { - "can_color": true, - "children": [ - { - "frame": "pixelart_928_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_928_001.png", - "glow_frame": "pixelart_928_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3429": { - "can_color": true, - "children": [ - { - "frame": "pixelart_929_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_929_001.png", - "glow_frame": "pixelart_929_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3430": { - "can_color": true, - "children": [ - { - "frame": "pixelart_930_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_930_001.png", - "glow_frame": "pixelart_930_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3431": { - "can_color": true, - "children": [ - { - "frame": "pixelart_931_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_931_001.png", - "glow_frame": "pixelart_931_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3432": { - "can_color": true, - "children": [ - { - "frame": "pixelart_932_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_932_001.png", - "glow_frame": "pixelart_932_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3433": { - "can_color": true, - "children": [ - { - "frame": "pixelart_933_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_933_001.png", - "glow_frame": "pixelart_933_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3434": { - "can_color": true, - "children": [ - { - "frame": "pixelart_934_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_934_001.png", - "glow_frame": "pixelart_934_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3435": { - "can_color": true, - "children": [ - { - "frame": "pixelart_935_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_935_001.png", - "glow_frame": "pixelart_935_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3436": { - "can_color": true, - "children": [ - { - "frame": "pixelart_936_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_936_001.png", - "glow_frame": "pixelart_936_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3437": { - "can_color": true, - "children": [ - { - "frame": "pixelart_937_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_937_001.png", - "glow_frame": "pixelart_937_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3438": { - "can_color": true, - "children": [ - { - "frame": "pixelart_938_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_938_001.png", - "glow_frame": "pixelart_938_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3439": { - "can_color": true, - "children": [ - { - "frame": "pixelart_939_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_939_001.png", - "glow_frame": "pixelart_939_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3440": { - "can_color": true, - "children": [ - { - "frame": "pixelart_940_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_940_001.png", - "glow_frame": "pixelart_940_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3441": { - "can_color": true, - "children": [ - { - "frame": "pixelart_941_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_941_001.png", - "glow_frame": "pixelart_941_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3442": { - "can_color": true, - "children": [ - { - "frame": "pixelart_942_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_942_001.png", - "glow_frame": "pixelart_942_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3443": { - "can_color": true, - "children": [ - { - "frame": "pixelart_943_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_943_001.png", - "glow_frame": "pixelart_943_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3444": { - "can_color": true, - "children": [ - { - "frame": "pixelart_944_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_944_001.png", - "glow_frame": "pixelart_944_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3445": { - "can_color": true, - "children": [ - { - "frame": "pixelart_945_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_945_001.png", - "glow_frame": "pixelart_945_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3446": { - "can_color": true, - "children": [ - { - "frame": "pixelart_946_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_946_001.png", - "glow_frame": "pixelart_946_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3447": { - "can_color": true, - "children": [ - { - "frame": "pixelart_947_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_947_001.png", - "glow_frame": "pixelart_947_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3448": { - "can_color": true, - "children": [ - { - "frame": "pixelart_948_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_948_001.png", - "glow_frame": "pixelart_948_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3449": { - "can_color": true, - "children": [ - { - "frame": "pixelart_949_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_949_001.png", - "glow_frame": "pixelart_949_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3450": { - "can_color": true, - "children": [ - { - "frame": "pixelart_950_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_950_001.png", - "glow_frame": "pixelart_950_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3451": { - "can_color": true, - "children": [ - { - "frame": "pixelart_951_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_951_001.png", - "glow_frame": "pixelart_951_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3452": { - "can_color": true, - "children": [ - { - "frame": "pixelart_952_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_952_001.png", - "glow_frame": "pixelart_952_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3453": { - "can_color": true, - "children": [ - { - "frame": "pixelart_953_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_953_001.png", - "glow_frame": "pixelart_953_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3454": { - "can_color": true, - "children": [ - { - "frame": "pixelart_954_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_954_001.png", - "glow_frame": "pixelart_954_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3455": { - "can_color": true, - "children": [ - { - "frame": "pixelart_955_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_955_001.png", - "glow_frame": "pixelart_955_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3456": { - "can_color": true, - "children": [ - { - "frame": "pixelart_956_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_956_001.png", - "glow_frame": "pixelart_956_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3457": { - "can_color": true, - "children": [ - { - "frame": "pixelart_957_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_957_001.png", - "glow_frame": "pixelart_957_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3458": { - "can_color": true, - "children": [ - { - "frame": "pixelart_958_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_958_001.png", - "glow_frame": "pixelart_958_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3459": { - "can_color": true, - "children": [ - { - "frame": "pixelart_959_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_959_001.png", - "glow_frame": "pixelart_959_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3460": { - "can_color": true, - "children": [ - { - "frame": "pixelart_960_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_960_001.png", - "glow_frame": "pixelart_960_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3461": { - "can_color": true, - "children": [ - { - "frame": "pixelart_961_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_961_001.png", - "glow_frame": "pixelart_961_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3462": { - "can_color": true, - "children": [ - { - "frame": "pixelart_962_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_962_001.png", - "glow_frame": "pixelart_962_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3463": { - "can_color": true, - "children": [ - { - "frame": "pixelart_963_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_963_001.png", - "glow_frame": "pixelart_963_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 1.0333333015441895, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3464": { - "can_color": true, - "children": [ - { - "frame": "pixelart_964_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_964_001.png", - "glow_frame": "pixelart_964_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3465": { - "can_color": true, - "children": [ - { - "frame": "pixelart_965_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_965_001.png", - "glow_frame": "pixelart_965_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3466": { - "can_color": true, - "children": [ - { - "frame": "pixelart_966_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_966_001.png", - "glow_frame": "pixelart_966_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3467": { - "can_color": true, - "children": [ - { - "frame": "pixelart_967_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_967_001.png", - "glow_frame": "pixelart_967_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3468": { - "can_color": true, - "children": [ - { - "frame": "pixelart_968_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_968_001.png", - "glow_frame": "pixelart_968_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3469": { - "can_color": true, - "children": [ - { - "frame": "pixelart_969_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_969_001.png", - "glow_frame": "pixelart_969_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3470": { - "can_color": true, - "children": [ - { - "frame": "pixelart_970_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_970_001.png", - "glow_frame": "pixelart_970_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3471": { - "can_color": true, - "children": [ - { - "frame": "pixelart_971_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_971_001.png", - "glow_frame": "pixelart_971_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3472": { - "can_color": true, - "children": [ - { - "frame": "pixelart_972_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_972_001.png", - "glow_frame": "pixelart_972_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3473": { - "can_color": true, - "children": [ - { - "frame": "pixelart_973_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_973_001.png", - "glow_frame": "pixelart_973_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3474": { - "can_color": true, - "children": [ - { - "frame": "pixelart_974_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_974_001.png", - "glow_frame": "pixelart_974_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3475": { - "can_color": true, - "children": [ - { - "frame": "pixelart_975_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_975_001.png", - "glow_frame": "pixelart_975_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3476": { - "can_color": true, - "children": [ - { - "frame": "pixelart_976_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_976_001.png", - "glow_frame": "pixelart_976_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3477": { - "can_color": true, - "children": [ - { - "frame": "pixelart_976_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_977_001.png", - "glow_frame": "pixelart_977_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3478": { - "can_color": true, - "children": [ - { - "frame": "pixelart_978_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_978_001.png", - "glow_frame": "pixelart_978_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3479": { - "can_color": true, - "children": [ - { - "frame": "pixelart_979_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_979_001.png", - "glow_frame": "pixelart_979_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3480": { - "can_color": true, - "children": [ - { - "frame": "pixelart_980_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_980_001.png", - "glow_frame": "pixelart_980_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3481": { - "can_color": true, - "children": [ - { - "frame": "pixelart_981_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_981_001.png", - "glow_frame": "pixelart_981_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3482": { - "can_color": true, - "children": [ - { - "frame": "pixelart_982_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_982_002.png", - "glow_frame": "pixelart_982_002.png", - "gridH": 0.4000000059604645, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3483": { - "can_color": true, - "children": [ - { - "frame": "pixelart_983_color_005.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_983_005.png", - "glow_frame": "pixelart_983_005.png", - "gridH": 0.8666666746139526, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3484": { - "can_color": true, - "children": [ - { - "frame": "pixelart_984_color_002.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_984_002.png", - "glow_frame": "pixelart_984_002.png", - "gridH": 0.9333333373069763, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3485": { - "can_color": true, - "children": [ - { - "frame": "pixelart_985_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_985_001.png", - "glow_frame": "pixelart_985_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3486": { - "can_color": true, - "children": [ - { - "frame": "pixelart_986_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_986_001.png", - "glow_frame": "pixelart_986_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3487": { - "can_color": true, - "children": [ - { - "frame": "pixelart_987_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_987_001.png", - "glow_frame": "pixelart_987_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3488": { - "can_color": true, - "children": [ - { - "frame": "pixelart_988_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_988_001.png", - "glow_frame": "pixelart_988_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3489": { - "can_color": true, - "children": [ - { - "frame": "pixelart_989_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_989_001.png", - "glow_frame": "pixelart_989_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3490": { - "can_color": true, - "children": [ - { - "frame": "pixelart_990_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_990_001.png", - "glow_frame": "pixelart_990_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3491": { - "can_color": true, - "children": [ - { - "frame": "pixelart_991_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_991_001.png", - "glow_frame": "pixelart_991_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3492": { - "can_color": true, - "children": [ - { - "frame": "pixelart_992_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_992_001.png", - "glow_frame": "pixelart_992_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3493": { - "can_color": true, - "children": [ - { - "frame": "pixelart_993_color_004.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_993_004.png", - "glow_frame": "pixelart_993_004.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3494": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_994_001.png", - "glow_frame": "pixelart_994_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3495": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_995_001.png", - "glow_frame": "pixelart_995_glow_001.png", - "gridH": 0.5, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3496": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_996_001.png", - "glow_frame": "pixelart_996_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3497": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_997_001.png", - "glow_frame": "pixelart_997_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3498": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_998_001.png", - "glow_frame": "pixelart_998_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3499": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_999_001.png", - "glow_frame": "pixelart_999_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3500": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1000_001.png", - "glow_frame": "pixelart_1000_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3501": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1001_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1001_001.png", - "glow_frame": "pixelart_1001_glow_001.png", - "gridH": 1, - "gridW": 1.2999999523162842, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3502": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1002_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1002_001.png", - "glow_frame": "pixelart_1002_glow_001.png", - "gridH": 1.0333333015441895, - "gridW": 1.399999976158142, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3503": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1003_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1003_001.png", - "glow_frame": "pixelart_1003_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3504": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1004_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1004_001.png", - "glow_frame": "pixelart_1004_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3505": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1005_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1005_001.png", - "glow_frame": "pixelart_1005_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3506": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1006_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1006_001.png", - "glow_frame": "pixelart_1006_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3507": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1007_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1007_001.png", - "glow_frame": "pixelart_1007_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3508": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1008_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1008_001.png", - "glow_frame": "pixelart_1008_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3509": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1009_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1009_001.png", - "glow_frame": "pixelart_1009_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3510": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1010_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1010_001.png", - "glow_frame": "pixelart_1010_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3511": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1011_001.png", - "glow_frame": "pixelart_1011_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3512": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1012_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1012_001.png", - "glow_frame": "pixelart_1012_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3513": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1013_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1013_001.png", - "glow_frame": "pixelart_1013_glow_001.png", - "gridH": 0.5, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3514": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1014_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1014_001.png", - "glow_frame": "pixelart_1014_glow_001.png", - "gridH": 0.5, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3515": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1015_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1015_001.png", - "glow_frame": "pixelart_1015_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3516": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1016_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1016_001.png", - "glow_frame": "pixelart_1016_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3517": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1017_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1017_001.png", - "glow_frame": "pixelart_1017_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3518": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1018_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1018_001.png", - "glow_frame": "pixelart_1018_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3519": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1019_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1019_001.png", - "glow_frame": "pixelart_1019_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3520": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1020_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1020_001.png", - "glow_frame": "pixelart_1020_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3521": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1021_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1021_001.png", - "glow_frame": "pixelart_1021_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3522": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1022_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1022_001.png", - "glow_frame": "pixelart_1022_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3523": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1023_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1023_001.png", - "glow_frame": "pixelart_1023_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3524": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1024_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1024_001.png", - "glow_frame": "pixelart_1024_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3525": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1025_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1025_001.png", - "glow_frame": "pixelart_1025_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3526": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1026_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1026_001.png", - "glow_frame": "pixelart_1026_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3527": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1027_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1027_001.png", - "glow_frame": "pixelart_1027_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3528": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1028_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1028_001.png", - "glow_frame": "pixelart_1028_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3529": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1029_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1029_001.png", - "glow_frame": "pixelart_1029_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3530": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1030_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1030_001.png", - "glow_frame": "pixelart_1030_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3531": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1031_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1031_001.png", - "glow_frame": "pixelart_1031_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3532": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1032_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1032_001.png", - "glow_frame": "pixelart_1032_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3533": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1033_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1033_001.png", - "glow_frame": "pixelart_1033_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3534": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1034_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1034_001.png", - "glow_frame": "pixelart_1034_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3535": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1035_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1035_001.png", - "glow_frame": "pixelart_1035_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3536": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1036_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1036_001.png", - "glow_frame": "pixelart_1036_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3537": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1037_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1037_001.png", - "glow_frame": "pixelart_1037_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3538": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1038_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1038_001.png", - "glow_frame": "pixelart_1038_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3539": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1039_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1039_001.png", - "glow_frame": "pixelart_1039_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3540": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1040_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1040_001.png", - "glow_frame": "pixelart_1040_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 1.0666667222976685, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "3541": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1041_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1041_001.png", - "glow_frame": "pixelart_1041_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "3542": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "pixelart_1042_001.png", - "glow_frame": "pixelart_1042_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 11 - }, - "3543": { - "can_color": true, - "default_base_color_channel": 2, - "frame": "pixelart_1043_001.png", - "glow_frame": "pixelart_1043_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 11, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 11 - }, - "3544": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1044_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1044_001.png", - "glow_frame": "pixelart_1044_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3545": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1045_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1045_001.png", - "glow_frame": "pixelart_1045_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3546": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1046_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1046_001.png", - "glow_frame": "pixelart_1046_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.6333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3547": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1047_001.png", - "glow_frame": "pixelart_1047_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3548": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1048_001.png", - "glow_frame": "pixelart_1048_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3549": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1049_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1049_001.png", - "glow_frame": "pixelart_1049_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3550": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1050_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1050_001.png", - "glow_frame": "pixelart_1050_glow_001.png", - "gridH": 0.5, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3551": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1049_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1051_001.png", - "glow_frame": "pixelart_1051_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3552": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1050_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1052_001.png", - "glow_frame": "pixelart_1052_glow_001.png", - "gridH": 0.5, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3553": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1053_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1053_001.png", - "glow_frame": "pixelart_1053_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3554": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1054_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1054_001.png", - "glow_frame": "pixelart_1054_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3555": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1055_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1055_001.png", - "glow_frame": "pixelart_1055_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3556": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1056_001.png", - "glow_frame": "pixelart_1056_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3557": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1057_001.png", - "glow_frame": "pixelart_1057_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3558": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1058_001.png", - "glow_frame": "pixelart_1058_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3559": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1059_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1059_001.png", - "glow_frame": "pixelart_1059_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3560": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1060_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1060_001.png", - "glow_frame": "pixelart_1060_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.6333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3561": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1061_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1061_001.png", - "glow_frame": "pixelart_1061_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.6333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3562": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1062_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1062_001.png", - "glow_frame": "pixelart_1062_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3563": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1063_001.png", - "glow_frame": "pixelart_1063_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3564": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1064_001.png", - "glow_frame": "pixelart_1064_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3565": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1065_001.png", - "glow_frame": "pixelart_1065_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3566": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1066_001.png", - "glow_frame": "pixelart_1066_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3567": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1067_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1067_001.png", - "glow_frame": "pixelart_1067_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3568": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1068_001.png", - "glow_frame": "pixelart_1068_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3569": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1069_001.png", - "glow_frame": "pixelart_1069_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3570": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1070_001.png", - "glow_frame": "pixelart_1070_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3571": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1071_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1071_001.png", - "glow_frame": "pixelart_1071_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3572": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1072_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1072_001.png", - "glow_frame": "pixelart_1072_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3573": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1073_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1073_001.png", - "glow_frame": "pixelart_1073_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3574": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1074_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1074_001.png", - "glow_frame": "pixelart_1074_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3575": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1075_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1075_001.png", - "glow_frame": "pixelart_1075_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3576": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1076_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1076_001.png", - "glow_frame": "pixelart_1076_glow_001.png", - "gridH": 0.800000011920929, - "gridW": 1.0666667222976685, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3577": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1077_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1077_001.png", - "glow_frame": "pixelart_1077_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3578": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1078_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1078_001.png", - "glow_frame": "pixelart_1078_glow_001.png", - "gridH": 0.5, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3579": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1079_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1079_001.png", - "glow_frame": "pixelart_1079_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3580": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1080_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1080_001.png", - "glow_frame": "pixelart_1080_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3581": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1081_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1081_001.png", - "glow_frame": "pixelart_1081_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3582": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1082_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1082_001.png", - "glow_frame": "pixelart_1082_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 1.2999999523162842, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3583": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1083_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1083_001.png", - "glow_frame": "pixelart_1083_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3584": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1084_001.png", - "glow_frame": "pixelart_1084_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3585": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1085_001.png", - "glow_frame": "pixelart_1085_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3586": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1086_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1086_001.png", - "glow_frame": "pixelart_1086_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3587": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1087_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1087_001.png", - "glow_frame": "pixelart_1087_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3588": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1088_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1088_001.png", - "glow_frame": "pixelart_1088_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3589": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1089_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1089_001.png", - "glow_frame": "pixelart_1089_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3590": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1090_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1090_001.png", - "glow_frame": "pixelart_1090_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3591": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1091_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1091_001.png", - "glow_frame": "pixelart_1091_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3592": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1092_001.png", - "glow_frame": "pixelart_1092_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3593": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1093_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1093_001.png", - "glow_frame": "pixelart_1093_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3594": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1094_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1094_001.png", - "glow_frame": "pixelart_1094_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3595": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1095_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1095_001.png", - "glow_frame": "pixelart_1095_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3596": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1096_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1096_001.png", - "glow_frame": "pixelart_1096_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3597": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1097_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1097_001.png", - "glow_frame": "pixelart_1097_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3598": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1098_001.png", - "glow_frame": "pixelart_1098_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3599": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1099_001.png", - "glow_frame": "pixelart_1099_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3600": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3601": { - "can_color": true, - "children": [ - { - "frame": "d_time01_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "d_time01_001.png", - "glow_frame": "d_time01_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.8333333134651184, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "3602": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3603": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3604": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3605": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3606": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3607": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3608": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3609": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3610": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "3611": { - "can_color": true, - "default_base_color_channel": 1011, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 10, - "hitbox_radius": 15, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 10 - }, - "3612": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3613": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3614": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3615": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3617": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3618": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3619": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3620": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3621": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_ball_01_001.png", - "glow_frame": "d_ball_01_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3622": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_ball_02_001.png", - "glow_frame": "d_ball_02_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3623": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_ball_03_001.png", - "glow_frame": "d_ball_03_glow_001.png", - "gridH": 0.8333333134651184, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3624": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_ball_04_001.png", - "glow_frame": "d_ball_04_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3625": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_ball_05_001.png", - "glow_frame": "d_ball_05_glow_001.png", - "gridH": 0.949999988079071, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3626": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_ball_06_001.png", - "glow_frame": "d_ball_06_glow_001.png", - "gridH": 1, - "gridW": 0.9333333373069763, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3627": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_ball_07_001.png", - "glow_frame": "d_ball_07_glow_001.png", - "gridH": 0.9166666865348816, - "gridW": 0.9166666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3628": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_ball_08_001.png", - "glow_frame": "d_ball_08_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3629": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_ball_09_001.png", - "glow_frame": "d_ball_09_glow_001.png", - "gridH": 0.8666666746139526, - "gridW": 1, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3630": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_arrow_01_001.png", - "glow_frame": "d_arrow_01_glow_001.png", - "gridH": 1.1166666746139526, - "gridW": 1.5499999523162842, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3631": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_arrow_02_001.png", - "glow_frame": "d_arrow_02_glow_001.png", - "gridH": 1.4666666984558105, - "gridW": 0.949999988079071, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3632": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_arrow_03_001.png", - "glow_frame": "d_arrow_03_glow_001.png", - "gridH": 1.4666666984558105, - "gridW": 0.7333333492279053, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3633": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_exmark_01_001.png", - "glow_frame": "d_exmark_01_glow_001.png", - "gridH": 1.5499999523162842, - "gridW": 0.46666666865348816, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3634": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_qmark_01_001.png", - "glow_frame": "d_qmark_01_glow_001.png", - "gridH": 1.5666667222976685, - "gridW": 1.1333333253860474, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3635": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_cross_01_001.png", - "glow_frame": "d_cross_01_glow_001.png", - "gridH": 1.4666666984558105, - "gridW": 1.4666666984558105, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3636": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_circle_01_001.png", - "glow_frame": "d_circle_01_glow_001.png", - "gridH": 1.6666666269302368, - "gridW": 1.6666666269302368, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3637": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_circle_02_001.png", - "glow_frame": "d_circle_02_glow_001.png", - "gridH": 1.6666666269302368, - "gridW": 1.6666666269302368, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3638": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_largeSquare_01_001.png", - "glow_frame": "d_largeSquare_01_glow_001.png", - "gridH": 1.3333333730697632, - "gridW": 1.3333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3639": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "d_largeSquare_02_001.png", - "glow_frame": "d_largeSquare_02_glow_001.png", - "gridH": 1.3333333730697632, - "gridW": 1.3333333730697632, - "spritesheet": "GJ_GameSheet-uhd", - "type": "deco", - "z": -5, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": -5 - }, - "3640": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3641": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3642": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3643": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3645": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "hitbox_radius": 15, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3646": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_200_001.png", - "glow_frame": "particle_200_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3647": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_201_001.png", - "glow_frame": "particle_201_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3648": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_202_001.png", - "glow_frame": "particle_202_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3649": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_203_001.png", - "glow_frame": "particle_203_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3650": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_204_001.png", - "glow_frame": "particle_204_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3651": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_205_001.png", - "glow_frame": "particle_205_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3652": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_206_001.png", - "glow_frame": "particle_206_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3653": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_207_001.png", - "glow_frame": "particle_207_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3654": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_208_001.png", - "glow_frame": "particle_208_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3655": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3656": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_209_001.png", - "glow_frame": "particle_209_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3657": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_210_001.png", - "glow_frame": "particle_210_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3658": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_211_001.png", - "glow_frame": "particle_211_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3659": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_212_001.png", - "glow_frame": "particle_212_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3660": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3661": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3662": { - "can_color": false, - "default_base_color_channel": 0, - "frame": null, - "glow_frame": "none", - "gridH": 1, - "gridW": 1, - "spritesheet": "GJ_GameSheet02-uhd", - "type": "trigger", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3700": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1100_001.png", - "glow_frame": "pixelart_1100_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3701": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1101_001.png", - "glow_frame": "pixelart_1101_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3702": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1102_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1102_001.png", - "glow_frame": "pixelart_1102_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3703": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1103_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1087_001.png", - "glow_frame": "pixelart_1087_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3704": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1104_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1088_001.png", - "glow_frame": "pixelart_1088_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3705": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1105_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1105_001.png", - "glow_frame": "pixelart_1105_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3706": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1106_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1090_001.png", - "glow_frame": "pixelart_1090_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3707": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1107_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1107_001.png", - "glow_frame": "pixelart_1107_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3708": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1108_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1108_001.png", - "glow_frame": "pixelart_1108_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3709": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1109_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1109_001.png", - "glow_frame": "pixelart_1109_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3710": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1110_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1110_001.png", - "glow_frame": "pixelart_1110_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3711": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1111_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1096_001.png", - "glow_frame": "pixelart_1096_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3712": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1112_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1112_001.png", - "glow_frame": "pixelart_1112_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3713": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1113_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1113_001.png", - "glow_frame": "pixelart_1113_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3714": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1114_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1114_001.png", - "glow_frame": "pixelart_1114_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3715": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1115_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1087_001.png", - "glow_frame": "pixelart_1087_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3716": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1116_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1088_001.png", - "glow_frame": "pixelart_1088_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3717": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1117_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1117_001.png", - "glow_frame": "pixelart_1117_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3718": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1118_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1090_001.png", - "glow_frame": "pixelart_1090_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3719": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1119_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1119_001.png", - "glow_frame": "pixelart_1119_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3720": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1120_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1120_001.png", - "glow_frame": "pixelart_1120_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3721": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1121_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1121_001.png", - "glow_frame": "pixelart_1121_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3722": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1122_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1122_001.png", - "glow_frame": "pixelart_1122_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3723": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1123_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1096_001.png", - "glow_frame": "pixelart_1096_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3724": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1124_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1124_001.png", - "glow_frame": "pixelart_1124_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3725": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1125_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1125_001.png", - "glow_frame": "pixelart_1125_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3726": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1126_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1126_001.png", - "glow_frame": "pixelart_1126_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3727": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1127_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1127_001.png", - "glow_frame": "pixelart_1127_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3728": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1128_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1128_001.png", - "glow_frame": "pixelart_1128_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3729": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1129_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1129_001.png", - "glow_frame": "pixelart_1129_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3730": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1130_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1130_001.png", - "glow_frame": "pixelart_1130_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3731": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1131_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1131_001.png", - "glow_frame": "pixelart_1131_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3732": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1132_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1132_001.png", - "glow_frame": "pixelart_1132_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3733": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1133_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1133_001.png", - "glow_frame": "pixelart_1133_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3734": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1134_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1134_001.png", - "glow_frame": "pixelart_1134_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3735": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1135_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1135_001.png", - "glow_frame": "pixelart_1135_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3736": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1136_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1136_001.png", - "glow_frame": "pixelart_1136_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3737": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1137_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1137_001.png", - "glow_frame": "pixelart_1137_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3738": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1138_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1138_001.png", - "glow_frame": "pixelart_1138_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3739": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1139_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3740": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1140_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1140_001.png", - "glow_frame": "pixelart_1140_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3741": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1141_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1087_001.png", - "glow_frame": "pixelart_1087_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3742": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1142_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1088_001.png", - "glow_frame": "pixelart_1088_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3743": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1143_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1143_001.png", - "glow_frame": "pixelart_1143_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3744": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1144_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1090_001.png", - "glow_frame": "pixelart_1090_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3745": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1145_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1145_001.png", - "glow_frame": "pixelart_1145_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3746": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1146_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1146_001.png", - "glow_frame": "pixelart_1146_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3747": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1147_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1147_001.png", - "glow_frame": "pixelart_1147_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3748": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1148_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1148_001.png", - "glow_frame": "pixelart_1148_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3749": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1149_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1149_001.png", - "glow_frame": "pixelart_1149_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3750": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1150_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1150_001.png", - "glow_frame": "pixelart_1150_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3751": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1151_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1151_001.png", - "glow_frame": "pixelart_1151_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3752": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1126_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1126_001.png", - "glow_frame": "pixelart_1126_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3753": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1153_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1153_001.png", - "glow_frame": "pixelart_1153_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3754": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1154_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1154_001.png", - "glow_frame": "pixelart_1154_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3755": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1155_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1155_001.png", - "glow_frame": "pixelart_1155_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3756": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1156_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1156_001.png", - "glow_frame": "pixelart_1156_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3757": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1157_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1157_001.png", - "glow_frame": "pixelart_1157_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3758": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1158_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1158_001.png", - "glow_frame": "pixelart_1158_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3759": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1159_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1159_001.png", - "glow_frame": "pixelart_1159_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3760": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1160_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1160_001.png", - "glow_frame": "pixelart_1160_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3761": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1161_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1161_001.png", - "glow_frame": "pixelart_1161_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3762": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1162_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1162_001.png", - "glow_frame": "pixelart_1162_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3763": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1163_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1163_001.png", - "glow_frame": "pixelart_1163_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3764": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1164_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1164_001.png", - "glow_frame": "pixelart_1164_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3765": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1165_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1165_001.png", - "glow_frame": "pixelart_1165_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3766": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1166_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1166_001.png", - "glow_frame": "pixelart_1166_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3767": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1167_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1167_001.png", - "glow_frame": "pixelart_1167_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3768": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1168_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1168_001.png", - "glow_frame": "pixelart_1168_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3769": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1169_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1169_001.png", - "glow_frame": "pixelart_1169_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3770": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1170_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1170_001.png", - "glow_frame": "pixelart_1170_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3771": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1171_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1171_001.png", - "glow_frame": "pixelart_1171_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3772": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1172_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1172_001.png", - "glow_frame": "pixelart_1172_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3773": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1173_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1173_001.png", - "glow_frame": "pixelart_1173_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3774": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1174_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1174_001.png", - "glow_frame": "pixelart_1174_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3775": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1175_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1175_001.png", - "glow_frame": "pixelart_1175_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3776": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1176_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1176_001.png", - "glow_frame": "pixelart_1176_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3777": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1177_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1177_001.png", - "glow_frame": "pixelart_1177_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3778": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1178_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1178_001.png", - "glow_frame": "pixelart_1178_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3779": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1179_001.png", - "glow_frame": "pixelart_1179_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3780": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1180_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1180_001.png", - "glow_frame": "pixelart_1180_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3781": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1181_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1181_001.png", - "glow_frame": "pixelart_1181_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3782": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1182_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1182_001.png", - "glow_frame": "pixelart_1182_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3783": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1183_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1183_001.png", - "glow_frame": "pixelart_1183_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3784": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1184_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1184_001.png", - "glow_frame": "pixelart_1184_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3785": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1185_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1185_001.png", - "glow_frame": "pixelart_1185_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3786": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1186_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1186_001.png", - "glow_frame": "pixelart_1186_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3787": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1187_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1187_001.png", - "glow_frame": "pixelart_1187_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3788": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1188_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1188_001.png", - "glow_frame": "pixelart_1188_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3789": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1189_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1189_001.png", - "glow_frame": "pixelart_1189_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3790": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1190_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1190_001.png", - "glow_frame": "pixelart_1190_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3791": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1191_001.png", - "glow_frame": "pixelart_1191_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3792": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1192_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1192_001.png", - "glow_frame": "pixelart_1192_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3793": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1193_001.png", - "glow_frame": "pixelart_1193_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "3794": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1194_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1194_001.png", - "glow_frame": "pixelart_1194_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3795": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1195_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1195_001.png", - "glow_frame": "pixelart_1195_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3796": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1196_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1196_001.png", - "glow_frame": "pixelart_1196_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3797": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1197_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1197_001.png", - "glow_frame": "pixelart_1197_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3798": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1197_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1198_001.png", - "glow_frame": "pixelart_1198_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3799": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1197_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1199_001.png", - "glow_frame": "pixelart_1199_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3800": { - "can_color": true, - "default_base_color_channel": 1004, - "frame": "particle_00_001.png", - "glow_frame": "particle_00_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "solid", - "z": 2, - "default_detail_color_channel": -1, - "default_z_layer": 5, - "default_z_order": 2 - }, - "3801": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_01_001.png", - "glow_frame": "particle_01_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3802": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_02_001.png", - "glow_frame": "particle_02_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3803": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_03_001.png", - "glow_frame": "particle_03_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3804": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_04_001.png", - "glow_frame": "particle_04_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3805": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_05_001.png", - "glow_frame": "particle_05_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3806": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_06_001.png", - "glow_frame": "particle_06_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3807": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_07_001.png", - "glow_frame": "particle_07_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3808": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_08_001.png", - "glow_frame": "particle_08_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3809": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_09_001.png", - "glow_frame": "particle_09_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3810": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_10_001.png", - "glow_frame": "particle_10_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3811": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_11_001.png", - "glow_frame": "particle_11_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3812": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_12_001.png", - "glow_frame": "particle_12_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3813": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_13_001.png", - "glow_frame": "particle_13_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3814": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_14_001.png", - "glow_frame": "particle_14_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3815": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_15_001.png", - "glow_frame": "particle_15_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3816": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_16_001.png", - "glow_frame": "particle_16_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3817": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_17_001.png", - "glow_frame": "particle_17_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3818": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_18_001.png", - "glow_frame": "particle_18_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3819": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_19_001.png", - "glow_frame": "particle_19_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3820": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_20_001.png", - "glow_frame": "particle_20_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3821": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_21_001.png", - "glow_frame": "particle_21_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3822": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_22_001.png", - "glow_frame": "particle_22_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3823": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_23_001.png", - "glow_frame": "particle_23_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3824": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_24_001.png", - "glow_frame": "particle_24_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3825": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_25_001.png", - "glow_frame": "particle_25_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3826": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_26_001.png", - "glow_frame": "particle_26_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3827": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_27_001.png", - "glow_frame": "particle_27_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3828": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_28_001.png", - "glow_frame": "particle_28_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3829": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_29_001.png", - "glow_frame": "particle_29_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3830": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_30_001.png", - "glow_frame": "particle_30_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3831": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_31_001.png", - "glow_frame": "particle_31_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3832": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_32_001.png", - "glow_frame": "particle_32_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3833": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_33_001.png", - "glow_frame": "particle_33_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3834": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_34_001.png", - "glow_frame": "particle_34_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3835": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_35_001.png", - "glow_frame": "particle_35_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3836": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_36_001.png", - "glow_frame": "particle_36_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3837": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_37_001.png", - "glow_frame": "particle_37_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3838": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_38_001.png", - "glow_frame": "particle_38_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3839": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_39_001.png", - "glow_frame": "particle_39_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3840": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_40_001.png", - "glow_frame": "particle_40_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3841": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_41_001.png", - "glow_frame": "particle_41_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3842": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_42_001.png", - "glow_frame": "particle_42_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3843": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_43_001.png", - "glow_frame": "particle_43_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3844": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_44_001.png", - "glow_frame": "particle_44_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3845": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_45_001.png", - "glow_frame": "particle_45_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3846": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_46_001.png", - "glow_frame": "particle_46_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3847": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_47_001.png", - "glow_frame": "particle_47_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3848": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_48_001.png", - "glow_frame": "particle_48_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3849": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_49_001.png", - "glow_frame": "particle_49_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3850": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_50_001.png", - "glow_frame": "particle_50_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3851": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_51_001.png", - "glow_frame": "particle_51_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3852": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_52_001.png", - "glow_frame": "particle_52_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3853": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_53_001.png", - "glow_frame": "particle_53_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3854": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_54_001.png", - "glow_frame": "particle_54_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3855": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_55_001.png", - "glow_frame": "particle_55_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3856": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_56_001.png", - "glow_frame": "particle_56_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3857": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_57_001.png", - "glow_frame": "particle_57_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3858": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_58_001.png", - "glow_frame": "particle_58_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3859": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_59_001.png", - "glow_frame": "particle_59_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3860": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_60_001.png", - "glow_frame": "particle_60_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3861": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_61_001.png", - "glow_frame": "particle_61_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3862": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_62_001.png", - "glow_frame": "particle_62_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3863": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_63_001.png", - "glow_frame": "particle_63_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3864": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_64_001.png", - "glow_frame": "particle_64_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3865": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_65_001.png", - "glow_frame": "particle_65_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3866": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_66_001.png", - "glow_frame": "particle_66_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3867": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_67_001.png", - "glow_frame": "particle_67_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3868": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_68_001.png", - "glow_frame": "particle_68_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3869": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_69_001.png", - "glow_frame": "particle_69_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3870": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_70_001.png", - "glow_frame": "particle_70_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3871": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_71_001.png", - "glow_frame": "particle_71_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3872": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_72_001.png", - "glow_frame": "particle_72_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3873": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_73_001.png", - "glow_frame": "particle_73_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3874": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_74_001.png", - "glow_frame": "particle_74_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3875": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_75_001.png", - "glow_frame": "particle_75_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3876": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_76_001.png", - "glow_frame": "particle_76_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3877": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_77_001.png", - "glow_frame": "particle_77_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3878": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_78_001.png", - "glow_frame": "particle_78_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3879": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_79_001.png", - "glow_frame": "particle_79_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3880": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_80_001.png", - "glow_frame": "particle_80_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3881": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_81_001.png", - "glow_frame": "particle_81_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3882": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_82_001.png", - "glow_frame": "particle_82_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3883": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_83_001.png", - "glow_frame": "particle_83_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3884": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_84_001.png", - "glow_frame": "particle_84_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3885": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_85_001.png", - "glow_frame": "particle_85_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3886": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_86_001.png", - "glow_frame": "particle_86_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3887": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_87_001.png", - "glow_frame": "particle_87_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3888": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_88_001.png", - "glow_frame": "particle_88_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3889": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_89_001.png", - "glow_frame": "particle_89_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3890": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_90_001.png", - "glow_frame": "particle_90_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3891": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_91_001.png", - "glow_frame": "particle_91_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3892": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_92_001.png", - "glow_frame": "particle_92_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3893": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_93_001.png", - "glow_frame": "particle_93_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3894": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_94_001.png", - "glow_frame": "particle_94_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3895": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_95_001.png", - "glow_frame": "particle_95_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3896": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_96_001.png", - "glow_frame": "particle_96_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3897": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_97_001.png", - "glow_frame": "particle_97_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3898": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_98_001.png", - "glow_frame": "particle_98_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3899": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_99_001.png", - "glow_frame": "particle_99_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3900": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_100_001.png", - "glow_frame": "particle_100_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3901": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_101_001.png", - "glow_frame": "particle_101_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3902": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_102_001.png", - "glow_frame": "particle_102_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3903": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_103_001.png", - "glow_frame": "particle_103_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3904": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_104_001.png", - "glow_frame": "particle_104_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3905": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_105_001.png", - "glow_frame": "particle_105_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3906": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_106_001.png", - "glow_frame": "particle_106_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3907": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_107_001.png", - "glow_frame": "particle_107_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3908": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_108_001.png", - "glow_frame": "particle_108_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3909": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_109_001.png", - "glow_frame": "particle_109_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3910": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_110_001.png", - "glow_frame": "particle_110_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3911": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_111_001.png", - "glow_frame": "particle_111_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3912": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_112_001.png", - "glow_frame": "particle_112_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3913": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_113_001.png", - "glow_frame": "particle_113_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3914": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_114_001.png", - "glow_frame": "particle_114_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3915": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_115_001.png", - "glow_frame": "particle_115_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3916": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_116_001.png", - "glow_frame": "particle_116_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3917": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_117_001.png", - "glow_frame": "particle_117_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3918": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_118_001.png", - "glow_frame": "particle_118_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3919": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_119_001.png", - "glow_frame": "particle_119_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3920": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_120_001.png", - "glow_frame": "particle_120_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3921": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_121_001.png", - "glow_frame": "particle_121_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3922": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_122_001.png", - "glow_frame": "particle_122_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3923": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_123_001.png", - "glow_frame": "particle_123_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3924": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_124_001.png", - "glow_frame": "particle_124_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3925": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_125_001.png", - "glow_frame": "particle_125_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3926": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_126_001.png", - "glow_frame": "particle_126_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3927": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_127_001.png", - "glow_frame": "particle_127_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3928": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_128_001.png", - "glow_frame": "particle_128_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3929": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_129_001.png", - "glow_frame": "particle_129_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3930": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_130_001.png", - "glow_frame": "particle_130_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3931": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_131_001.png", - "glow_frame": "particle_131_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3932": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_132_001.png", - "glow_frame": "particle_132_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3933": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_133_001.png", - "glow_frame": "particle_133_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3934": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_134_001.png", - "glow_frame": "particle_134_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3935": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_135_001.png", - "glow_frame": "particle_135_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3936": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_136_001.png", - "glow_frame": "particle_136_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3937": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_137_001.png", - "glow_frame": "particle_137_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3938": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_138_001.png", - "glow_frame": "particle_138_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3939": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_139_001.png", - "glow_frame": "particle_139_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3940": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_140_001.png", - "glow_frame": "particle_140_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3941": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_141_001.png", - "glow_frame": "particle_141_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3942": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_142_001.png", - "glow_frame": "particle_142_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3943": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_143_001.png", - "glow_frame": "particle_143_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3944": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_144_001.png", - "glow_frame": "particle_144_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3945": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_145_001.png", - "glow_frame": "particle_145_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3946": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_146_001.png", - "glow_frame": "particle_146_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3947": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_147_001.png", - "glow_frame": "particle_147_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3948": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_148_001.png", - "glow_frame": "particle_148_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3949": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_149_001.png", - "glow_frame": "particle_149_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3950": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_150_001.png", - "glow_frame": "particle_150_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3951": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_151_001.png", - "glow_frame": "particle_151_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3952": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_152_001.png", - "glow_frame": "particle_152_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3953": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_153_001.png", - "glow_frame": "particle_153_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3954": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_154_001.png", - "glow_frame": "particle_154_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3955": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_155_001.png", - "glow_frame": "particle_155_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3956": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_156_001.png", - "glow_frame": "particle_156_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3957": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_157_001.png", - "glow_frame": "particle_157_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3958": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_158_001.png", - "glow_frame": "particle_158_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3959": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_159_001.png", - "glow_frame": "particle_159_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3960": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_160_001.png", - "glow_frame": "particle_160_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3961": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_161_001.png", - "glow_frame": "particle_161_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3962": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_162_001.png", - "glow_frame": "particle_162_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3963": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_163_001.png", - "glow_frame": "particle_163_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3964": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_164_001.png", - "glow_frame": "particle_164_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3965": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_165_001.png", - "glow_frame": "particle_165_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3966": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_166_001.png", - "glow_frame": "particle_166_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3967": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_167_001.png", - "glow_frame": "particle_167_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3968": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_168_001.png", - "glow_frame": "particle_168_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3969": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_169_001.png", - "glow_frame": "particle_169_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3970": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_170_001.png", - "glow_frame": "particle_170_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3971": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_171_001.png", - "glow_frame": "particle_171_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3972": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_172_001.png", - "glow_frame": "particle_172_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3973": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_173_001.png", - "glow_frame": "particle_173_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3974": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_174_001.png", - "glow_frame": "particle_174_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3975": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_175_001.png", - "glow_frame": "particle_175_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3976": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_176_001.png", - "glow_frame": "particle_176_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3977": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_177_001.png", - "glow_frame": "particle_177_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3978": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_178_001.png", - "glow_frame": "particle_178_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3979": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_179_001.png", - "glow_frame": "particle_179_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3980": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_180_001.png", - "glow_frame": "particle_180_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3981": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_181_001.png", - "glow_frame": "particle_181_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3982": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_182_001.png", - "glow_frame": "particle_182_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3983": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_183_001.png", - "glow_frame": "particle_183_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3984": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_184_001.png", - "glow_frame": "particle_184_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3985": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_185_001.png", - "glow_frame": "particle_185_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3986": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_186_001.png", - "glow_frame": "particle_186_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3987": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_187_001.png", - "glow_frame": "particle_187_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3988": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_188_001.png", - "glow_frame": "particle_188_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3989": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_189_001.png", - "glow_frame": "particle_189_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3990": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_190_001.png", - "glow_frame": "particle_190_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3991": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_191_001.png", - "glow_frame": "particle_191_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3992": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_192_001.png", - "glow_frame": "particle_192_glow_001.png", - "gridH": 1.0666667222976685, - "gridW": 1.0666667222976685, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3993": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_193_001.png", - "glow_frame": "particle_193_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3994": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_194_001.png", - "glow_frame": "particle_194_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3995": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_195_001.png", - "glow_frame": "particle_195_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3996": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_196_001.png", - "glow_frame": "particle_196_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3997": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_197_001.png", - "glow_frame": "particle_197_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3998": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_198_001.png", - "glow_frame": "particle_198_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "3999": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "particle_199_001.png", - "glow_frame": "particle_199_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "GJ_ParticleSheet-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4000": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1200_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1200_001.png", - "glow_frame": "pixelart_1200_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4001": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1201_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1201_001.png", - "glow_frame": "pixelart_1201_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4002": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1202_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1202_001.png", - "glow_frame": "pixelart_1202_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4003": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1203_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1203_001.png", - "glow_frame": "pixelart_1203_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4004": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1204_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1204_001.png", - "glow_frame": "pixelart_1204_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4005": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1205_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1205_001.png", - "glow_frame": "pixelart_1205_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4006": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1206_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1206_001.png", - "glow_frame": "pixelart_1206_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4007": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1207_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1207_001.png", - "glow_frame": "pixelart_1207_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4008": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1208_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1208_001.png", - "glow_frame": "pixelart_1208_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4009": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1209_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1209_001.png", - "glow_frame": "pixelart_1209_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4010": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1210_001.png", - "glow_frame": "pixelart_1210_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4011": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1211_001.png", - "glow_frame": "pixelart_1211_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4012": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1212_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1212_001.png", - "glow_frame": "pixelart_1212_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4013": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1213_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1213_001.png", - "glow_frame": "pixelart_1213_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4014": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1214_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1214_001.png", - "glow_frame": "pixelart_1214_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4015": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1215_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1215_001.png", - "glow_frame": "pixelart_1215_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4016": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1216_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1216_001.png", - "glow_frame": "pixelart_1216_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4017": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1217_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1217_001.png", - "glow_frame": "pixelart_1217_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4018": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1218_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1218_001.png", - "glow_frame": "pixelart_1218_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4019": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1219_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1219_001.png", - "glow_frame": "pixelart_1219_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4020": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1220_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1220_001.png", - "glow_frame": "pixelart_1220_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4021": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1221_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1221_001.png", - "glow_frame": "pixelart_1221_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4022": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1222_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1222_001.png", - "glow_frame": "pixelart_1222_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4023": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1223_001.png", - "glow_frame": "pixelart_1223_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4024": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1224_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1224_001.png", - "glow_frame": "pixelart_1224_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4025": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1225_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1225_001.png", - "glow_frame": "pixelart_1225_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4026": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1226_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1226_001.png", - "glow_frame": "pixelart_1226_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4027": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1227_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1227_001.png", - "glow_frame": "pixelart_1227_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4028": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1228_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1228_001.png", - "glow_frame": "pixelart_1228_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4029": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1229_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1229_001.png", - "glow_frame": "pixelart_1229_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4030": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1230_001.png", - "glow_frame": "pixelart_1230_glow_001.png", - "gridH": 0.5, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4031": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1231_001.png", - "glow_frame": "pixelart_1231_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4032": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1232_001.png", - "glow_frame": "pixelart_1232_glow_001.png", - "gridH": 0.5, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4033": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1233_001.png", - "glow_frame": "pixelart_1233_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4034": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1234_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1234_001.png", - "glow_frame": "pixelart_1234_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4035": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1235_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1235_001.png", - "glow_frame": "pixelart_1235_glow_001.png", - "gridH": 0.5, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4036": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1236_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1236_001.png", - "glow_frame": "pixelart_1236_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4037": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1237_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1237_001.png", - "glow_frame": "pixelart_1237_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4038": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1238_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1238_001.png", - "glow_frame": "pixelart_1238_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4039": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1239_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1239_001.png", - "glow_frame": "pixelart_1239_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4040": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1240_001.png", - "glow_frame": "pixelart_1240_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4041": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1241_001.png", - "glow_frame": "pixelart_1241_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4042": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1242_001.png", - "glow_frame": "pixelart_1242_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4043": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1243_001.png", - "glow_frame": "pixelart_1243_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4044": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1244_001.png", - "glow_frame": "pixelart_1244_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4045": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1245_001.png", - "glow_frame": "pixelart_1245_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4046": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1246_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1246_001.png", - "glow_frame": "pixelart_1246_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4047": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1247_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1247_001.png", - "glow_frame": "pixelart_1247_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4048": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1248_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1248_001.png", - "glow_frame": "pixelart_1248_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4049": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1249_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1249_001.png", - "glow_frame": "pixelart_1249_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4050": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1250_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1250_001.png", - "glow_frame": "pixelart_1250_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4051": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1251_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1251_001.png", - "glow_frame": "pixelart_1251_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4052": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1252_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1252_001.png", - "glow_frame": "pixelart_1252_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4053": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1253_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1253_001.png", - "glow_frame": "pixelart_1253_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4054": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1254_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1254_001.png", - "glow_frame": "pixelart_1254_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4055": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1255_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1255_001.png", - "glow_frame": "pixelart_1255_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4056": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1256_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1256_001.png", - "glow_frame": "pixelart_1256_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4057": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1257_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1257_001.png", - "glow_frame": "pixelart_1257_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4058": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1258_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1258_001.png", - "glow_frame": "pixelart_1258_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4059": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1259_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1259_001.png", - "glow_frame": "pixelart_1259_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4060": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1260_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1260_001.png", - "glow_frame": "pixelart_1260_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4061": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1261_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1261_001.png", - "glow_frame": "pixelart_1261_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4062": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1262_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1262_001.png", - "glow_frame": "pixelart_1262_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4063": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1263_001.png", - "glow_frame": "pixelart_1263_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4064": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1264_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1264_001.png", - "glow_frame": "pixelart_1264_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4065": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1265_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1265_001.png", - "glow_frame": "pixelart_1265_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4066": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1266_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1266_001.png", - "glow_frame": "pixelart_1266_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4067": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1267_001.png", - "glow_frame": "pixelart_1267_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4068": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1268_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1268_001.png", - "glow_frame": "pixelart_1268_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4069": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1269_001.png", - "glow_frame": "pixelart_1269_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4070": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1270_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1270_001.png", - "glow_frame": "pixelart_1270_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4071": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1271_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1271_001.png", - "glow_frame": "pixelart_1271_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4072": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1272_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1272_001.png", - "glow_frame": "pixelart_1272_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4073": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1273_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1273_001.png", - "glow_frame": "pixelart_1273_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4074": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1274_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1274_001.png", - "glow_frame": "pixelart_1274_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4075": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1275_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1275_001.png", - "glow_frame": "pixelart_1275_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4076": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1276_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1276_001.png", - "glow_frame": "pixelart_1276_glow_001.png", - "gridH": 0.7666666507720947, - "gridW": 0.6333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4077": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1277_001.png", - "glow_frame": "pixelart_1277_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4078": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1278_001.png", - "glow_frame": "pixelart_1278_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4079": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1279_001.png", - "glow_frame": "pixelart_1279_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4080": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1280_001.png", - "glow_frame": "pixelart_1280_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4081": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1281_001.png", - "glow_frame": "pixelart_1281_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4082": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1282_001.png", - "glow_frame": "pixelart_1282_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4083": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1283_001.png", - "glow_frame": "pixelart_1283_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4084": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1284_001.png", - "glow_frame": "pixelart_1284_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4085": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1285_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1285_001.png", - "glow_frame": "pixelart_1285_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4086": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1286_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1286_001.png", - "glow_frame": "pixelart_1286_glow_001.png", - "gridH": 0.5, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4087": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1287_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1287_001.png", - "glow_frame": "pixelart_1287_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4088": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1288_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1288_001.png", - "glow_frame": "pixelart_1288_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4089": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1289_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1289_001.png", - "glow_frame": "pixelart_1289_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4090": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1290_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1290_001.png", - "glow_frame": "pixelart_1290_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4091": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1291_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1291_001.png", - "glow_frame": "pixelart_1291_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4092": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1292_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1292_001.png", - "glow_frame": "pixelart_1292_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4093": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1293_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1293_001.png", - "glow_frame": "pixelart_1293_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4094": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1294_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1294_001.png", - "glow_frame": "pixelart_1294_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4095": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1295_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1295_001.png", - "glow_frame": "pixelart_1295_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4096": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1296_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1296_001.png", - "glow_frame": "pixelart_1296_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4097": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1297_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1297_001.png", - "glow_frame": "pixelart_1297_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4098": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1298_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1298_001.png", - "glow_frame": "pixelart_1298_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4099": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1299_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1299_001.png", - "glow_frame": "pixelart_1299_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4100": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1300_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1300_001.png", - "glow_frame": "pixelart_1300_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4101": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1301_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1301_001.png", - "glow_frame": "pixelart_1301_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4102": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1302_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1302_001.png", - "glow_frame": "pixelart_1302_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4103": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1303_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1303_001.png", - "glow_frame": "pixelart_1303_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4104": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1304_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1304_001.png", - "glow_frame": "pixelart_1304_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4105": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1305_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1305_001.png", - "glow_frame": "pixelart_1305_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4106": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1305_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1306_001.png", - "glow_frame": "pixelart_1306_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4107": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1307_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1307_001.png", - "glow_frame": "pixelart_1307_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4108": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1308_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1308_001.png", - "glow_frame": "pixelart_1308_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4109": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1309_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1309_001.png", - "glow_frame": "pixelart_1309_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4110": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1310_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1310_001.png", - "glow_frame": "pixelart_1310_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4111": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1311_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1311_001.png", - "glow_frame": "pixelart_1311_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4112": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1312_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1312_001.png", - "glow_frame": "pixelart_1312_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4113": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1313_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1313_001.png", - "glow_frame": "pixelart_1313_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4114": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1314_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1314_001.png", - "glow_frame": "pixelart_1314_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4115": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1315_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1315_001.png", - "glow_frame": "pixelart_1315_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4116": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1316_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1316_001.png", - "glow_frame": "pixelart_1316_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4117": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1317_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1317_001.png", - "glow_frame": "pixelart_1317_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4118": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1318_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1318_001.png", - "glow_frame": "pixelart_1318_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4119": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1319_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1319_001.png", - "glow_frame": "pixelart_1319_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4120": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1320_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1320_001.png", - "glow_frame": "pixelart_1320_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4121": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1321_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1321_001.png", - "glow_frame": "pixelart_1321_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4122": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1255_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1322_001.png", - "glow_frame": "pixelart_1322_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4123": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1323_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1323_001.png", - "glow_frame": "pixelart_1323_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4124": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1324_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1324_001.png", - "glow_frame": "pixelart_1324_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4125": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1325_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1325_001.png", - "glow_frame": "pixelart_1325_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4126": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1326_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1326_001.png", - "glow_frame": "pixelart_1326_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4127": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1327_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1327_001.png", - "glow_frame": "pixelart_1327_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4128": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1327_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1328_001.png", - "glow_frame": "pixelart_1328_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4129": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1329_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1329_001.png", - "glow_frame": "pixelart_1329_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4130": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1330_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1330_001.png", - "glow_frame": "pixelart_1330_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4131": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1331_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1331_001.png", - "glow_frame": "pixelart_1331_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4132": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1332_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1332_001.png", - "glow_frame": "pixelart_1332_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4133": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1333_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1333_001.png", - "glow_frame": "pixelart_1333_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4134": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1334_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1334_001.png", - "glow_frame": "pixelart_1334_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4135": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1335_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1335_001.png", - "glow_frame": "pixelart_1335_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4136": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1336_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1336_001.png", - "glow_frame": "pixelart_1336_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4137": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1337_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1337_001.png", - "glow_frame": "pixelart_1337_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4138": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1338_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1338_001.png", - "glow_frame": "pixelart_1338_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4139": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1339_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1339_001.png", - "glow_frame": "pixelart_1339_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4140": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1340_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1340_001.png", - "glow_frame": "pixelart_1340_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4141": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1341_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1341_001.png", - "glow_frame": "pixelart_1341_glow_001.png", - "gridH": 0.5, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4142": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1342_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1342_001.png", - "glow_frame": "pixelart_1342_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.699999988079071, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4143": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1343_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1343_001.png", - "glow_frame": "pixelart_1343_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4144": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1344_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1344_001.png", - "glow_frame": "pixelart_1344_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4145": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1345_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1345_001.png", - "glow_frame": "pixelart_1345_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4146": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1346_001.png", - "glow_frame": "pixelart_1346_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4147": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1347_001.png", - "glow_frame": "pixelart_1347_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4148": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1348_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1348_001.png", - "glow_frame": "pixelart_1348_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4149": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1349_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1349_001.png", - "glow_frame": "pixelart_1349_glow_001.png", - "gridH": 0.5, - "gridW": 0.6333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4150": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1350_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1350_001.png", - "glow_frame": "pixelart_1350_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4151": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1351_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1351_001.png", - "glow_frame": "pixelart_1351_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.699999988079071, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4152": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1352_001.png", - "glow_frame": "pixelart_1352_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4153": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1353_001.png", - "glow_frame": "pixelart_1353_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4154": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1354_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1354_001.png", - "glow_frame": "pixelart_1354_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4155": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1355_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1355_001.png", - "glow_frame": "pixelart_1355_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4156": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1356_001.png", - "glow_frame": "pixelart_1356_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.6333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4157": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1357_001.png", - "glow_frame": "pixelart_1357_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4158": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1358_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1358_001.png", - "glow_frame": "pixelart_1358_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.9333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4159": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1359_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1359_001.png", - "glow_frame": "pixelart_1359_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4160": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1360_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1360_001.png", - "glow_frame": "pixelart_1360_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4161": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1361_001.png", - "glow_frame": "pixelart_1361_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4162": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1362_001.png", - "glow_frame": "pixelart_1362_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4163": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1363_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1363_001.png", - "glow_frame": "pixelart_1363_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4164": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1364_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1364_001.png", - "glow_frame": "pixelart_1364_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4165": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1365_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1365_001.png", - "glow_frame": "pixelart_1365_glow_001.png", - "gridH": 0.5, - "gridW": 1.0666667222976685, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4166": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1366_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1366_001.png", - "glow_frame": "pixelart_1366_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.800000011920929, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4167": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1367_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1367_001.png", - "glow_frame": "pixelart_1367_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4168": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1368_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1368_001.png", - "glow_frame": "pixelart_1368_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4169": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1369_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1369_001.png", - "glow_frame": "pixelart_1369_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4170": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1370_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1370_001.png", - "glow_frame": "pixelart_1370_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.7666666507720947, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4171": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1371_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1371_001.png", - "glow_frame": "pixelart_1371_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4172": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1372_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1372_001.png", - "glow_frame": "pixelart_1372_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.7666666507720947, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4173": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1373_001.png", - "glow_frame": "pixelart_1373_glow_001.png", - "gridH": 0.6666666865348816, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4174": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1374_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1374_001.png", - "glow_frame": "pixelart_1374_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4175": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1375_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1375_001.png", - "glow_frame": "pixelart_1375_glow_001.png", - "gridH": 0.9333333373069763, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4176": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1376_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1376_001.png", - "glow_frame": "pixelart_1376_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.800000011920929, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4177": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1377_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1377_001.png", - "glow_frame": "pixelart_1377_glow_001.png", - "gridH": 0.699999988079071, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4178": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1258_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1378_001.png", - "glow_frame": "pixelart_1378_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4179": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1379_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1379_001.png", - "glow_frame": "pixelart_1379_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4180": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1380_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1380_001.png", - "glow_frame": "pixelart_1380_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5666666626930237, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4181": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1381_001.png", - "glow_frame": "pixelart_1381_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4182": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1382_001.png", - "glow_frame": "pixelart_1382_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4183": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1383_001.png", - "glow_frame": "pixelart_1383_glow_001.png", - "gridH": 0.5, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4184": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1384_001.png", - "glow_frame": "pixelart_1384_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4185": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1385_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1385_001.png", - "glow_frame": "pixelart_1385_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.699999988079071, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4186": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1386_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1386_001.png", - "glow_frame": "pixelart_1386_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 1.2666666507720947, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4187": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1387_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1387_001.png", - "glow_frame": "pixelart_1387_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4188": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1388_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1388_001.png", - "glow_frame": "pixelart_1388_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4189": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1389_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1389_001.png", - "glow_frame": "pixelart_1389_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4190": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1390_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1390_001.png", - "glow_frame": "pixelart_1390_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4191": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1391_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1391_001.png", - "glow_frame": "pixelart_1391_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4192": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1392_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1392_001.png", - "glow_frame": "pixelart_1392_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4193": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1392_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1393_001.png", - "glow_frame": "pixelart_1393_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4194": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1394_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1394_001.png", - "glow_frame": "pixelart_1394_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4195": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1395_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1395_001.png", - "glow_frame": "pixelart_1395_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4196": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1396_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1396_001.png", - "glow_frame": "pixelart_1396_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4197": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1397_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1397_001.png", - "glow_frame": "pixelart_1397_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4198": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1398_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1398_001.png", - "glow_frame": "pixelart_1398_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4199": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1399_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1399_001.png", - "glow_frame": "pixelart_1399_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4200": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1258_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1400_001.png", - "glow_frame": "pixelart_1400_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4201": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1401_001.png", - "glow_frame": "pixelart_1401_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4202": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1402_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1402_001.png", - "glow_frame": "pixelart_1402_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4203": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1403_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1403_001.png", - "glow_frame": "pixelart_1403_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4204": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1404_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1404_001.png", - "glow_frame": "pixelart_1404_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4205": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1405_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1405_001.png", - "glow_frame": "pixelart_1405_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4206": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1406_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1406_001.png", - "glow_frame": "pixelart_1406_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4207": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1407_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1407_001.png", - "glow_frame": "pixelart_1407_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4208": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1408_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1408_001.png", - "glow_frame": "pixelart_1408_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4209": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1409_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1409_001.png", - "glow_frame": "pixelart_1409_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4210": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1410_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1410_001.png", - "glow_frame": "pixelart_1410_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4211": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1411_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1411_001.png", - "glow_frame": "pixelart_1411_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4212": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1412_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1412_001.png", - "glow_frame": "pixelart_1412_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4213": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1413_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1413_001.png", - "glow_frame": "pixelart_1413_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4214": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1414_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1414_001.png", - "glow_frame": "pixelart_1414_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4215": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1415_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1415_001.png", - "glow_frame": "pixelart_1415_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4216": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1416_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1416_001.png", - "glow_frame": "pixelart_1416_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4217": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1417_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1417_001.png", - "glow_frame": "pixelart_1417_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4218": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1418_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1418_001.png", - "glow_frame": "pixelart_1418_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4219": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1419_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1419_001.png", - "glow_frame": "pixelart_1419_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4220": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1420_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1420_001.png", - "glow_frame": "pixelart_1420_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4221": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1421_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1421_001.png", - "glow_frame": "pixelart_1421_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4222": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1422_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1422_001.png", - "glow_frame": "pixelart_1422_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4223": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1423_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1423_001.png", - "glow_frame": "pixelart_1423_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4224": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1424_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1424_001.png", - "glow_frame": "pixelart_1424_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4225": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1425_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1425_001.png", - "glow_frame": "pixelart_1425_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4226": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1426_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1426_001.png", - "glow_frame": "pixelart_1426_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4227": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1427_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1427_001.png", - "glow_frame": "pixelart_1427_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4228": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1428_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1428_001.png", - "glow_frame": "pixelart_1428_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4229": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1429_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1330_001.png", - "glow_frame": "pixelart_1330_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4230": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1430_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1430_001.png", - "glow_frame": "pixelart_1430_glow_001.png", - "gridH": 0.5, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4231": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1431_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1431_001.png", - "glow_frame": "pixelart_1431_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4232": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1432_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1432_001.png", - "glow_frame": "pixelart_1432_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4233": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1433_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1433_001.png", - "glow_frame": "pixelart_1433_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4234": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1434_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1434_001.png", - "glow_frame": "pixelart_1434_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4235": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1435_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1435_001.png", - "glow_frame": "pixelart_1435_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4236": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1436_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1436_001.png", - "glow_frame": "pixelart_1436_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4237": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1437_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1437_001.png", - "glow_frame": "pixelart_1437_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4238": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1438_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1438_001.png", - "glow_frame": "pixelart_1438_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4239": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1439_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1439_001.png", - "glow_frame": "pixelart_1439_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4240": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1440_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1440_001.png", - "glow_frame": "pixelart_1440_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4241": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1441_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1441_001.png", - "glow_frame": "pixelart_1441_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4242": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1442_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1442_001.png", - "glow_frame": "pixelart_1442_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4243": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1443_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1443_001.png", - "glow_frame": "pixelart_1443_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4244": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1444_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1444_001.png", - "glow_frame": "pixelart_1444_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4245": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1445_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1445_001.png", - "glow_frame": "pixelart_1445_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4246": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1446_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1446_001.png", - "glow_frame": "pixelart_1446_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4247": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1447_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1447_001.png", - "glow_frame": "pixelart_1447_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4248": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1448_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1448_001.png", - "glow_frame": "pixelart_1448_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4249": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1449_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1449_001.png", - "glow_frame": "pixelart_1449_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 0.8999999761581421, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4250": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1450_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1450_001.png", - "glow_frame": "pixelart_1450_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4251": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1451_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1451_001.png", - "glow_frame": "pixelart_1451_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4252": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1452_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1452_001.png", - "glow_frame": "pixelart_1452_glow_001.png", - "gridH": 0.5666666626930237, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4253": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1453_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1453_001.png", - "glow_frame": "pixelart_1453_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.6666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4254": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1454_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1454_001.png", - "glow_frame": "pixelart_1454_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4255": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1455_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1455_001.png", - "glow_frame": "pixelart_1455_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4256": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1456_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1456_001.png", - "glow_frame": "pixelart_1456_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4257": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1457_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1457_001.png", - "glow_frame": "pixelart_1457_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4258": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1458_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1458_001.png", - "glow_frame": "pixelart_1458_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4259": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1459_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1459_001.png", - "glow_frame": "pixelart_1459_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4260": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1460_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1460_001.png", - "glow_frame": "pixelart_1460_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4261": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1461_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1461_001.png", - "glow_frame": "pixelart_1461_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4262": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1462_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1462_001.png", - "glow_frame": "pixelart_1462_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4263": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1463_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1463_001.png", - "glow_frame": "pixelart_1463_glow_001.png", - "gridH": 0.5, - "gridW": 0.6000000238418579, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4264": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1464_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1464_001.png", - "glow_frame": "pixelart_1464_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4265": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1465_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1465_001.png", - "glow_frame": "pixelart_1465_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4266": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1466_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1466_001.png", - "glow_frame": "pixelart_1466_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4267": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1467_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1467_001.png", - "glow_frame": "pixelart_1467_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4268": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1468_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1468_001.png", - "glow_frame": "pixelart_1468_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4269": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1469_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1469_001.png", - "glow_frame": "pixelart_1469_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4270": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1470_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1470_001.png", - "glow_frame": "pixelart_1470_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4271": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1471_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1471_001.png", - "glow_frame": "pixelart_1471_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4272": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1472_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1472_001.png", - "glow_frame": "pixelart_1472_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4273": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1468_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1473_001.png", - "glow_frame": "pixelart_1473_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4274": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1474_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1474_001.png", - "glow_frame": "pixelart_1474_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4275": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1475_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1475_001.png", - "glow_frame": "pixelart_1475_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4276": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1476_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1476_001.png", - "glow_frame": "pixelart_1476_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4277": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1477_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1477_001.png", - "glow_frame": "pixelart_1477_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4278": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1478_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1478_001.png", - "glow_frame": "pixelart_1478_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4279": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1479_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1479_001.png", - "glow_frame": "pixelart_1479_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4280": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1480_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1480_001.png", - "glow_frame": "pixelart_1480_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4281": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1481_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1481_001.png", - "glow_frame": "pixelart_1481_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4282": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1482_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1482_001.png", - "glow_frame": "pixelart_1482_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4283": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1483_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1483_001.png", - "glow_frame": "pixelart_1483_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4284": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1484_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1484_001.png", - "glow_frame": "pixelart_1484_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4285": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1485_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1485_001.png", - "glow_frame": "pixelart_1485_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4286": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1486_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1486_001.png", - "glow_frame": "pixelart_1486_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4287": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1487_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1487_001.png", - "glow_frame": "pixelart_1487_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4288": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1488_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1488_001.png", - "glow_frame": "pixelart_1488_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4289": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1489_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1489_001.png", - "glow_frame": "pixelart_1489_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4290": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1490_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1490_001.png", - "glow_frame": "pixelart_1490_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4291": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1491_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1491_001.png", - "glow_frame": "pixelart_1491_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4292": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1492_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1492_001.png", - "glow_frame": "pixelart_1492_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4293": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1493_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1493_001.png", - "glow_frame": "pixelart_1493_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4294": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1494_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1494_001.png", - "glow_frame": "pixelart_1494_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4295": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1495_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1495_001.png", - "glow_frame": "pixelart_1495_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4296": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1496_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1496_001.png", - "glow_frame": "pixelart_1496_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4297": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1497_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1497_001.png", - "glow_frame": "pixelart_1497_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4298": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1498_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1498_001.png", - "glow_frame": "pixelart_1498_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4299": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1499_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1499_001.png", - "glow_frame": "pixelart_1499_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4300": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1500_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1500_001.png", - "glow_frame": "pixelart_1500_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.800000011920929, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4301": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1501_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1501_001.png", - "glow_frame": "pixelart_1501_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4302": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1502_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1502_001.png", - "glow_frame": "pixelart_1502_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4303": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1503_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1503_001.png", - "glow_frame": "pixelart_1503_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4304": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1504_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1504_001.png", - "glow_frame": "pixelart_1504_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4305": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1505_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1505_001.png", - "glow_frame": "pixelart_1505_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4306": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1506_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1506_001.png", - "glow_frame": "pixelart_1506_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4307": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1507_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1507_001.png", - "glow_frame": "pixelart_1507_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4308": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1508_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1508_001.png", - "glow_frame": "pixelart_1508_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4309": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1509_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1509_001.png", - "glow_frame": "pixelart_1509_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4310": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1510_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1510_001.png", - "glow_frame": "pixelart_1510_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4311": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1511_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1511_001.png", - "glow_frame": "pixelart_1511_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4312": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1512_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1512_001.png", - "glow_frame": "pixelart_1512_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4313": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1513_001.png", - "glow_frame": "pixelart_1513_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4314": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1126_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1139_001.png", - "glow_frame": "pixelart_1139_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.03333333507180214, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4315": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1515_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1515_001.png", - "glow_frame": "pixelart_1515_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4316": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1516_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1516_001.png", - "glow_frame": "pixelart_1516_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4317": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1517_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1517_001.png", - "glow_frame": "pixelart_1517_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4318": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1518_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1518_001.png", - "glow_frame": "pixelart_1518_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4319": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1519_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1519_001.png", - "glow_frame": "pixelart_1519_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4320": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1520_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1520_001.png", - "glow_frame": "pixelart_1520_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4321": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1521_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1521_001.png", - "glow_frame": "pixelart_1521_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4322": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1522_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1522_001.png", - "glow_frame": "pixelart_1522_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4323": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1523_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1523_001.png", - "glow_frame": "pixelart_1523_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4324": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1524_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1524_001.png", - "glow_frame": "pixelart_1524_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4325": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1525_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1525_001.png", - "glow_frame": "pixelart_1525_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4326": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1526_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1526_001.png", - "glow_frame": "pixelart_1526_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4327": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1527_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1527_001.png", - "glow_frame": "pixelart_1527_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4328": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1528_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1528_001.png", - "glow_frame": "pixelart_1528_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4329": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1529_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1529_001.png", - "glow_frame": "pixelart_1529_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4330": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1529_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1530_001.png", - "glow_frame": "pixelart_1530_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4331": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1531_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1531_001.png", - "glow_frame": "pixelart_1531_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4332": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1532_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1532_001.png", - "glow_frame": "pixelart_1532_glow_001.png", - "gridH": 0.5, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4333": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1533_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1533_001.png", - "glow_frame": "pixelart_1533_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4334": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1534_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1534_001.png", - "glow_frame": "pixelart_1534_glow_001.png", - "gridH": 0.5, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4335": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1535_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1535_001.png", - "glow_frame": "pixelart_1535_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4336": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1536_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1536_001.png", - "glow_frame": "pixelart_1536_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4337": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1537_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1537_001.png", - "glow_frame": "pixelart_1537_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4338": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1538_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1538_001.png", - "glow_frame": "pixelart_1538_glow_001.png", - "gridH": 0.6000000238418579, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4339": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1539_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1539_001.png", - "glow_frame": "pixelart_1539_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4340": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1540_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1540_001.png", - "glow_frame": "pixelart_1540_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4341": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1541_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1541_001.png", - "glow_frame": "pixelart_1541_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4342": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1542_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1542_001.png", - "glow_frame": "pixelart_1542_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4343": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1543_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1403_001.png", - "glow_frame": "pixelart_1403_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4344": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1544_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1544_001.png", - "glow_frame": "pixelart_1544_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4345": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1545_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1545_001.png", - "glow_frame": "pixelart_1545_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4346": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1546_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1546_001.png", - "glow_frame": "pixelart_1546_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4347": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1547_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1547_001.png", - "glow_frame": "pixelart_1547_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.10000000149011612, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4348": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1548_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1548_001.png", - "glow_frame": "pixelart_1548_glow_001.png", - "gridH": 0.5, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4349": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1549_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1549_001.png", - "glow_frame": "pixelart_1549_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4350": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1550_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1550_001.png", - "glow_frame": "pixelart_1550_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4351": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1551_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1551_001.png", - "glow_frame": "pixelart_1551_glow_001.png", - "gridH": 0.2666666805744171, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4352": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1552_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1552_001.png", - "glow_frame": "pixelart_1552_glow_001.png", - "gridH": 0.4000000059604645, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4353": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1553_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1553_001.png", - "glow_frame": "pixelart_1553_glow_001.png", - "gridH": 0.8999999761581421, - "gridW": 0.8999999761581421, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4354": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1554_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1554_001.png", - "glow_frame": "pixelart_1554_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4355": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1555_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1555_001.png", - "glow_frame": "pixelart_1555_glow_001.png", - "gridH": 0.30000001192092896, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4356": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1556_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1556_001.png", - "glow_frame": "pixelart_1556_glow_001.png", - "gridH": 0.36666667461395264, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4357": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1557_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1557_001.png", - "glow_frame": "pixelart_1557_glow_001.png", - "gridH": 0.3333333432674408, - "gridW": 0.23333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4358": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1558_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1558_001.png", - "glow_frame": "pixelart_1558_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4359": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1559_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1559_001.png", - "glow_frame": "pixelart_1559_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4360": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1560_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1560_001.png", - "glow_frame": "pixelart_1560_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.4000000059604645, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4361": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1561_001.png", - "glow_frame": "pixelart_1561_glow_001.png", - "gridH": 0.03333333507180214, - "gridW": 0.3333333432674408, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4362": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1562_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1562_001.png", - "glow_frame": "pixelart_1562_glow_001.png", - "gridH": 0.4333333373069763, - "gridW": 0.30000001192092896, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4363": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1563_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1563_001.png", - "glow_frame": "pixelart_1563_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.7333333492279053, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4364": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1564_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1564_001.png", - "glow_frame": "pixelart_1564_glow_001.png", - "gridH": 0.13333334028720856, - "gridW": 0.2666666805744171, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4365": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1565_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1565_001.png", - "glow_frame": "pixelart_1565_glow_001.png", - "gridH": 0.1666666716337204, - "gridW": 0.6333333253860474, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4366": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1566_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1566_001.png", - "glow_frame": "pixelart_1566_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.699999988079071, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4367": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1567_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1567_001.png", - "glow_frame": "pixelart_1567_glow_001.png", - "gridH": 0.23333333432674408, - "gridW": 0.36666667461395264, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4368": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1568_001.png", - "glow_frame": "pixelart_1568_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4369": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1569_001.png", - "glow_frame": "pixelart_1569_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4370": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1570_001.png", - "glow_frame": "pixelart_1570_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4371": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1571_001.png", - "glow_frame": "pixelart_1571_glow_001.png", - "gridH": 0.5, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4372": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1572_001.png", - "glow_frame": "pixelart_1572_glow_001.png", - "gridH": 0.5, - "gridW": 0.13333334028720856, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4373": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1573_001.png", - "glow_frame": "pixelart_1573_glow_001.png", - "gridH": 0.5, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4374": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1574_001.png", - "glow_frame": "pixelart_1574_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4375": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1575_001.png", - "glow_frame": "pixelart_1575_glow_001.png", - "gridH": 0.46666666865348816, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4376": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1576_001.png", - "glow_frame": "pixelart_1576_glow_001.png", - "gridH": 0.5, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4377": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1577_001.png", - "glow_frame": "pixelart_1577_glow_001.png", - "gridH": 0.06666667014360428, - "gridW": 0.06666667014360428, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4378": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1578_001.png", - "glow_frame": "pixelart_1578_glow_001.png", - "gridH": 0.5, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4379": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1579_001.png", - "glow_frame": "pixelart_1579_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.1666666716337204, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4380": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1580_001.png", - "glow_frame": "pixelart_1580_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.4333333373069763, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4381": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1581_001.png", - "glow_frame": "pixelart_1581_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.46666666865348816, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4382": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1582_001.png", - "glow_frame": "pixelart_1582_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4383": { - "can_color": true, - "default_base_color_channel": 1, - "frame": "pixelart_1583_001.png", - "glow_frame": "pixelart_1583_glow_001.png", - "gridH": 0.10000000149011612, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 10, - "default_detail_color_channel": -1, - "default_z_layer": 3, - "default_z_order": 10 - }, - "4384": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1584_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1584_001.png", - "glow_frame": "pixelart_1584_glow_001.png", - "gridH": 0.5333333611488342, - "gridW": 0.5333333611488342, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4385": { - "can_color": true, - "children": [ - { - "frame": "pixelart_1585_color_001.png", - "localDy": 0, - "tint": 52224, - "z": 100 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 2, - "frame": "pixelart_1585_001.png", - "glow_frame": "pixelart_1585_glow_001.png", - "gridH": 0.20000000298023224, - "gridW": 0.20000000298023224, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 3, - "default_z_order": 9 - }, - "4401": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_001_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_001_001.png", - "glow_frame": "pixelitem_001_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4402": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_002_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_002_001.png", - "glow_frame": "pixelitem_002_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4403": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_003_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_003_001.png", - "glow_frame": "pixelitem_003_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4404": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_004_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_004_001.png", - "glow_frame": "pixelitem_004_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4405": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_005_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_005_001.png", - "glow_frame": "pixelitem_005_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4406": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_006_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_006_001.png", - "glow_frame": "pixelitem_006_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4407": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_007_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_007_001.png", - "glow_frame": "pixelitem_007_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4408": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_008_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_008_001.png", - "glow_frame": "pixelitem_008_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4409": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_009_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_009_001.png", - "glow_frame": "pixelitem_009_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4410": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_010_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_010_001.png", - "glow_frame": "pixelitem_010_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4411": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_011_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_011_001.png", - "glow_frame": "pixelitem_011_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4412": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_012_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_012_001.png", - "glow_frame": "pixelitem_012_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4413": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_013_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_013_001.png", - "glow_frame": "pixelitem_013_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4414": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_014_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_014_001.png", - "glow_frame": "pixelitem_014_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4415": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_015_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_015_001.png", - "glow_frame": "pixelitem_015_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4416": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_016_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_016_001.png", - "glow_frame": "pixelitem_016_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4417": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_017_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_017_001.png", - "glow_frame": "pixelitem_017_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4418": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_018_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_018_001.png", - "glow_frame": "pixelitem_018_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4419": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_019_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_019_001.png", - "glow_frame": "pixelitem_019_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4420": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_020_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_020_001.png", - "glow_frame": "pixelitem_020_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4421": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_021_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_021_001.png", - "glow_frame": "pixelitem_021_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4422": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_022_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_022_001.png", - "glow_frame": "pixelitem_022_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4423": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_023_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_023_001.png", - "glow_frame": "pixelitem_023_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4424": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_024_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_024_001.png", - "glow_frame": "pixelitem_024_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4425": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_025_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_025_001.png", - "glow_frame": "pixelitem_025_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4426": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_026_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_026_001.png", - "glow_frame": "pixelitem_026_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4427": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_027_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_027_001.png", - "glow_frame": "pixelitem_027_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4428": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_028_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_028_001.png", - "glow_frame": "pixelitem_028_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4429": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_029_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_029_001.png", - "glow_frame": "pixelitem_029_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4430": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_030_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_030_001.png", - "glow_frame": "pixelitem_030_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4431": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_031_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_031_001.png", - "glow_frame": "pixelitem_031_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4432": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_032_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_032_001.png", - "glow_frame": "pixelitem_032_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4433": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_033_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_033_001.png", - "glow_frame": "pixelitem_033_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4434": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_034_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_034_001.png", - "glow_frame": "pixelitem_034_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4435": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_035_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_035_001.png", - "glow_frame": "pixelitem_035_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4436": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_036_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_036_001.png", - "glow_frame": "pixelitem_036_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4437": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_037_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_037_001.png", - "glow_frame": "pixelitem_037_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4438": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_038_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_038_001.png", - "glow_frame": "pixelitem_038_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4439": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_039_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_039_001.png", - "glow_frame": "pixelitem_039_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4440": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_040_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_040_001.png", - "glow_frame": "pixelitem_040_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4441": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_041_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_041_001.png", - "glow_frame": "pixelitem_041_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4442": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_042_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_042_001.png", - "glow_frame": "pixelitem_042_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4443": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_043_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_043_001.png", - "glow_frame": "pixelitem_043_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4444": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_044_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_044_001.png", - "glow_frame": "pixelitem_044_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4445": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_045_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_045_001.png", - "glow_frame": "pixelitem_045_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4446": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_046_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_046_001.png", - "glow_frame": "pixelitem_046_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4447": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_047_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_047_001.png", - "glow_frame": "pixelitem_047_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4448": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_048_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_048_001.png", - "glow_frame": "pixelitem_048_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4449": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_049_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_049_001.png", - "glow_frame": "pixelitem_049_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4450": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_050_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_050_001.png", - "glow_frame": "pixelitem_050_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4451": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_051_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_051_001.png", - "glow_frame": "pixelitem_051_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4452": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_052_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_052_001.png", - "glow_frame": "pixelitem_052_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4453": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_053_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_053_001.png", - "glow_frame": "pixelitem_053_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4454": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_054_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_054_001.png", - "glow_frame": "pixelitem_054_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4455": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_055_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_055_001.png", - "glow_frame": "pixelitem_055_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4456": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_056_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_056_001.png", - "glow_frame": "pixelitem_056_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4457": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_057_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_057_001.png", - "glow_frame": "pixelitem_057_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4458": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_058_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_058_001.png", - "glow_frame": "pixelitem_058_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4459": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_059_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_059_001.png", - "glow_frame": "pixelitem_059_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4460": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_060_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_060_001.png", - "glow_frame": "pixelitem_060_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4461": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_061_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_061_001.png", - "glow_frame": "pixelitem_061_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4462": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_062_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_062_001.png", - "glow_frame": "pixelitem_062_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4463": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_063_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_063_001.png", - "glow_frame": "pixelitem_063_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4464": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_064_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_064_001.png", - "glow_frame": "pixelitem_064_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4465": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_065_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_065_001.png", - "glow_frame": "pixelitem_065_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4466": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_066_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_066_001.png", - "glow_frame": "pixelitem_066_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4467": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_067_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_067_001.png", - "glow_frame": "pixelitem_067_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4468": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_068_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_068_001.png", - "glow_frame": "pixelitem_068_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4469": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_069_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_069_001.png", - "glow_frame": "pixelitem_069_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4470": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_070_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_070_001.png", - "glow_frame": "pixelitem_070_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4471": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_071_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_071_001.png", - "glow_frame": "pixelitem_071_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4472": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_072_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_072_001.png", - "glow_frame": "pixelitem_072_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4473": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_073_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_073_001.png", - "glow_frame": "pixelitem_073_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4474": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_074_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_074_001.png", - "glow_frame": "pixelitem_074_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4475": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_075_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_075_001.png", - "glow_frame": "pixelitem_075_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4476": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_076_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_076_001.png", - "glow_frame": "pixelitem_076_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4477": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_077_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_077_001.png", - "glow_frame": "pixelitem_077_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4478": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_078_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_078_001.png", - "glow_frame": "pixelitem_078_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4479": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_079_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_079_001.png", - "glow_frame": "pixelitem_079_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4480": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_080_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_080_001.png", - "glow_frame": "pixelitem_080_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4481": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_081_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_081_001.png", - "glow_frame": "pixelitem_081_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4482": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_082_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_082_001.png", - "glow_frame": "pixelitem_082_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4483": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_083_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_083_001.png", - "glow_frame": "pixelitem_083_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4484": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_084_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_084_001.png", - "glow_frame": "pixelitem_084_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4485": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_085_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_085_001.png", - "glow_frame": "pixelitem_085_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4486": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_086_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_086_001.png", - "glow_frame": "pixelitem_086_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4487": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_087_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_087_001.png", - "glow_frame": "pixelitem_087_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4488": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_088_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_088_001.png", - "glow_frame": "pixelitem_088_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4489": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_089_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_089_001.png", - "glow_frame": "pixelitem_089_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4490": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_090_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_090_001.png", - "glow_frame": "pixelitem_090_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4491": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_091_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_091_001.png", - "glow_frame": "pixelitem_091_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4492": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_092_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_092_001.png", - "glow_frame": "pixelitem_092_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4493": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_093_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_093_001.png", - "glow_frame": "pixelitem_093_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4494": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_094_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_094_001.png", - "glow_frame": "pixelitem_094_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4495": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_095_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_095_001.png", - "glow_frame": "pixelitem_095_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4496": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_096_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_096_001.png", - "glow_frame": "pixelitem_096_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4497": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_097_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_097_001.png", - "glow_frame": "pixelitem_097_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4498": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_098_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_098_001.png", - "glow_frame": "pixelitem_098_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4499": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_099_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_099_001.png", - "glow_frame": "pixelitem_099_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4500": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_100_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_100_001.png", - "glow_frame": "pixelitem_100_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4501": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_101_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_101_001.png", - "glow_frame": "pixelitem_101_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4502": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_102_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_102_001.png", - "glow_frame": "pixelitem_102_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4503": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_103_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_103_001.png", - "glow_frame": "pixelitem_103_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4504": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_104_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_104_001.png", - "glow_frame": "pixelitem_104_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4505": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_105_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_105_001.png", - "glow_frame": "pixelitem_105_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4506": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_106_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_106_001.png", - "glow_frame": "pixelitem_106_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4507": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_107_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_107_001.png", - "glow_frame": "pixelitem_107_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4508": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_108_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_108_001.png", - "glow_frame": "pixelitem_108_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4509": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_109_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_109_001.png", - "glow_frame": "pixelitem_109_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4510": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_110_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_110_001.png", - "glow_frame": "pixelitem_110_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4511": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_111_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_111_001.png", - "glow_frame": "pixelitem_111_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4512": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_112_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_112_001.png", - "glow_frame": "pixelitem_112_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4513": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_113_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_113_001.png", - "glow_frame": "pixelitem_113_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4514": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_114_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_114_001.png", - "glow_frame": "pixelitem_114_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4515": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_115_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_115_001.png", - "glow_frame": "pixelitem_115_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4516": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_116_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_116_001.png", - "glow_frame": "pixelitem_116_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4517": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_117_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_117_001.png", - "glow_frame": "pixelitem_117_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4518": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_118_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_118_001.png", - "glow_frame": "pixelitem_118_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4519": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_119_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_119_001.png", - "glow_frame": "pixelitem_119_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4520": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_120_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_120_001.png", - "glow_frame": "pixelitem_120_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4521": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_121_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_121_001.png", - "glow_frame": "pixelitem_121_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4522": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_122_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_122_001.png", - "glow_frame": "pixelitem_122_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4523": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_123_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_123_001.png", - "glow_frame": "pixelitem_123_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4524": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_124_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_124_001.png", - "glow_frame": "pixelitem_124_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4525": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_125_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_125_001.png", - "glow_frame": "pixelitem_125_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4526": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_126_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_126_001.png", - "glow_frame": "pixelitem_126_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4527": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_127_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_127_001.png", - "glow_frame": "pixelitem_127_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4528": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_128_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_128_001.png", - "glow_frame": "pixelitem_128_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4529": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_129_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_129_001.png", - "glow_frame": "pixelitem_129_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4530": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_130_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_130_001.png", - "glow_frame": "pixelitem_130_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4531": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_131_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_131_001.png", - "glow_frame": "pixelitem_131_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4532": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_132_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_132_001.png", - "glow_frame": "pixelitem_132_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4533": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_133_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_133_001.png", - "glow_frame": "pixelitem_133_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4534": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_134_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_134_001.png", - "glow_frame": "pixelitem_134_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4535": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_135_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_135_001.png", - "glow_frame": "pixelitem_135_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4536": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_136_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_136_001.png", - "glow_frame": "pixelitem_136_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4537": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_137_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_137_001.png", - "glow_frame": "pixelitem_137_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4538": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_138_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_138_001.png", - "glow_frame": "pixelitem_138_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - }, - "4539": { - "can_color": true, - "children": [ - { - "frame": "pixelitem_139_001.png", - "localDy": 0, - "tint": 65280, - "z": -1 - } - ], - "default_base_color_channel": 1, - "default_detail_color_channel": 1011, - "frame": "pixelitem_139_001.png", - "glow_frame": "pixelitem_139_glow_001.png", - "gridH": 1, - "gridW": 1, - "spritesheet": "PixelSheet_01-uhd", - "type": "deco", - "z": 9, - "default_z_layer": 5, - "default_z_order": 9 - } -}; -} +// -1: No color +// 1: P Color +// 2: P Color 2 +// 1000: Background Color +// 1001: Ground Color +// 1004: Default Color (white) +// 1006: Glow +// 1011: Detail Color FOr animated blocks (ill add some later) + +window.allobjects = function() { + return { + "0": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "player_04-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1": { + "type": "solid", + "frame": "square_01_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2": { + "type": "solid", + "frame": "square_02_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3": { + "type": "solid", + "frame": "square_03_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "4": { + "type": "solid", + "frame": "square_04_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "5": { + "type": "deco", + "frame": "square_05_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "6": { + "type": "solid", + "frame": "square_06_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "7": { + "type": "solid", + "frame": "square_07_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "8": { + "type": "hazard", + "frame": "spike_01_001.png", + "gridW": 1, + "gridH": 1, + "spriteW": 30, + "spriteH": 30, + "hitboxScaleX": 0.2, + "hitboxScaleY": 0.4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "9": { + "type": "hazard", + "frame": "pit_01_001.png", + "gridW": 0, + "gridH": 0, + "black": true, + "can_color": false, + "spriteW": 30, + "spriteH": 27, + "hitboxScaleX": 0.3, + "hitboxScaleY": 0.4, + "randomFrames": [ + "pit_01_001.png", + "pit_02_001.png", + "pit_03_001.png" + ], + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "10": { + "type": "portal", + "frame": "portal_01_front_001.png", + "gridW": 0.8333333134651184, + "gridH": 2.5, + "sub": "gravity_flip", + "portalParticle": true, + "portalParticleColor": 2736127, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "11": { + "type": "portal", + "frame": "portal_02_front_001.png", + "gridW": 0.8333333134651184, + "gridH": 2.5, + "sub": "gravity_normal", + "portalParticle": true, + "portalParticleColor": 15462948, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "12": { + "type": "portal", + "frame": "portal_03_front_001.png", + "gridW": 1, + "gridH": 3, + "sub": "cube", + "portalParticle": true, + "portalParticleColor": 5111552, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "13": { + "type": "portal", + "frame": "portal_04_front_001.png", + "gridW": 1, + "gridH": 3, + "sub": "fly", + "portalParticle": true, + "portalParticleColor": 16711935, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "15": { + "type": "deco", + "frame": "rod_01_001.png", + "gridW": 0, + "gridH": 0, + "z": -6, + "children": [ + { + "frame": "rod_ball_01_001.png", + "localDy": -62, + "blend": "additive", + "tint": 327424, + "z": 1, + "audioScale": true + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "16": { + "type": "deco", + "frame": "rod_02_001.png", + "gridW": 0, + "gridH": 0, + "z": -6, + "children": [ + { + "frame": "rod_ball_01_001.png", + "localDy": -46.5, + "blend": "additive", + "tint": 327424, + "z": 1, + "audioScale": true + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "17": { + "type": "deco", + "frame": "rod_03_001.png", + "gridW": 0, + "gridH": 0, + "z": -6, + "children": [ + { + "frame": "rod_ball_01_001.png", + "localDy": -32.5, + "blend": "additive", + "tint": 327424, + "z": 1, + "audioScale": true + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "18": { + "type": "deco", + "frame": "d_spikes_01_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 327424, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "19": { + "type": "deco", + "frame": "d_spikes_02_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 327424, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "20": { + "type": "deco", + "frame": "d_spikes_03_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 327424, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "21": { + "type": "deco", + "frame": "d_spikes_04_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 327424, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "22": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "enterEffect": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "23": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "enterEffect": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "24": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "enterEffect": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "25": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "enterEffect": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "26": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "enterEffect": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "27": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "enterEffect": 5, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "28": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "enterEffect": 6, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "29": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "colorIdx": 1000, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "30": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "colorIdx": 1001, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "31": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "32": { + "type": "trigger", + "frame": null, + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "33": { + "type": "trigger", + "frame": null, + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "34": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 0.7666666507720947, + "gridW": 1.2333333492279053, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "35": { + "type": "pad", + "frame": "bump_01_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.8333333134651184, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "36": { + "type": "ring", + "frame": "ring_01_001.png", + "gridW": 1.2, + "gridH": 1.2, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "39": { + "type": "hazard", + "frame": "spike_02_001.png", + "gridW": 1, + "gridH": 1, + "spriteW": 30, + "spriteH": 14, + "hitboxScaleX": 0.2, + "hitboxScaleY": 0.4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "40": { + "type": "solid", + "frame": "plank_01_001.png", + "can_color": false, + "gridW": 1, + "gridH": 0.5, + "children": [ + { + "frame": "plank_01_color_001.png", + "tint": 0 + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "41": { + "type": "deco", + "frame": "chain_01_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 327424, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "44": { + "type": "deco", + "frame": null, + "gridW": 0, + "gridH": 0 + }, + "45": { + "type": "portal", + "frame": "portal_05_front_001.png", + "gridW": 1, + "gridH": 3, + "sub": "mirrora", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "46": { + "type": "portal", + "frame": "portal_06_front_001.png", + "gridW": 1, + "gridH": 3, + "sub": "mirrorb", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "47": { + "type": "portal", + "frame": "portal_07_front_001.png", + "gridW": 1, + "gridH": 3, + "sub": "ball", + "portalParticle": true, + "portalParticleColor": 16711680, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "48": { + "type": "deco", + "frame": "d_cloud_01_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 64511, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "49": { + "type": "deco", + "frame": "d_cloud_02_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 64511, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "50": { + "type": "deco", + "frame": "d_ball_01_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "51": { + "type": "deco", + "frame": "d_ball_02_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "52": { + "type": "deco", + "frame": "d_ball_03_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "53": { + "type": "deco", + "frame": "d_ball_04_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 64511, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "54": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_ball_05_001.png", + "glow_frame": "d_ball_05_glow_001.png", + "gridH": 0.949999988079071, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "55": { + "type": "deco", + "frame": "d_ball_06_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "56": { + "type": "deco", + "frame": "d_ball_07_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "57": { + "type": "deco", + "frame": "d_ball_08_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "58": { + "type": "deco", + "frame": "d_ball_09_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "59": { + "type": "trigger", + "frame": null, + "gridW": 1, + "gridH": 1, + "glow": true, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "60": { + "type": "deco", + "frame": "d_ball_06_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "61": { + "type": "hazard", + "frame": "pit_04_001.png", + "gridW": 0, + "gridH": 0, + "black": true, + "can_color": false, + "spriteW": 30, + "spriteH": 18, + "hitboxScaleX": 0.3, + "hitboxScaleY": 0.4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "62": { + "type": "solid", + "frame": "square_b_01_001.png", + "can_color": false, + "gridW": 1, + "gridH": 0.5, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "63": { + "type": "solid", + "frame": "square_b_02_001.png", + "can_color": false, + "gridW": 1, + "gridH": 0.5, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "64": { + "type": "solid", + "frame": "square_b_03_001.png", + "can_color": false, + "gridW": 1, + "gridH": 0.5, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "65": { + "type": "solid", + "frame": "square_b_04_001.png", + "can_color": false, + "gridW": 1, + "gridH": 0.5, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "66": { + "type": "solid", + "frame": "square_b_05_001.png", + "can_color": true, + "black": true, + "gridW": 1, + "gridH": 0.5, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "67": { + "type": "pad", + "frame": "gravbump_01_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.8333333134651184, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "68": { + "type": "solid", + "frame": "square_b_06_001.png", + "can_color": false, + "gridW": 1, + "gridH": 0.5, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "69": { + "type": "solid", + "frame": "blockOutline_01_001.png", + "gridW": 1, + "gridH": 1, + "glow": true, + "children": [ + { + "frame": "square_c_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "70": { + "type": "solid", + "frame": "lightsquare_01_02_001.png", + "gridW": 1, + "gridH": 1, + "glow": true, + "children": [ + { + "frame": "square_c_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "71": { + "type": "solid", + "frame": "blockOutline_03_001.png", + "gridW": 1, + "gridH": 1, + "glow": true, + "children": [ + { + "frame": "square_c_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "72": { + "type": "solid", + "frame": "blockOutline_06_001.png", + "gridW": 1, + "gridH": 1, + "glow": true, + "children": [ + { + "frame": "square_c_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "73": { + "type": "deco", + "frame": "square_c_05_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "74": { + "type": "solid", + "frame": "blockOutline_04_001.png", + "gridW": 1, + "gridH": 1, + "glow": true, + "children": [ + { + "frame": "square_c_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "75": { + "type": "solid", + "frame": "blockOutline_05_001.png", + "gridW": 1, + "gridH": 1, + "glow": true, + "children": [ + { + "frame": "square_c_05_001.png", + "localDy": 0, + "z": -1 + }, + { + "frame": "blockOutline_05_001.png", + "localDy": 0, + "z": 1 + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "76": { + "can_color": false, + "children": [ + { + "frame": "square_d_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "lightsquare_04_02_001.png", + "glow_frame": "lightsquare_04_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "77": { + "can_color": false, + "children": [ + { + "frame": "square_d_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "lightsquare_04_02_001.png", + "glow_frame": "lightsquare_04_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "78": { + "can_color": false, + "children": [ + { + "frame": "square_d_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "lightsquare_04_02_001.png", + "glow_frame": "lightsquare_04_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "80": { + "can_color": false, + "default_base_color_channel": 1004, + "frame": "square_d_05_001.png", + "glow_frame": "square_d_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "81": { + "can_color": false, + "children": [ + { + "frame": "square_d_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "lightsquare_04_02_001.png", + "glow_frame": "lightsquare_04_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "82": { + "can_color": false, + "children": [ + { + "frame": "square_d_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "lightsquare_04_sideLine_001.png", + "glow_frame": "lightsquare_04_sideLine_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "83": { + "type": "solid", + "frame": "square_08_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "84": { + "type": "ring", + "frame": "gravring_01_001.png", + "gridW": 1.2, + "gridH": 1.2, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "85": { + "can_color": true, + "children": [ + { + "frame": "d_cogwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_cogwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_cogwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_cogwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_cogwheel_01_001.png", + "glow_frame": "d_cogwheel_01_glow_001.png", + "gridH": 1.1833332777023315, + "gridW": 1.1833332777023315, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "86": { + "can_color": true, + "children": [ + { + "frame": "d_cogwheel_02_001.png", + "localDy": 0, + "tint": 327424, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_cogwheel_02_001.png", + "glow_frame": "d_cogwheel_02_glow_001.png", + "gridH": 1.8166667222976685, + "gridW": 1.7833333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "87": { + "can_color": true, + "children": [ + { + "frame": "d_cogwheel_03_001.png", + "localDy": 0, + "blend": "additive", + "tint": 327424, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_cogwheel_03_001.png", + "glow_frame": "d_cogwheel_03_glow_001.png", + "gridH": 1.25, + "gridW": 1.25, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "88": { + "type": "hazard", + "frame": "sawblade_01_001.png", + "gridW": 1, + "gridH": 1, + "hitbox_radius": 32.29999923706055, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "89": { + "type": "hazard", + "frame": "sawblade_02_001.png", + "gridW": 2, + "gridH": 2, + "hitbox_radius": 21.600000381469727, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "90": { + "can_color": false, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "91": { + "can_color": false, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "lightsquare_01_02_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "92": { + "can_color": false, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_03_001.png", + "glow_frame": "blockOutline_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "93": { + "can_color": false, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_06_001.png", + "glow_frame": "blockOutline_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "94": { + "type": "solid", + "frame": "block005b_05_001.png", + "can_color": false, + "gridW": 1, + "gridH": 1, + "glow": true, + "black": true, + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "95": { + "can_color": false, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_04_001.png", + "glow_frame": "blockOutline_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "96": { + "can_color": false, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + }, + { + "frame": "blockOutline_05_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_05_001.png", + "glow_frame": "blockOutline_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "97": { + "can_color": true, + "children": [ + { + "frame": "d_cogwheel_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_cogwheel_04_001.png", + "glow_frame": "d_cogwheel_04_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "98": { + "type": "hazard", + "frame": "sawblade_03_001.png", + "gridW": 3, + "gridH": 3, + "hitbox_radius": 11.77500057220459, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "99": { + "type": "portal", + "frame": "portal_08_front_001.png", + "gridW": 1, + "gridH": 3, + "sub": "grow", + "portalParticle": true, + "portalParticleColor": 5111552, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "101": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_09_front_001.png", + "glow_frame": "portal_09_front_glow_001.png", + "gridH": 3, + "gridW": 1.0333333015441895, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "sub": "shrink", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "103": { + "type": "hazard", + "frame": "spike_03_001.png", + "gridW": 0.5, + "gridH": 0.5, + "spriteW": 20, + "spriteH": 19, + "hitboxScaleX": 0.2, + "hitboxScaleY": 0.4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "104": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0 + }, + "105": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "106": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_02_chain_01_001.png", + "glow_frame": "d_02_chain_01_glow_001.png", + "gridH": 2.183333396911621, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "107": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_02_chain_02_001.png", + "glow_frame": "d_02_chain_02_glow_001.png", + "gridH": 1.2666666507720947, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "110": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_chain_02_001.png", + "glow_frame": "d_chain_02_glow_001.png", + "gridH": 1.1333333253860474, + "gridW": 0.6499999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "111": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_10_front_001.png", + "glow_frame": "portal_10_front_glow_001.png", + "gridH": 2.866666555404663, + "gridW": 1.1333333253860474, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "113": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_brick_01_001.png", + "glow_frame": "d_brick_01_glow_001.png", + "gridH": 1.3166667222976685, + "gridW": 4.150000095367432, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "blend": "additive", + "tint": 327424, + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "114": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_brick_02_001.png", + "glow_frame": "d_brick_02_glow_001.png", + "gridH": 1.1166666746139526, + "gridW": 2.866666555404663, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "115": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_brick_03_001.png", + "glow_frame": "d_brick_03_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 1.850000023841858, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "116": { + "type": "solid", + "frame": "square_f_01_001.png", + "gridW": 1, + "gridH": 1, + "spritesheet": "GJ_GameSheet-uhd", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "117": { + "type": "solid", + "frame": "square_f_02_001.png", + "gridW": 1, + "gridH": 1, + "spritesheet": "GJ_GameSheet-uhd", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "118": { + "type": "solid", + "frame": "square_f_03_001.png", + "gridW": 1, + "gridH": 1, + "spritesheet": "GJ_GameSheet-uhd", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "119": { + "type": "solid", + "frame": "blockOutline_06_001.png", + "gridW": 1, + "gridH": 1, + "spritesheet": "GJ_GameSheet-uhd", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "120": { + "type": "deco", + "frame": "square_f_05_001.png", + "gridW": 0, + "gridH": 0, + "spritesheet": "GJ_GameSheet-uhd", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "121": { + "type": "solid", + "frame": "square_f_06_001.png", + "gridW": 1, + "gridH": 1, + "spritesheet": "GJ_GameSheet-uhd", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "122": { + "type": "solid", + "frame": "square_f_07_001.png", + "gridW": 1, + "gridH": 1, + "spritesheet": "GJ_GameSheet-uhd", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "123": { + "type": "deco", + "frame": "d_thorn_01_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "124": { + "type": "deco", + "frame": "d_thorn_02_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "125": { + "type": "deco", + "frame": "d_smallBall_01_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "126": { + "type": "deco", + "frame": "d_smallBall_02_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "127": { + "type": "deco", + "frame": "d_smallBall_03_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "128": { + "type": "deco", + "frame": "d_smallBall_04_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "129": { + "type": "deco", + "frame": "d_cloud_03_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "130": { + "type": "deco", + "frame": "d_cloud_04_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "131": { + "type": "deco", + "frame": "d_cloud_05_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "132": { + "type": "deco", + "frame": "d_arrow_01_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "133": { + "type": "deco", + "frame": "d_exmark_01_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "134": { + "type": "deco", + "frame": "d_art_01_001.png", + "gridW": 0.46666666865348816, + "gridH": 1.0333333015441895, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "135": { + "type": "deco", + "frame": "fakeSpike_01_001.png", + "gridW": 0, + "gridH": 0, + "black": true, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "136": { + "type": "deco", + "frame": "d_qmark_01_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "137": { + "type": "deco", + "frame": "d_wheel_01_001.png", + "gridW": 1.350000023841858, + "gridH": 2.6666667461395264, + "children": [ + { + "frame": "d_wheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_wheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "138": { + "type": "deco", + "frame": "d_wheel_02_001.png", + "gridW": 1.7000000476837158, + "gridH": 1.7000000476837158, + "children": [ + { + "frame": "d_wheel_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "139": { + "type": "deco", + "frame": "d_wheel_03_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "140": { + "type": "pad", + "frame": "bump_03_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.8333333134651184, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "141": { + "type": "ring", + "frame": "ring_03_001.png", + "gridW": 1.2, + "gridH": 1.2, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "142": { + "type": "coin", + "frame": "secretCoin_01_001.png", + "gridW": 1, + "gridH": 1, + "animFrames": [ + "secretCoin_01_001.png", + "secretCoin_01_002.png", + "secretCoin_01_003.png", + "secretCoin_01_004.png" + ], + "animInterval": 100 + }, + "143": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "brick_02_001.png", + "glow_frame": "brick_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "144": { + "type": "deco", + "frame": "d_circle_02_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "145": { + "type": "deco", + "frame": "d_smallBall_05_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "146": { + "type": "solid", + "frame": "invis_square_01_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "147": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "invis_plank_01_001.png", + "glow_frame": "invis_plank_01_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "148": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_ball_07_001.png", + "glow_frame": "d_ball_07_glow_001.png", + "gridH": 0.9166666865348816, + "gridW": 0.9166666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "149": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_ball_08_001.png", + "glow_frame": "d_ball_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "150": { + "type": "deco", + "frame": "d_cross_01_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "151": { + "type": "deco", + "frame": "d_spikeart_01_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 65280, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "152": { + "type": "deco", + "frame": "d_spikeart_02_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 65280, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "153": { + "type": "deco", + "frame": "d_spikeart_03_001.png", + "gridW": 0, + "gridH": 0, + "blend": "additive", + "tint": 65280, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "154": { + "can_color": true, + "children": [ + { + "frame": "d_spikewheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_spikewheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_spikewheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_spikewheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_spikewheel_01_001.png", + "glow_frame": "d_spikewheel_01_glow_001.png", + "gridH": 1.1666666269302368, + "gridW": 1.1666666269302368, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "155": { + "can_color": true, + "children": [ + { + "frame": "d_spikewheel_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_spikewheel_02_001.png", + "glow_frame": "d_spikewheel_02_glow_001.png", + "gridH": 1.3666666746139526, + "gridW": 1.5666667222976685, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "156": { + "can_color": true, + "children": [ + { + "frame": "d_spikewheel_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_spikewheel_03_001.png", + "glow_frame": "d_spikewheel_03_glow_001.png", + "gridH": 1.2999999523162842, + "gridW": 0.3166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "157": { + "type": "deco", + "frame": "d_wave_01_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "158": { + "type": "deco", + "frame": "d_wave_02_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "159": { + "type": "deco", + "frame": "d_wave_03_001.png", + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "160": { + "can_color": true, + "children": [ + { + "frame": "square_g_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "161": { + "can_color": true, + "children": [ + { + "frame": "square_g_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "lightsquare_01_02_001.png", + "glow_frame": "lightsquare_01_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "162": { + "type": "solid", + "frame": "blockOutline_03_001.png", + "gridW": 1, + "gridH": 1, + "spritesheet": "GJ_GameSheet-uhd", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "163": { + "can_color": true, + "children": [ + { + "frame": "square_g_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_06_001.png", + "glow_frame": "blockOutline_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "164": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_05_001.png", + "glow_frame": "square_g_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "165": { + "type": "solid", + "frame": "blockOutline_04_001.png", + "gridW": 1, + "gridH": 1, + "spritesheet": "GJ_GameSheet-uhd", + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "166": { + "can_color": true, + "children": [ + { + "frame": "square_g_07_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutline_05_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_05_001.png", + "glow_frame": "blockOutline_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "167": { + "can_color": true, + "children": [ + { + "frame": "square_g_08_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutline_06_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_06_001.png", + "glow_frame": "blockOutline_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "168": { + "can_color": true, + "children": [ + { + "frame": "square_g_09_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "169": { + "can_color": true, + "children": [ + { + "frame": "square_g_10_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "170": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_01_001.png", + "glow_frame": "square_h_01_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "171": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_02_001.png", + "glow_frame": "square_h_02_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "172": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_03_001.png", + "glow_frame": "square_h_03_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "173": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_04_001.png", + "glow_frame": "square_h_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "174": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_05_001.png", + "glow_frame": "square_h_05_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "175": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_06_001.png", + "glow_frame": "square_h_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "176": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_07_001.png", + "glow_frame": "square_h_07_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "177": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "iceSpike_01_001.png", + "glow_frame": "iceSpike_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "178": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "iceSpike_02_001.png", + "glow_frame": "iceSpike_02_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "179": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "iceSpike_03_001.png", + "glow_frame": "iceSpike_03_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "180": { + "can_color": true, + "children": [ + { + "frame": "d_cartwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_cartwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_cartwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_cartwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1006, + "frame": "d_cartwheel_01_001.png", + "glow_frame": "d_cartwheel_01_glow_001.png", + "gridH": 0.9083333611488342, + "gridW": 0.9083333611488342, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "181": { + "can_color": true, + "children": [ + { + "frame": "d_cartwheel_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1006, + "frame": "d_cartwheel_02_001.png", + "glow_frame": "d_cartwheel_02_glow_001.png", + "gridH": 1.2000000476837158, + "gridW": 1.2083333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "182": { + "can_color": true, + "children": [ + { + "frame": "d_cartwheel_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1006, + "frame": "d_cartwheel_03_001.png", + "glow_frame": "d_cartwheel_03_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.8166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "183": { + "can_color": true, + "children": [ + { + "frame": "blade_b_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blade_b_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "blade_b_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "blade_b_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "blade_b_01_001.png", + "glow_frame": "blade_b_01_glow_001.png", + "gridH": 1.4333332777023315, + "gridW": 1.4333332777023315, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 15.300000190734863, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "184": { + "can_color": true, + "children": [ + { + "frame": "blade_b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blade_b_02_001.png", + "glow_frame": "blade_b_02_glow_001.png", + "gridH": 1.7666666507720947, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 20.399999618530273, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "185": { + "can_color": true, + "children": [ + { + "frame": "blade_b_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blade_b_03_001.png", + "glow_frame": "blade_b_03_glow_001.png", + "gridH": 1.3333333730697632, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 2.8500001430511475, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "186": { + "can_color": true, + "children": [ + { + "frame": "blade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "blade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "blade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "blade_01_001.png", + "glow_frame": "blade_01_glow_001.png", + "gridH": 1.4333332777023315, + "gridW": 1.4333332777023315, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 32.29999923706055, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "187": { + "can_color": true, + "children": [ + { + "frame": "blade_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blade_02_001.png", + "glow_frame": "blade_02_glow_001.png", + "gridH": 2.0333333015441895, + "gridW": 2.0333333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 21.8700008392334, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "188": { + "can_color": true, + "children": [ + { + "frame": "blade_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blade_03_001.png", + "glow_frame": "blade_03_glow_001.png", + "gridH": 1.399999976158142, + "gridW": 1.399999976158142, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 12.600000381469727, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "190": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_art_02_001.png", + "glow_frame": "d_art_02_glow_001.png", + "gridH": 1.6333333253860474, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "191": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "fakeSpike_01_001.png", + "glow_frame": "fakeSpike_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -4, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -4 + }, + "192": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_08_001.png", + "glow_frame": "square_h_08_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "193": { + "type": "deco", + "frame": "square_g_11_001.png", + "gridH": 1, + "gridW": 1, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "194": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_09_001.png", + "glow_frame": "square_h_09_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 0.699999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "195": { + "type": "solid", + "frame": "square_01_001.png", + "gridW": 0.5, + "gridH": 0.5, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "196": { + "type": "solid", + "frame": "plank_01_001.png", + "gridW": 0.5, + "gridH": 0.25, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "197": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_h_10_001.png", + "glow_frame": "square_h_10_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 0.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "198": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "fakeSpike_02_001.png", + "glow_frame": "fakeSpike_02_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -4, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -4 + }, + "199": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "fakeSpike_03_001.png", + "glow_frame": "fakeSpike_03_glow_001.png", + "gridH": 0.6333333253860474, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -4, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -4 + }, + "200": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "boost_01_001.png", + "glow_frame": "boost_01_glow_001.png", + "gridH": 1.4666666984558105, + "gridW": 1.1666666269302368, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "speed", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 4, + "default_z_order": -6 + }, + "201": { + "type": "speed", + "frame": "boost_02_001.png", + "gridW": 1, + "gridH": 3, + "sub": "normal", + "default_detail_color_channel": -1, + "default_z_layer": 4, + "default_z_order": -6 + }, + "202": { + "type": "speed", + "frame": "boost_03_001.png", + "gridW": 1, + "gridH": 3, + "sub": "fast", + "default_detail_color_channel": -1, + "default_z_layer": 4, + "default_z_order": -6 + }, + "203": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "boost_04_001.png", + "glow_frame": "boost_04_glow_001.png", + "gridH": 1.8666666746139526, + "gridW": 2.1666667461395264, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "speed", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 4, + "default_z_order": -6 + }, + "204": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "invis_plank_01_small_001.png", + "glow_frame": "invis_plank_01_small_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "205": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "invis_spike_02_001.png", + "glow_frame": "invis_spike_02_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "206": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "invis_square_01_small_001.png", + "glow_frame": "invis_square_01_small_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "207": { + "can_color": true, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "208": { + "can_color": true, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "209": { + "can_color": true, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_03_001.png", + "glow_frame": "blockOutline_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "210": { + "can_color": true, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_06_001.png", + "glow_frame": "blockOutline_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "211": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "212": { + "can_color": true, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_01_06_001.png", + "glow_frame": "lightsquare_01_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "213": { + "can_color": true, + "children": [ + { + "frame": "block005b_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_01_07_001.png", + "glow_frame": "lightsquare_01_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "215": { + "can_color": true, + "children": [ + { + "frame": "colorPlank_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "colorPlank_01_001.png", + "glow_frame": "colorPlank_01_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "216": { + "can_color": true, + "children": [ + { + "frame": "colorSpike_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "colorSpike_01_001.png", + "glow_frame": "colorSpike_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "217": { + "can_color": true, + "children": [ + { + "frame": "colorSpike_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "colorSpike_02_001.png", + "glow_frame": "colorSpike_02_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "218": { + "can_color": true, + "children": [ + { + "frame": "colorSpike_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "colorSpike_03_001.png", + "glow_frame": "colorSpike_03_glow_001.png", + "gridH": 0.6333333253860474, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "219": { + "can_color": true, + "children": [ + { + "frame": "colorPlank_01_small_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "colorPlank_01_small_001.png", + "glow_frame": "colorPlank_01_small_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "220": { + "can_color": true, + "children": [ + { + "frame": "colorSquare_01_small_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_10_001.png", + "glow_frame": "blockOutline_10_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "221": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0 + }, + "222": { + "can_color": true, + "children": [ + { + "frame": "d_roundCloud_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_roundCloud_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_roundCloud_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_roundCloud_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_roundCloud_01_001.png", + "glow_frame": "d_roundCloud_01_glow_001.png", + "gridH": 1.5833333730697632, + "gridW": 1.5833333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "223": { + "can_color": true, + "children": [ + { + "frame": "d_roundCloud_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_roundCloud_02_001.png", + "glow_frame": "d_roundCloud_02_glow_001.png", + "gridH": 2.116666555404663, + "gridW": 1.899999976158142, + "spriteH": 63.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "224": { + "can_color": true, + "children": [ + { + "frame": "d_roundCloud_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_roundCloud_03_001.png", + "glow_frame": "d_roundCloud_03_glow_001.png", + "gridH": 1.1666666269302368, + "gridW": 1.2000000476837158, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "225": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_swirve_01_001.png", + "glow_frame": "d_swirve_01_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "226": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_swirve_02_001.png", + "glow_frame": "d_swirve_02_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "227": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_bar_01_001.png", + "glow_frame": "d_bar_01_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "228": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_bar_02_001.png", + "glow_frame": "d_bar_02_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "229": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_bar_03_001.png", + "glow_frame": "d_bar_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "230": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_bar_04_001.png", + "glow_frame": "d_bar_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "231": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_smallbar_01_001.png", + "glow_frame": "d_smallbar_01_glow_001.png", + "gridH": 1, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "232": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_smallbar_02_001.png", + "glow_frame": "d_smallbar_02_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "233": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_square_03_01_001.png", + "glow_frame": "d_square_03_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "234": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_square_03_02_001.png", + "glow_frame": "d_square_03_02_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "235": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_square_03_03_001.png", + "glow_frame": "d_square_03_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "236": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_circle_01_001.png", + "glow_frame": "d_circle_01_glow_001.png", + "gridH": 1.6666666269302368, + "gridW": 1.6666666269302368, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "237": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_link_01_001.png", + "glow_frame": "d_link_01_glow_001.png", + "gridH": 1, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "238": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_link_02_001.png", + "glow_frame": "d_link_02_glow_001.png", + "gridH": 0.7166666388511658, + "gridW": 0.7166666388511658, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "239": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_link_03_001.png", + "glow_frame": "d_link_03_glow_001.png", + "gridH": 0.7166666388511658, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "240": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_link_04_001.png", + "glow_frame": "d_link_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "241": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_link_05_001.png", + "glow_frame": "d_link_05_glow_001.png", + "gridH": 0.7166666388511658, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "242": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_bar_07_001.png", + "glow_frame": "d_bar_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "243": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_04_02_001.png", + "glow_frame": "pit_04_02_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "244": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_04_03_001.png", + "glow_frame": "pit_04_03_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "245": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_f_brick01_001.png", + "glow_frame": "square_f_brick01_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "246": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_f_brick02_001.png", + "glow_frame": "square_f_brick02_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "247": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_02_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "248": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_02_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "249": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_02_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_03_001.png", + "glow_frame": "blockOutline_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "250": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_02_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_06_001.png", + "glow_frame": "blockOutline_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "251": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_02_05_color_001.png", + "glow_frame": "lightsquare_02_05_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "252": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_02_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_01_06_001.png", + "glow_frame": "lightsquare_01_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "253": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_02_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_01_07_001.png", + "glow_frame": "lightsquare_01_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "254": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_02_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_02_08_001.png", + "glow_frame": "lightsquare_02_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "255": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_03_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "256": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_03_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "257": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_03_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_03_001.png", + "glow_frame": "blockOutline_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "258": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_03_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_06_001.png", + "glow_frame": "blockOutline_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "259": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_03_01_color_001.png", + "glow_frame": "lightsquare_03_01_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "260": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_03_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_01_06_001.png", + "glow_frame": "lightsquare_01_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "261": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_03_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_01_07_001.png", + "glow_frame": "lightsquare_01_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "263": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_04_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_04_02_001.png", + "glow_frame": "lightsquare_04_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "264": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_04_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_04_02_001.png", + "glow_frame": "lightsquare_04_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "265": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_04_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_04_02_001.png", + "glow_frame": "lightsquare_04_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "266": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_04_05_color_001.png", + "glow_frame": "lightsquare_04_05_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "267": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_04_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_04_02_001.png", + "glow_frame": "lightsquare_04_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "268": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_04_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "lightsquare_04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_04_sideLine_001.png", + "glow_frame": "lightsquare_04_sideLine_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "269": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_05_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "270": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_05_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "271": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_05_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_03_001.png", + "glow_frame": "blockOutline_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "272": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_05_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_06_001.png", + "glow_frame": "blockOutline_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "273": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_05_04_color_001.png", + "glow_frame": "lightsquare_05_04_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "274": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_05_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_01_06_001.png", + "glow_frame": "lightsquare_01_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "275": { + "can_color": true, + "children": [ + { + "frame": "lightsquare_05_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightsquare_01_07_001.png", + "glow_frame": "lightsquare_01_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "277": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_05_brick02_001.png", + "glow_frame": "lightsquare_05_brick02_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "278": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_05_brick03_001.png", + "glow_frame": "lightsquare_05_brick03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "279": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_square_01_001.png", + "glow_frame": "d_square_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "280": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_square_02_001.png", + "glow_frame": "d_square_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "281": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_square_04_001.png", + "glow_frame": "d_square_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "282": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_square_05_001.png", + "glow_frame": "d_square_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "283": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_smallbar_03_001.png", + "glow_frame": "d_smallbar_03_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "284": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_smallbar_04_001.png", + "glow_frame": "d_smallbar_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "285": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_smallbar_05_001.png", + "glow_frame": "d_smallbar_05_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "286": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_11_front_001.png", + "glow_frame": "portal_11_front_glow_001.png", + "gridH": 3.0333333015441895, + "gridW": 1.3666666746139526, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "287": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_12_front_001.png", + "glow_frame": "portal_12_front_glow_001.png", + "gridH": 3.0333333015441895, + "gridW": 1.3666666746139526, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "289": { + "can_color": true, + "children": [ + { + "frame": "triangle_a_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "291": { + "can_color": true, + "children": [ + { + "frame": "triangle_a_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "294": { + "can_color": true, + "children": [ + { + "frame": "triangle_b_01_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "295": { + "can_color": true, + "children": [ + { + "frame": "triangle_b_02_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "296": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "blockOutline_07_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "triangle_b_square_01_001.png", + "glow_frame": "triangle_b_square_01_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.36666667461395264, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "297": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "blockOutline_08_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "triangle_b_square_02_001.png", + "glow_frame": "triangle_b_square_02_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.9666666388511658, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "299": { + "can_color": true, + "children": [ + { + "frame": "triangle_c_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "301": { + "can_color": true, + "children": [ + { + "frame": "triangle_c_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "305": { + "can_color": true, + "children": [ + { + "frame": "triangle_d_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_16_001.png", + "glow_frame": "blockOutline_16_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "307": { + "can_color": true, + "children": [ + { + "frame": "triangle_d_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_17_001.png", + "glow_frame": "blockOutline_17_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "309": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_01_02_color_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "311": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_01_04_color_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "315": { + "can_color": true, + "children": [ + { + "frame": "triangle_f_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "317": { + "can_color": true, + "children": [ + { + "frame": "triangle_f_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "321": { + "can_color": true, + "children": [ + { + "frame": "triangle_g_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "323": { + "can_color": true, + "children": [ + { + "frame": "triangle_g_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "324": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_g_square_01_001.png", + "glow_frame": "triangle_g_square_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "325": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_g_square_02_001.png", + "glow_frame": "triangle_g_square_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "326": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_h_01_001.png", + "glow_frame": "triangle_h_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "327": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_h_02_001.png", + "glow_frame": "triangle_h_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "328": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_h_square_01_001.png", + "glow_frame": "triangle_h_square_01_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "329": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_h_square_02_001.png", + "glow_frame": "triangle_h_square_02_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 1.4333332777023315, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "331": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_01_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "333": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_01_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "337": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_02_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "339": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_02_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "343": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_03_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "345": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_03_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "349": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_04_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_16_001.png", + "glow_frame": "blockOutline_16_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "351": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_04_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_17_001.png", + "glow_frame": "blockOutline_17_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "353": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_05_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "355": { + "can_color": true, + "children": [ + { + "frame": "lighttriangle_05_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "358": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_g_square_03_001.png", + "glow_frame": "triangle_g_square_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "363": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "pit_01_slope_01_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_01_slope_01_001.png", + "glow_frame": "pit_01_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "364": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "pit_01_slope_02_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_01_slope_02_001.png", + "glow_frame": "pit_01_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "365": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_01_low_001.png", + "glow_frame": "pit_01_low_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "366": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "pit_04_slope_01_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_04_slope_01_001.png", + "glow_frame": "pit_04_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "367": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "pit_04_slope_02_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_04_slope_02_001.png", + "glow_frame": "pit_04_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "368": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_04_low_001.png", + "glow_frame": "pit_04_low_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "369": { + "can_color": true, + "children": [ + { + "frame": "plank_01_color_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "plank_01_02_001.png", + "glow_frame": "plank_01_02_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "370": { + "can_color": true, + "children": [ + { + "frame": "plank_01_color_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "plank_01_03_001.png", + "glow_frame": "plank_01_03_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "371": { + "can_color": true, + "children": [ + { + "frame": "plank_01_slope_01_color_001.png", + "localDy": 0, + "tint": 0, + "z": 9 + }, + { + "frame": "plank_01_slope_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 10 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "372": { + "can_color": true, + "children": [ + { + "frame": "plank_01_slope_02_color_001.png", + "localDy": 0, + "tint": 0, + "z": 9 + }, + { + "frame": "plank_01_slope_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 10 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "373": { + "can_color": true, + "children": [ + { + "frame": "plank_01_square_01_color_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "plank_01_square_01_001.png", + "glow_frame": "plank_01_square_01_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "374": { + "can_color": true, + "children": [ + { + "frame": "plank_01_square_02_color_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "plank_01_square_02_001.png", + "glow_frame": "plank_01_square_02_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "375": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingBall_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_rotatingBall_01_001.png", + "glow_frame": "d_rotatingBall_01_glow_001.png", + "gridH": 2.25, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "376": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingBall_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1006, + "frame": "d_rotatingBall_02_001.png", + "glow_frame": "d_rotatingBall_02_glow_001.png", + "gridH": 1.7999999523162842, + "gridW": 0.7166666388511658, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "377": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingBall_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_rotatingBall_03_001.png", + "glow_frame": "d_rotatingBall_03_glow_001.png", + "gridH": 1.3333333730697632, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "378": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingBall_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1006, + "frame": "d_rotatingBall_04_001.png", + "glow_frame": "d_rotatingBall_04_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 0.44999998807907104, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "392": { + "type": "hazard", + "frame": "spike_04_001.png", + "gridW": 0.5, + "gridH": 0.5, + "spriteW": 13, + "spriteH": 12, + "hitboxScaleX": 0.2, + "hitboxScaleY": 0.4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "393": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "fakeSpike_04_001.png", + "glow_frame": "fakeSpike_04_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -4, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -4 + }, + "394": { + "can_color": true, + "children": [ + { + "frame": "d_geometric_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_geometric_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_geometric_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_geometric_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_geometric_01_001.png", + "glow_frame": "d_geometric_01_glow_001.png", + "gridH": 1.1833332777023315, + "gridW": 1.3583333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "395": { + "can_color": true, + "children": [ + { + "frame": "d_geometric_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_geometric_02_001.png", + "glow_frame": "d_geometric_02_glow_001.png", + "gridH": 1.399999976158142, + "gridW": 1.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "396": { + "can_color": true, + "children": [ + { + "frame": "d_geometric_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_geometric_03_001.png", + "glow_frame": "d_geometric_03_glow_001.png", + "gridH": 0.6499999761581421, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "397": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "darkblade_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "darkblade_01_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + }, + { + "frame": "darkblade_01_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "darkblade_01_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "darkblade_01_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "darkblade_01_001.png", + "glow_frame": "darkblade_01_glow_001.png", + "gridH": 1.4333332777023315, + "gridW": 1.4333332777023315, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 28.899999618530273, + "default_z_layer": 5, + "default_z_order": 1 + }, + "398": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "darkblade_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "darkblade_02_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "darkblade_02_001.png", + "glow_frame": "darkblade_02_glow_001.png", + "gridH": 2.0999999046325684, + "gridW": 1.8333333730697632, + "spriteH": 63, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 17.440000534057617, + "default_z_layer": 5, + "default_z_order": 1 + }, + "399": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "darkblade_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "darkblade_03_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "darkblade_03_001.png", + "glow_frame": "darkblade_03_glow_001.png", + "gridH": 1.4333332777023315, + "gridW": 1.4333332777023315, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 12.90000057220459, + "default_z_layer": 5, + "default_z_order": 1 + }, + "405": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_ball_09_001.png", + "glow_frame": "d_ball_09_glow_001.png", + "gridH": 0.8666666746139526, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "406": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_grass_01_001.png", + "glow_frame": "d_grass_01_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.44999998807907104, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "407": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_grass_02_001.png", + "glow_frame": "d_grass_02_glow_001.png", + "gridH": 0.28333333134651184, + "gridW": 0.36666667461395264, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "408": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_grass_03_001.png", + "glow_frame": "d_grass_03_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.18333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "409": { + "can_color": true, + "default_base_color_channel": 1007, + "default_detail_color_channel": 1, + "frame": "d_link_b_01_001.png", + "glow_frame": "d_link_b_01_glow_001.png", + "gridH": 1, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "410": { + "can_color": true, + "default_base_color_channel": 1007, + "default_detail_color_channel": 1, + "frame": "d_link_b_02_001.png", + "glow_frame": "d_link_b_02_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "411": { + "can_color": true, + "default_base_color_channel": 1007, + "default_detail_color_channel": 1, + "frame": "d_link_b_03_001.png", + "glow_frame": "d_link_b_03_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "412": { + "can_color": true, + "default_base_color_channel": 1007, + "default_detail_color_channel": 1, + "frame": "d_link_b_04_001.png", + "glow_frame": "d_link_b_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "413": { + "can_color": true, + "default_base_color_channel": 1007, + "default_detail_color_channel": 1, + "frame": "d_link_b_05_001.png", + "glow_frame": "d_link_b_05_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "414": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_grass_04_001.png", + "glow_frame": "d_grass_04_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.44999998807907104, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "419": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_spikeWave_01_001.png", + "glow_frame": "d_spikeWave_01_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "420": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_spikeWave_02_001.png", + "glow_frame": "d_spikeWave_02_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "421": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_05_001.png", + "glow_frame": "pit_05_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "422": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_05_02_001.png", + "glow_frame": "pit_05_02_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "446": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_06_001.png", + "glow_frame": "pit_06_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "447": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_06_2_001.png", + "glow_frame": "pit_06_2_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.8666666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "448": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_pit06wave_01_001.png", + "glow_frame": "d_pit06wave_01_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "449": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_pit06wave_02_001.png", + "glow_frame": "d_pit06wave_02_glow_001.png", + "gridH": 0.6833333373069763, + "gridW": 0.800000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "450": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_pillar_01_001.png", + "glow_frame": "d_pillar_01_glow_001.png", + "gridH": 2, + "gridW": 1.5833333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "451": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_pillar_02_001.png", + "glow_frame": "d_pillar_02_glow_001.png", + "gridH": 1.2833333015441895, + "gridW": 1.2000000476837158, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "452": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_pillar_03_001.png", + "glow_frame": "d_pillar_03_glow_001.png", + "gridH": 0.7166666388511658, + "gridW": 0.8500000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "453": { + "can_color": true, + "children": [ + { + "frame": "d_link_b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "d_link_c_01_001.png", + "glow_frame": "d_link_c_01_glow_001.png", + "gridH": 1, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "454": { + "can_color": true, + "children": [ + { + "frame": "d_link_b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "d_link_c_02_001.png", + "glow_frame": "d_link_c_02_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "455": { + "can_color": true, + "children": [ + { + "frame": "d_link_b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "d_link_c_03_001.png", + "glow_frame": "d_link_c_03_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "456": { + "can_color": true, + "children": [ + { + "frame": "d_link_b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "d_link_c_04_001.png", + "glow_frame": "d_link_c_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "457": { + "can_color": true, + "children": [ + { + "frame": "d_link_b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "d_link_c_05_001.png", + "glow_frame": "d_link_c_05_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "458": { + "can_color": true, + "children": [ + { + "frame": "colorSpike_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "colorSpike_04_001.png", + "glow_frame": "colorSpike_04_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "459": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "invis_spike_04_001.png", + "glow_frame": "invis_spike_04_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "460": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_arrow_02_001.png", + "glow_frame": "d_arrow_02_glow_001.png", + "gridH": 1.4666666984558105, + "gridW": 0.949999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "461": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_thorn_01_001.png", + "glow_frame": "d_thorn_01_glow_001.png", + "gridH": 1, + "gridW": 0.9166666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "462": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_thorn_02_001.png", + "glow_frame": "d_thorn_02_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 0.5833333134651184, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "463": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_thorn_03_001.png", + "glow_frame": "d_thorn_03_glow_001.png", + "gridH": 1, + "gridW": 0.699999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "464": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_thorn_04_001.png", + "glow_frame": "d_thorn_04_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.5833333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "465": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_thorn_05_001.png", + "glow_frame": "d_thorn_05_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "466": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_thorn_06_001.png", + "glow_frame": "d_thorn_06_glow_001.png", + "gridH": 1.5499999523162842, + "gridW": 1.5666667222976685, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "467": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "468": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_02_001.png", + "glow_frame": "blockOutline_02_glow_001.png", + "gridH": 0.05000000074505806, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "469": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_03_001.png", + "glow_frame": "blockOutline_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "470": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_04_001.png", + "glow_frame": "blockOutline_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "471": { + "can_color": true, + "children": [ + { + "frame": "blockOutline_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_05_001.png", + "glow_frame": "blockOutline_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "472": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_06_001.png", + "glow_frame": "blockOutline_06_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.06666667014360428, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "473": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_07_001.png", + "glow_frame": "blockOutline_07_glow_001.png", + "gridH": 0.0833333358168602, + "gridW": 0.0833333358168602, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "474": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_08_001.png", + "glow_frame": "blockOutline_08_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "475": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_09_001.png", + "glow_frame": "blockOutline_09_glow_001.png", + "gridH": 0.05000000074505806, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "476": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block001_01_001.png", + "glow_frame": "block001_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "477": { + "can_color": true, + "children": [ + { + "frame": "block001_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block001_02_001.png", + "glow_frame": "block001_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "478": { + "can_color": true, + "children": [ + { + "frame": "block001_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block001_03_001.png", + "glow_frame": "block001_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "479": { + "can_color": true, + "children": [ + { + "frame": "block001_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block001_04_001.png", + "glow_frame": "block001_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "480": { + "can_color": true, + "children": [ + { + "frame": "block001_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block001_05_001.png", + "glow_frame": "block001_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "481": { + "can_color": true, + "children": [ + { + "frame": "block001_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block001_06_001.png", + "glow_frame": "block001_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "482": { + "can_color": true, + "children": [ + { + "frame": "block001_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block001_07_001.png", + "glow_frame": "block001_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "483": { + "can_color": true, + "children": [ + { + "frame": "block001_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block001_slope_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "484": { + "can_color": true, + "children": [ + { + "frame": "block001_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block001_slope_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "485": { + "can_color": true, + "children": [ + { + "frame": "block002_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block002_01_001.png", + "glow_frame": "block002_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "486": { + "can_color": true, + "children": [ + { + "frame": "block002_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block002_02_001.png", + "glow_frame": "block002_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "487": { + "can_color": true, + "children": [ + { + "frame": "block002_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block002_03_001.png", + "glow_frame": "block002_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "488": { + "can_color": true, + "children": [ + { + "frame": "block002_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block002_04_001.png", + "glow_frame": "block002_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "489": { + "can_color": true, + "children": [ + { + "frame": "block002_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block002_02_001.png", + "glow_frame": "block002_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "490": { + "can_color": true, + "children": [ + { + "frame": "block002_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block002_06_001.png", + "glow_frame": "block002_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "491": { + "can_color": true, + "children": [ + { + "frame": "block002_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block002_02_001.png", + "glow_frame": "block002_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "492": { + "can_color": true, + "children": [ + { + "frame": "block002_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block002_slope_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "493": { + "can_color": true, + "children": [ + { + "frame": "block002_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block002_slope_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "494": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_arrow_03_001.png", + "glow_frame": "d_arrow_03_glow_001.png", + "gridH": 1.4666666984558105, + "gridW": 0.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "495": { + "can_color": true, + "default_base_color_channel": 1006, + "frame": "d_largeSquare_01_001.png", + "glow_frame": "d_largeSquare_01_glow_001.png", + "gridH": 1.3333333730697632, + "gridW": 1.3333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "496": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_largeSquare_02_001.png", + "glow_frame": "d_largeSquare_02_glow_001.png", + "gridH": 1.3333333730697632, + "gridW": 1.3333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "497": { + "can_color": true, + "default_base_color_channel": 1005, + "frame": "d_circle_02_001.png", + "glow_frame": "d_circle_02_glow_001.png", + "gridH": 1.6666666269302368, + "gridW": 1.6666666269302368, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "498": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_03_chain_01_001.png", + "glow_frame": "d_03_chain_01_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "499": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_03_chain_02_001.png", + "glow_frame": "d_03_chain_02_glow_001.png", + "gridH": 0.4166666567325592, + "gridW": 0.7833333611488342, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "500": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_swirve_03_001.png", + "glow_frame": "d_swirve_03_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "501": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_swirve_04_001.png", + "glow_frame": "d_swirve_04_glow_001.png", + "gridH": 0.7833333611488342, + "gridW": 0.7833333611488342, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "502": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_09_001.png", + "glow_frame": "square_09_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "503": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_01_001.png", + "glow_frame": "d_gradient_01_glow_001.png", + "gridH": 0.6499999761581421, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "504": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_02_001.png", + "glow_frame": "d_gradient_02_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "505": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_03_001.png", + "glow_frame": "d_gradient_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "506": { + "can_color": true, + "default_base_color_channel": 1003, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -6 + }, + "507": { + "can_color": true, + "default_base_color_channel": 1003, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -6 + }, + "508": { + "can_color": true, + "default_base_color_channel": 1003, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -6 + }, + "509": { + "can_color": true, + "default_base_color_channel": 1003, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -6 + }, + "510": { + "can_color": true, + "default_base_color_channel": 1003, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -6 + }, + "511": { + "can_color": true, + "default_base_color_channel": 1003, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -6 + }, + "512": { + "can_color": true, + "default_base_color_channel": 1003, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -6 + }, + "513": { + "can_color": true, + "default_base_color_channel": 1003, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -6 + }, + "514": { + "can_color": true, + "default_base_color_channel": 1003, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -6 + }, + "515": { + "can_color": true, + "children": [ + { + "frame": "persp_blockb_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockb_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "516": { + "can_color": true, + "children": [ + { + "frame": "persp_blockb_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockb_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "517": { + "can_color": true, + "children": [ + { + "frame": "persp_blockb_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "518": { + "can_color": true, + "children": [ + { + "frame": "persp_blockb_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockb_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "519": { + "can_color": true, + "children": [ + { + "frame": "persp_blockb_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockb_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "520": { + "can_color": true, + "children": [ + { + "frame": "persp_blockb_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "521": { + "can_color": true, + "children": [ + { + "frame": "persp_blockb_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "522": { + "can_color": true, + "children": [ + { + "frame": "persp_blockb_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockb_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockb_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockb_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "523": { + "can_color": true, + "children": [ + { + "frame": "persp_blockb_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockb_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockb_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "524": { + "can_color": true, + "children": [ + { + "frame": "persp_blockc_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockc_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "525": { + "can_color": true, + "children": [ + { + "frame": "persp_blockc_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockc_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "526": { + "can_color": true, + "children": [ + { + "frame": "persp_blockc_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "527": { + "can_color": true, + "children": [ + { + "frame": "persp_blockc_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockc_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "528": { + "can_color": true, + "children": [ + { + "frame": "persp_blockc_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockc_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "529": { + "can_color": true, + "children": [ + { + "frame": "persp_blockc_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "530": { + "can_color": true, + "children": [ + { + "frame": "persp_blockc_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "531": { + "can_color": true, + "children": [ + { + "frame": "persp_blockc_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockc_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockc_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockc_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "532": { + "can_color": true, + "children": [ + { + "frame": "persp_blockc_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockc_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockc_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "533": { + "can_color": true, + "children": [ + { + "frame": "persp_blockd_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockd_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "534": { + "can_color": true, + "children": [ + { + "frame": "persp_blockd_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockd_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "535": { + "can_color": true, + "children": [ + { + "frame": "persp_blockd_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "536": { + "can_color": true, + "children": [ + { + "frame": "persp_blockd_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockd_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "537": { + "can_color": true, + "children": [ + { + "frame": "persp_blockd_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockd_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "538": { + "can_color": true, + "children": [ + { + "frame": "persp_blockd_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "539": { + "can_color": true, + "children": [ + { + "frame": "persp_blockd_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "540": { + "can_color": true, + "children": [ + { + "frame": "persp_blockd_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockd_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockd_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockd_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "541": { + "can_color": true, + "children": [ + { + "frame": "persp_blockd_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockd_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockd_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "542": { + "can_color": true, + "children": [ + { + "frame": "persp_blocke_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blocke_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "543": { + "can_color": true, + "children": [ + { + "frame": "persp_blocke_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blocke_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "544": { + "can_color": true, + "children": [ + { + "frame": "persp_blocke_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "545": { + "can_color": true, + "children": [ + { + "frame": "persp_blocke_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blocke_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "546": { + "can_color": true, + "children": [ + { + "frame": "persp_blocke_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blocke_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "547": { + "can_color": true, + "children": [ + { + "frame": "persp_blocke_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "548": { + "can_color": true, + "children": [ + { + "frame": "persp_blocke_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "549": { + "can_color": true, + "children": [ + { + "frame": "persp_blocke_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blocke_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blocke_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blocke_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "550": { + "can_color": true, + "children": [ + { + "frame": "persp_blocke_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blocke_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blocke_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "551": { + "can_color": true, + "children": [ + { + "frame": "persp_blockf_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockf_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "552": { + "can_color": true, + "children": [ + { + "frame": "persp_blockf_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockf_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "553": { + "can_color": true, + "children": [ + { + "frame": "persp_blockf_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "554": { + "can_color": true, + "children": [ + { + "frame": "persp_blockf_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockf_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "555": { + "can_color": true, + "children": [ + { + "frame": "persp_blockf_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockf_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "556": { + "can_color": true, + "children": [ + { + "frame": "persp_blockf_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "557": { + "can_color": true, + "children": [ + { + "frame": "persp_blockf_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "558": { + "can_color": true, + "children": [ + { + "frame": "persp_blockf_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockf_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockf_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockf_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "559": { + "can_color": true, + "children": [ + { + "frame": "persp_blockf_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockf_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockf_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "560": { + "can_color": true, + "children": [ + { + "frame": "persp_blockg_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockg_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "561": { + "can_color": true, + "children": [ + { + "frame": "persp_blockg_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockg_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "562": { + "can_color": true, + "children": [ + { + "frame": "persp_blockg_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "563": { + "can_color": true, + "children": [ + { + "frame": "persp_blockg_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockg_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "564": { + "can_color": true, + "children": [ + { + "frame": "persp_blockg_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockg_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "565": { + "can_color": true, + "children": [ + { + "frame": "persp_blockg_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "566": { + "can_color": true, + "children": [ + { + "frame": "persp_blockg_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "567": { + "can_color": true, + "children": [ + { + "frame": "persp_blockg_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockg_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockg_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockg_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "568": { + "can_color": true, + "children": [ + { + "frame": "persp_blockg_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockg_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockg_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "569": { + "can_color": true, + "children": [ + { + "frame": "persp_blockh_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockh_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "570": { + "can_color": true, + "children": [ + { + "frame": "persp_blockh_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockh_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "571": { + "can_color": true, + "children": [ + { + "frame": "persp_blockh_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "572": { + "can_color": true, + "children": [ + { + "frame": "persp_blockh_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockh_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "573": { + "can_color": true, + "children": [ + { + "frame": "persp_blockh_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockh_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "574": { + "can_color": true, + "children": [ + { + "frame": "persp_blockh_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "575": { + "can_color": true, + "children": [ + { + "frame": "persp_blockh_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "576": { + "can_color": true, + "children": [ + { + "frame": "persp_blockh_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockh_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockh_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockh_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "577": { + "can_color": true, + "children": [ + { + "frame": "persp_blockh_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockh_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_blockh_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "578": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "579": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "580": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "581": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "582": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "583": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "584": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "585": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "586": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "587": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock02_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock02_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "588": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock02_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock02_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "589": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock02_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "590": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock02_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock02_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "591": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock02_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock02_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "592": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock02_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "593": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock02_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "594": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock02_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock02_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock02_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock02_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "595": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock02_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock02_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock02_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "596": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock03_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock03_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "597": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock03_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock03_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "598": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock03_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "599": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock03_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock03_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "600": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock03_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock03_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "601": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock03_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "602": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock03_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "603": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock03_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock03_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock03_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock03_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "604": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock03_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock03_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock03_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "605": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock04_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "606": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock04_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock04_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "607": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock04_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "608": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock04_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock04_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "609": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock04_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "610": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock04_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "611": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock04_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "612": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock04_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock04_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock04_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock04_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "613": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock04_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock04_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock04_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "614": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock05_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock05_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "615": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock05_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock05_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "616": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock05_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "617": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock05_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock05_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "618": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock05_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock05_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "619": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock05_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "620": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock05_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "621": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock05_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock05_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock05_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock05_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "622": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock05_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock05_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock05_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "623": { + "can_color": true, + "children": [ + { + "frame": "persp_block001_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block001_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "624": { + "can_color": true, + "children": [ + { + "frame": "persp_block001_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block001_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "625": { + "can_color": true, + "children": [ + { + "frame": "persp_block001_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "626": { + "can_color": true, + "children": [ + { + "frame": "persp_block001_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block001_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "627": { + "can_color": true, + "children": [ + { + "frame": "persp_block001_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block001_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "628": { + "can_color": true, + "children": [ + { + "frame": "persp_block001_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "629": { + "can_color": true, + "children": [ + { + "frame": "persp_block001_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "630": { + "can_color": true, + "children": [ + { + "frame": "persp_block001_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block001_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block001_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block001_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "631": { + "can_color": true, + "children": [ + { + "frame": "persp_block001_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block001_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block001_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "632": { + "can_color": true, + "children": [ + { + "frame": "persp_block002_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block002_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "633": { + "can_color": true, + "children": [ + { + "frame": "persp_block002_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block002_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "634": { + "can_color": true, + "children": [ + { + "frame": "persp_block002_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "635": { + "can_color": true, + "children": [ + { + "frame": "persp_block002_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block002_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "636": { + "can_color": true, + "children": [ + { + "frame": "persp_block002_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block002_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "637": { + "can_color": true, + "children": [ + { + "frame": "persp_block002_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "638": { + "can_color": true, + "children": [ + { + "frame": "persp_block002_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "639": { + "can_color": true, + "children": [ + { + "frame": "persp_block002_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block002_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block002_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block002_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "640": { + "can_color": true, + "children": [ + { + "frame": "persp_block002_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block002_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block002_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "641": { + "can_color": true, + "children": [ + { + "frame": "block003_color_02_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part03_001.png", + "glow_frame": "block003_part03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "642": { + "can_color": true, + "children": [ + { + "frame": "block003_color_03_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part04_001.png", + "glow_frame": "block003_part04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "643": { + "can_color": true, + "children": [ + { + "frame": "block003_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part06_001.png", + "glow_frame": "block003_part06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "644": { + "can_color": true, + "children": [ + { + "frame": "block003_color_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part05_001.png", + "glow_frame": "block003_part05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "645": { + "can_color": true, + "children": [ + { + "frame": "block003_color_06_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part01_001.png", + "glow_frame": "block003_part01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "646": { + "can_color": true, + "children": [ + { + "frame": "block003_color_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part01_001.png", + "glow_frame": "block003_part01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "647": { + "can_color": true, + "children": [ + { + "frame": "block003_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part02_001.png", + "glow_frame": "block003_part02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "648": { + "can_color": true, + "children": [ + { + "frame": "block003_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part01_001.png", + "glow_frame": "block003_part01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "649": { + "can_color": true, + "children": [ + { + "frame": "block003_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part01_001.png", + "glow_frame": "block003_part01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "650": { + "can_color": true, + "children": [ + { + "frame": "block003_color_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block003_part05_001.png", + "glow_frame": "block003_part05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "651": { + "can_color": true, + "children": [ + { + "frame": "block003_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_slope_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "652": { + "can_color": true, + "children": [ + { + "frame": "block003_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_slope_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "653": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece01_001.png", + "glow_frame": "d_block04_piece01_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "654": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece02_001.png", + "glow_frame": "d_block04_piece02_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "655": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece03_001.png", + "glow_frame": "d_block04_piece03_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "656": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece04_001.png", + "glow_frame": "d_block04_piece04_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "657": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece05_001.png", + "glow_frame": "d_block04_piece05_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "658": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece06_001.png", + "glow_frame": "d_block04_piece06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "659": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece07_001.png", + "glow_frame": "d_block04_piece07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "660": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_13_front_001.png", + "glow_frame": "portal_13_front_glow_001.png", + "gridH": 2.866666555404663, + "gridW": 1.1333333253860474, + "sub": "wave", + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "661": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_10_001.png", + "glow_frame": "blockOutline_10_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "662": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_11_001.png", + "glow_frame": "blockOutline_11_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "663": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_12_001.png", + "glow_frame": "blockOutline_12_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "664": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_13_001.png", + "glow_frame": "blockOutline_13_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "665": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "666": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "667": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_07_001.png", + "glow_frame": "pit_07_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "668": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_001_001.png", + "glow_frame": "d_pixelArt01_001_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "669": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_002_001.png", + "glow_frame": "d_pixelArt01_002_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "670": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_003_001.png", + "glow_frame": "d_pixelArt01_003_glow_001.png", + "gridH": 0.25, + "gridW": 0.25, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "671": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_004_001.png", + "glow_frame": "d_pixelArt01_004_glow_001.png", + "gridH": 1, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "672": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_005_001.png", + "glow_frame": "d_pixelArt01_005_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "673": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "invis_triangle_02_001.png", + "glow_frame": "invis_triangle_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "674": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "invis_triangle_04_001.png", + "glow_frame": "invis_triangle_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "678": { + "can_color": true, + "children": [ + { + "frame": "lightBlade_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "lightBlade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "lightBlade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "lightBlade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "lightBlade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightBlade_01_001.png", + "glow_frame": "lightBlade_01_glow_001.png", + "gridH": 1.3666666746139526, + "gridW": 1.3333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "hitbox_radius": 30.399999618530273, + "default_z_layer": 5, + "default_z_order": 0 + }, + "679": { + "can_color": true, + "children": [ + { + "frame": "lightBlade_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "lightBlade_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightBlade_02_001.png", + "glow_frame": "lightBlade_02_glow_001.png", + "gridH": 1.7999999523162842, + "gridW": 1.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "hitbox_radius": 18.540000915527344, + "default_z_layer": 5, + "default_z_order": 0 + }, + "680": { + "can_color": true, + "children": [ + { + "frame": "lightBlade_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "lightBlade_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "lightBlade_03_001.png", + "glow_frame": "lightBlade_03_glow_001.png", + "gridH": 1.2000000476837158, + "gridW": 1.2000000476837158, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "hitbox_radius": 10.800000190734863, + "default_z_layer": 5, + "default_z_order": 0 + }, + "681": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_a_02_001.png", + "glow_frame": "triangle_a_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "682": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_a_04_001.png", + "glow_frame": "triangle_a_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "683": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_c_02_001.png", + "glow_frame": "triangle_c_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "684": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_c_04_001.png", + "glow_frame": "triangle_c_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "685": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_d_02_001.png", + "glow_frame": "triangle_d_02_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.8500000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "686": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_d_04_001.png", + "glow_frame": "triangle_d_04_glow_001.png", + "gridH": 0.9333333373069763, + "gridW": 1.850000023841858, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "687": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "lighttriangle_01_02_color_001.png", + "glow_frame": "lighttriangle_01_02_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "688": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "lighttriangle_01_04_color_001.png", + "glow_frame": "lighttriangle_01_04_color_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "689": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_f_02_001.png", + "glow_frame": "triangle_f_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "690": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_f_04_001.png", + "glow_frame": "triangle_f_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "691": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_g_02_001.png", + "glow_frame": "triangle_g_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "692": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "triangle_g_04_001.png", + "glow_frame": "triangle_g_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "693": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_01_02_color_001.png", + "glow_frame": "lighttriangle_01_02_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "694": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_01_04_color_001.png", + "glow_frame": "lighttriangle_01_04_color_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "695": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_02_02_color_001.png", + "glow_frame": "lighttriangle_02_02_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "696": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_02_04_color_001.png", + "glow_frame": "lighttriangle_02_04_color_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "697": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_03_02_color_001.png", + "glow_frame": "lighttriangle_03_02_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "698": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_03_04_color_001.png", + "glow_frame": "lighttriangle_03_04_color_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "699": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_04_02_color_001.png", + "glow_frame": "lighttriangle_04_02_color_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.8500000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "700": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_04_04_color_001.png", + "glow_frame": "lighttriangle_04_04_color_glow_001.png", + "gridH": 0.9333333373069763, + "gridW": 1.850000023841858, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "701": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_05_02_color_001.png", + "glow_frame": "lighttriangle_05_02_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "702": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lighttriangle_05_04_color_001.png", + "glow_frame": "lighttriangle_05_04_color_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "703": { + "can_color": true, + "children": [ + { + "frame": "block001_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block001_slope_01_001.png", + "glow_frame": "block001_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "704": { + "can_color": true, + "children": [ + { + "frame": "block001_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block001_slope_02_001.png", + "glow_frame": "block001_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "705": { + "can_color": true, + "children": [ + { + "frame": "block002_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block002_slope_01_001.png", + "glow_frame": "block002_slope_01_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "706": { + "can_color": true, + "children": [ + { + "frame": "block002_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block002_slope_02_001.png", + "glow_frame": "block002_slope_02_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 1.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "707": { + "can_color": true, + "children": [ + { + "frame": "block003_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_slope_01_001.png", + "glow_frame": "block003_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "708": { + "can_color": true, + "children": [ + { + "frame": "block003_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_slope_02_001.png", + "glow_frame": "block003_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "709": { + "can_color": true, + "children": [ + { + "frame": "block004_slope_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "710": { + "can_color": true, + "children": [ + { + "frame": "block004_slope_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "711": { + "can_color": true, + "children": [ + { + "frame": "block004_slope_01b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "712": { + "can_color": true, + "children": [ + { + "frame": "block004_slope_02b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "713": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block004_slope_01_001.png", + "glow_frame": "block004_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "714": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block004_slope_02_001.png", + "glow_frame": "block004_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "715": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block004_slope_01b_001.png", + "glow_frame": "block004_slope_01b_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "716": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block004_slope_02b_001.png", + "glow_frame": "block004_slope_02b_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "719": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pit_07_shine_001.png", + "glow_frame": "pit_07_shine_glow_001.png", + "gridH": 0.3166666626930237, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "720": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_07_2_001.png", + "glow_frame": "pit_07_2_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "721": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pit_07_2_shine_001.png", + "glow_frame": "pit_07_2_shine_glow_001.png", + "gridH": 0.3166666626930237, + "gridW": 0.3166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "722": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece08_001.png", + "glow_frame": "d_block04_piece08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "723": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece09_001.png", + "glow_frame": "d_block04_piece09_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "724": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece10_001.png", + "glow_frame": "d_block04_piece10_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "725": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_link_b_01_color_001.png", + "glow_frame": "d_link_b_01_color_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "726": { + "can_color": true, + "children": [ + { + "frame": "block004_slope_01c_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "727": { + "can_color": true, + "children": [ + { + "frame": "block004_slope_02c_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "728": { + "can_color": true, + "children": [ + { + "frame": "block004_slope_01d_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "729": { + "can_color": true, + "children": [ + { + "frame": "block004_slope_02d_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "730": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block004_slope_01c_001.png", + "glow_frame": "block004_slope_01c_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "731": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block004_slope_02c_001.png", + "glow_frame": "block004_slope_02c_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "732": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block004_slope_01d_001.png", + "glow_frame": "block004_slope_01d_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "733": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block004_slope_02d_001.png", + "glow_frame": "block004_slope_02d_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "734": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece11_001.png", + "glow_frame": "d_block04_piece11_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "735": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece12_001.png", + "glow_frame": "d_block04_piece12_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "736": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_block04_piece13_001.png", + "glow_frame": "d_block04_piece13_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "737": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_12_001.png", + "glow_frame": "square_g_12_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "738": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_006_001.png", + "glow_frame": "d_pixelArt01_006_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "739": { + "can_color": true, + "children": [ + { + "frame": "block003_color_03_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part04_001.png", + "glow_frame": "block003_part04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "740": { + "can_color": true, + "children": [ + { + "frame": "blade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "blade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "blade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "blade_01_001.png", + "glow_frame": "blade_01_glow_001.png", + "gridH": 1.4333332777023315, + "gridW": 1.4333332777023315, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 32.29999923706055, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "741": { + "can_color": true, + "children": [ + { + "frame": "blade_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blade_02_001.png", + "glow_frame": "blade_02_glow_001.png", + "gridH": 2.0333333015441895, + "gridW": 2.0333333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 21.8700008392334, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "742": { + "can_color": true, + "children": [ + { + "frame": "blade_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blade_03_001.png", + "glow_frame": "blade_03_glow_001.png", + "gridH": 1.399999976158142, + "gridW": 1.399999976158142, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 12.600000381469727, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "744": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "745": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_14_front_001.png", + "glow_frame": "portal_14_front_glow_001.png", + "gridH": 2.866666555404663, + "gridW": 1.1333333253860474, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "747": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_15_front_001.png", + "glow_frame": "portal_15_front_glow_001.png", + "glow": true, + "gridH": 3, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "sub": "teleport_in", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "749": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_16_front_001.png", + "glow_frame": "portal_16_front_glow_001.png", + "glow": true, + "gridH": 3, + "gridW": 1.2833333015441895, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "sub": "teleport_out", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "752": { + "can_color": true, + "children": [ + { + "frame": "block005_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_02_001.png", + "glow_frame": "block005_02_glow_001.png", + "gridH": 0.75, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "753": { + "can_color": true, + "children": [ + { + "frame": "block005_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_03_001.png", + "glow_frame": "block005_03_glow_001.png", + "gridH": 0.75, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "754": { + "can_color": true, + "children": [ + { + "frame": "block005_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_04_001.png", + "glow_frame": "block005_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "755": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005_05_001.png", + "glow_frame": "block005_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "756": { + "can_color": true, + "children": [ + { + "frame": "block005_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_06_001.png", + "glow_frame": "block005_06_glow_001.png", + "gridH": 0.7166666388511658, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "757": { + "can_color": true, + "children": [ + { + "frame": "block005_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_07_001.png", + "glow_frame": "block005_07_glow_001.png", + "gridH": 1, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "758": { + "can_color": true, + "children": [ + { + "frame": "block005_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_08_001.png", + "glow_frame": "block005_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "759": { + "can_color": true, + "children": [ + { + "frame": "block005_09_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_09_001.png", + "glow_frame": "block005_09_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4000000059604645, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "762": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_slope_01_001.png", + "glow_frame": "block005_slope_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "763": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_slope_02_001.png", + "glow_frame": "block005_slope_02_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1.2833333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "764": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_slope_square_01_001.png", + "glow_frame": "block005_slope_square_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "765": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_slope_square_02_001.png", + "glow_frame": "block005_slope_square_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "766": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005_slope_square_03_001.png", + "glow_frame": "block005_slope_square_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "767": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_spikeWave_03_001.png", + "glow_frame": "d_spikeWave_03_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "768": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_05_03_001.png", + "glow_frame": "pit_05_03_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "769": { + "can_color": true, + "children": [ + { + "frame": "block005_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005_01_001.png", + "glow_frame": "plank005_01_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "770": { + "can_color": true, + "children": [ + { + "frame": "plank005_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005_02_001.png", + "glow_frame": "plank005_02_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "771": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005_slope_01_001.png", + "glow_frame": "plank005_slope_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "772": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005_slope_02_001.png", + "glow_frame": "plank005_slope_02_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1.2833333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "773": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005_slope_square_01_001.png", + "glow_frame": "plank005_slope_square_01_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "774": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005_slope_square_02_001.png", + "glow_frame": "plank005_slope_square_02_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "775": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "plank005_slope_square_03_001.png", + "glow_frame": "plank005_slope_square_03_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.8666666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "807": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_001_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_002_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_01_001.png", + "glow_frame": "block007_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "808": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_001_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_002_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_01_001.png", + "glow_frame": "block007_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "809": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_002_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_003_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_02_001.png", + "glow_frame": "block007_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "810": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_002_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_003_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_02_001.png", + "glow_frame": "block007_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "811": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_008_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_004_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_03_001.png", + "glow_frame": "block007_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "812": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_008_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_004_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_03_001.png", + "glow_frame": "block007_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "813": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_003_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_005_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_04_001.png", + "glow_frame": "block007_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "814": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_003_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_005_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_04_001.png", + "glow_frame": "block007_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "815": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_003_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_006_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_05_001.png", + "glow_frame": "block007_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "816": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_003_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_006_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_05_001.png", + "glow_frame": "block007_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "817": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_001_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_06_001.png", + "glow_frame": "block007_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "818": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_001_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_06_001.png", + "glow_frame": "block007_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "819": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_007_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_07_001.png", + "glow_frame": "block007_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "820": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_007_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_07_001.png", + "glow_frame": "block007_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "821": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_008_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + }, + { + "frame": "block007_bgcolor_008_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_08_001.png", + "glow_frame": "block007_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "822": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_008_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + }, + { + "frame": "block007_bgcolor_008_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_08_001.png", + "glow_frame": "block007_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "823": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_bgcolor_001_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "block007_09_001.png", + "glow_frame": "block007_09_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "824": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_bgcolor_001_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "block007_09_001.png", + "glow_frame": "block007_09_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "825": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_bgcolor_001_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_09_001.png", + "glow_frame": "block007_09_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "826": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_009_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_01_001.png", + "glow_frame": "block007_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "827": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_009_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_01_001.png", + "glow_frame": "block007_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "828": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_010_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + }, + { + "frame": "block007_bgcolor_011_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_02_001.png", + "glow_frame": "block007_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "829": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_010_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + }, + { + "frame": "block007_bgcolor_011_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_02_001.png", + "glow_frame": "block007_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "830": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_001_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_square_01_001.png", + "glow_frame": "block007_slope_square_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "831": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_001_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_square_01_001.png", + "glow_frame": "block007_slope_square_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "832": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_001_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_square_02_001.png", + "glow_frame": "block007_slope_square_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "833": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_001_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_square_02_001.png", + "glow_frame": "block007_slope_square_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "841": { + "can_color": true, + "children": [ + { + "frame": "block007b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1011, + "frame": "block007b_01_001.png", + "glow_frame": "block007b_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "842": { + "can_color": true, + "children": [ + { + "frame": "block007b_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block007b_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block007b_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1011, + "frame": "block007b_05_001.png", + "glow_frame": "block007b_05_glow_001.png", + "gridH": 0.21666666865348816, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "843": { + "can_color": true, + "children": [ + { + "frame": "block007b_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block007b_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1011, + "frame": "block007b_03_001.png", + "glow_frame": "block007b_03_glow_001.png", + "gridH": 0.21666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "844": { + "can_color": true, + "children": [ + { + "frame": "block007b_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block007b_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1011, + "frame": "block007b_03_001.png", + "glow_frame": "block007b_03_glow_001.png", + "gridH": 0.21666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "845": { + "can_color": true, + "children": [ + { + "frame": "block007b_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block007b_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block007b_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block007b_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1011, + "frame": "block007b_05_001.png", + "glow_frame": "block007b_05_glow_001.png", + "gridH": 0.21666666865348816, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "846": { + "can_color": true, + "children": [ + { + "frame": "block007b_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1011, + "frame": "block007b_06_001.png", + "glow_frame": "block007b_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "847": { + "can_color": true, + "children": [ + { + "frame": "block007b_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1011, + "frame": "block007b_07_001.png", + "glow_frame": "block007b_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "848": { + "can_color": true, + "children": [ + { + "frame": "block007b_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1011, + "frame": "block007b_08_001.png", + "glow_frame": "block007b_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "850": { + "can_color": true, + "children": [ + { + "frame": "block008_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_02_001.png", + "glow_frame": "block008_02_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "853": { + "can_color": true, + "children": [ + { + "frame": "block008_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_03_001.png", + "glow_frame": "block008_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "854": { + "can_color": true, + "children": [ + { + "frame": "block008_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_04_001.png", + "glow_frame": "block008_04_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "855": { + "can_color": true, + "children": [ + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_05_001.png", + "glow_frame": "block008_05_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "856": { + "can_color": true, + "children": [ + { + "frame": "block008_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_06_001.png", + "glow_frame": "block008_06_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "857": { + "can_color": true, + "children": [ + { + "frame": "block008_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_07_001.png", + "glow_frame": "block008_07_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "859": { + "can_color": true, + "children": [ + { + "frame": "block008_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_08_001.png", + "glow_frame": "block008_08_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "861": { + "can_color": true, + "children": [ + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_09_001.png", + "glow_frame": "block008_09_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "862": { + "can_color": true, + "children": [ + { + "frame": "block008_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_10_001.png", + "glow_frame": "block008_10_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "863": { + "can_color": true, + "children": [ + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block008_11_001.png", + "glow_frame": "block008_11_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "867": { + "can_color": true, + "children": [ + { + "frame": "block009_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_01_001.png", + "glow_frame": "block009_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "868": { + "can_color": true, + "children": [ + { + "frame": "block009_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_02_001.png", + "glow_frame": "block009_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "869": { + "can_color": true, + "children": [ + { + "frame": "block009_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_03_001.png", + "glow_frame": "block009_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "870": { + "can_color": true, + "children": [ + { + "frame": "block009_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_04_001.png", + "glow_frame": "block009_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "871": { + "can_color": true, + "children": [ + { + "frame": "block009_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_05_001.png", + "glow_frame": "block009_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "872": { + "can_color": true, + "children": [ + { + "frame": "block009_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_06_001.png", + "glow_frame": "block009_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "873": { + "can_color": true, + "children": [ + { + "frame": "block009_part_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_part_01_001.png", + "glow_frame": "block009_part_01_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "874": { + "can_color": true, + "children": [ + { + "frame": "block009_part_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_part_02_001.png", + "glow_frame": "block009_part_02_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "877": { + "can_color": true, + "children": [ + { + "frame": "block009_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_slope_01_001.png", + "glow_frame": "block009_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "878": { + "can_color": true, + "children": [ + { + "frame": "block009_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_slope_02_001.png", + "glow_frame": "block009_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "880": { + "can_color": true, + "children": [ + { + "frame": "block009b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_01_001.png", + "glow_frame": "block009b_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "881": { + "can_color": true, + "children": [ + { + "frame": "block009b_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_02_001.png", + "glow_frame": "block009b_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "882": { + "can_color": true, + "children": [ + { + "frame": "block009b_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_03_001.png", + "glow_frame": "block009b_03_glow_001.png", + "gridH": 1, + "gridW": 0.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "883": { + "can_color": true, + "children": [ + { + "frame": "block009b_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_04_001.png", + "glow_frame": "block009b_04_glow_001.png", + "gridH": 1, + "gridW": 0.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "884": { + "can_color": true, + "children": [ + { + "frame": "block009b_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_05_001.png", + "glow_frame": "block009b_05_glow_001.png", + "gridH": 1, + "gridW": 0.9166666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "885": { + "can_color": true, + "children": [ + { + "frame": "block009b_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_06_001.png", + "glow_frame": "block009b_06_glow_001.png", + "gridH": 1, + "gridW": 0.9166666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "886": { + "can_color": true, + "children": [ + { + "frame": "block009b_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block009b_slope_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "887": { + "can_color": true, + "children": [ + { + "frame": "block009b_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block009b_slope_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "888": { + "can_color": true, + "children": [ + { + "frame": "block009b_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_slope_01_001.png", + "glow_frame": "block009b_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "889": { + "can_color": true, + "children": [ + { + "frame": "block009b_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_slope_02_001.png", + "glow_frame": "block009b_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "890": { + "can_color": true, + "children": [ + { + "frame": "block009c_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_01_001.png", + "glow_frame": "block009c_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "891": { + "can_color": true, + "children": [ + { + "frame": "block009c_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_02_001.png", + "glow_frame": "block009c_02_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "893": { + "can_color": true, + "children": [ + { + "frame": "block009c_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_04_001.png", + "glow_frame": "block009c_04_glow_001.png", + "gridH": 0.5, + "gridW": 0.36666667461395264, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "894": { + "can_color": true, + "children": [ + { + "frame": "block009c_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_05_001.png", + "glow_frame": "block009c_05_glow_001.png", + "gridH": 0.5, + "gridW": 0.36666667461395264, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "895": { + "can_color": true, + "children": [ + { + "frame": "block009c_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_slope_01_001.png", + "glow_frame": "block009c_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "896": { + "can_color": true, + "children": [ + { + "frame": "block009c_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_slope_02_001.png", + "glow_frame": "block009c_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "899": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "900": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "901": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "902": { + "can_color": true, + "children": [ + { + "frame": "persp_lblock01_06_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_06_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_06_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_lblock01_06_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 3, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -6 + }, + "903": { + "can_color": true, + "children": [ + { + "frame": "block005_10_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_10_001.png", + "glow_frame": "block005_10_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "904": { + "can_color": true, + "children": [ + { + "frame": "block005_11_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_11_001.png", + "glow_frame": "block005_11_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "905": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005_12_001.png", + "glow_frame": "block005_12_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "906": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_grass_05_001.png", + "glow_frame": "d_grass_05_glow_001.png", + "gridH": 0.6833333373069763, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "907": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_grassArt_01_001.png", + "glow_frame": "d_grassArt_01_glow_001.png", + "gridH": 0.75, + "gridW": 2.316666603088379, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "908": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_grassArt_02_001.png", + "glow_frame": "d_grassArt_02_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.9666666388511658, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "909": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_grassArt_03_001.png", + "glow_frame": "d_grassArt_03_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "910": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_grassArt_04_001.png", + "glow_frame": "d_grassArt_04_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4833333194255829, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "911": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005_13_001.png", + "glow_frame": "block005_13_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "915": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "916": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "block006_color_05_001.png", + "glow_frame": "block006_color_05_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "917": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_whiteBlock_02_001.png", + "glow_frame": "d_whiteBlock_02_glow_001.png", + "gridH": 0.25, + "gridW": 0.25, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "918": { + "can_color": true, + "default_base_color_channel": 1010, + "default_detail_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 1.600000023841858, + "gridW": 1.600000023841858, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "hitbox_radius": 24, + "default_z_layer": 5, + "default_z_order": 2 + }, + "919": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": null, + "glow_frame": "none", + "gridH": 0.20000000298023224, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "920": { + "can_color": true, + "children": [ + { + "frame": "Fire_03_2_looped_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "Fire_03_looped_004.png", + "glow_frame": "Fire_03_looped_004.png", + "gridH": 1.7666666507720947, + "gridW": 2.0166666507720947, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "921": { + "can_color": true, + "children": [ + { + "frame": "Fire_04_2_looped_004.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "Fire_04_looped_011.png", + "glow_frame": "Fire_04_looped_011.png", + "gridH": 1.8166667222976685, + "gridW": 0.3499999940395355, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "923": { + "can_color": true, + "children": [ + { + "frame": "Fire_01_2_looped_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "Fire_01_looped_009.png", + "glow_frame": "Fire_01_looped_009.png", + "gridH": 1.75, + "gridW": 0.6166666746139526, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "924": { + "can_color": true, + "children": [ + { + "frame": "Fire_02_2_looped_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "Fire_02_looped_001.png", + "glow_frame": "Fire_02_looped_glow_001.png", + "gridH": 1.25, + "gridW": 0.6499999761581421, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "925": { + "can_color": true, + "children": [ + { + "frame": "d_rainbow_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_rainbow_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_rainbow_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "d_rainbow_01_001.png", + "glow_frame": "d_rainbow_01_glow_001.png", + "gridH": 2.3333332538604736, + "gridW": 2.3333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 2 + }, + "926": { + "can_color": true, + "children": [ + { + "frame": "d_rainbow_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_rainbow_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_rainbow_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "d_rainbow_02_001.png", + "glow_frame": "d_rainbow_02_glow_001.png", + "gridH": 4.333333492279053, + "gridW": 4.333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 2 + }, + "927": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_01_001.png", + "glow_frame": "block010_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "928": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_02_001.png", + "glow_frame": "block010_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "929": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_03_001.png", + "glow_frame": "block010_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "930": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_04_001.png", + "glow_frame": "block010_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "931": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_06_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_01_001.png", + "glow_frame": "block010_piece_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "932": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_06_001.png", + "glow_frame": "block010_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "933": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_07_001.png", + "glow_frame": "block010_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "934": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_08_001.png", + "glow_frame": "block010_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "935": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_05_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_01_001.png", + "glow_frame": "block010_piece_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "936": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_artCloud_01_001.png", + "glow_frame": "d_artCloud_01_glow_001.png", + "gridH": 1.149999976158142, + "gridW": 2.0166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "937": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_artCloud_02_001.png", + "glow_frame": "d_artCloud_02_glow_001.png", + "gridH": 1.3666666746139526, + "gridW": 2.5833332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "938": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_artCloud_03_001.png", + "glow_frame": "d_artCloud_03_glow_001.png", + "gridH": 0.7833333611488342, + "gridW": 1.2000000476837158, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "939": { + "can_color": true, + "children": [ + { + "frame": "d_flower01_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "d_flower01_01_001.png", + "glow_frame": "d_flower01_01_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 3, + "default_z_order": -5 + }, + "940": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_grassDetail_01_001.png", + "glow_frame": "d_grassDetail_01_glow_001.png", + "gridH": 1.0166666507720947, + "gridW": 0.8166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "941": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_grassDetail_02_001.png", + "glow_frame": "d_grassDetail_02_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "942": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_grassDetail_03_001.png", + "glow_frame": "d_grassDetail_03_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "943": { + "can_color": true, + "children": [ + { + "frame": "persp_block005_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "944": { + "can_color": true, + "children": [ + { + "frame": "persp_block005_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "945": { + "can_color": true, + "children": [ + { + "frame": "persp_block005_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "946": { + "can_color": true, + "children": [ + { + "frame": "persp_block005_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "947": { + "can_color": true, + "children": [ + { + "frame": "persp_block005_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "948": { + "can_color": true, + "children": [ + { + "frame": "persp_block005_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "949": { + "can_color": true, + "children": [ + { + "frame": "persp_block005_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "950": { + "can_color": true, + "children": [ + { + "frame": "persp_block005_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "951": { + "can_color": true, + "children": [ + { + "frame": "persp_block005_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "952": { + "can_color": true, + "children": [ + { + "frame": "block005_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_02_001.png", + "glow_frame": "block005b_02_glow_001.png", + "gridH": 0.75, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "953": { + "can_color": true, + "children": [ + { + "frame": "block005_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_03_001.png", + "glow_frame": "block005b_03_glow_001.png", + "gridH": 0.75, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "954": { + "can_color": true, + "children": [ + { + "frame": "block005_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_04_001.png", + "glow_frame": "block005b_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "955": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "956": { + "can_color": true, + "children": [ + { + "frame": "block005_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_06_001.png", + "glow_frame": "block005b_06_glow_001.png", + "gridH": 0.7166666388511658, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "957": { + "can_color": true, + "children": [ + { + "frame": "block005_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_07_001.png", + "glow_frame": "block005b_07_glow_001.png", + "gridH": 1, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "958": { + "can_color": true, + "children": [ + { + "frame": "block005_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_08_001.png", + "glow_frame": "block005b_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "959": { + "can_color": true, + "children": [ + { + "frame": "block005_09_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_09_001.png", + "glow_frame": "block005b_09_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4000000059604645, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "960": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_slope_01_001.png", + "glow_frame": "block005b_slope_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "961": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_slope_02_001.png", + "glow_frame": "block005b_slope_02_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1.2833333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "964": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_slope_square_01_001.png", + "glow_frame": "block005b_slope_square_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "965": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_slope_square_02_001.png", + "glow_frame": "block005b_slope_square_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "966": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005b_slope_square_03_001.png", + "glow_frame": "block005b_slope_square_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "967": { + "can_color": true, + "children": [ + { + "frame": "block005_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005b_01_001.png", + "glow_frame": "plank005b_01_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "968": { + "can_color": true, + "children": [ + { + "frame": "plank005_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005b_02_001.png", + "glow_frame": "plank005b_02_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "969": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005b_slope_01_001.png", + "glow_frame": "plank005b_slope_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "970": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005b_slope_02_001.png", + "glow_frame": "plank005b_slope_02_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1.2833333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "971": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005b_slope_square_01_001.png", + "glow_frame": "plank005b_slope_square_01_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "972": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank005b_slope_square_02_001.png", + "glow_frame": "plank005b_slope_square_02_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "973": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "plank005b_slope_square_03_001.png", + "glow_frame": "plank005b_slope_square_03_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.8666666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "974": { + "can_color": true, + "children": [ + { + "frame": "block005_10_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_10_001.png", + "glow_frame": "block005b_10_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "975": { + "can_color": true, + "children": [ + { + "frame": "block005_11_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_11_001.png", + "glow_frame": "block005b_11_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "976": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005b_12_001.png", + "glow_frame": "block005b_12_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "977": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005b_13_001.png", + "glow_frame": "block005b_13_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "980": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block007_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block007_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "981": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_15_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block007_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block007_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "982": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_03_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block007_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "983": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block007_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block007_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "984": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block007_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block007_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "985": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_06_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block007_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "986": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_07_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block007_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "987": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_08_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block007_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block007_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block007_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block007_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "988": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_09_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block007_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block007_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block007_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "989": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_07_3_001.png", + "glow_frame": "pit_07_3_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "990": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pit_07_3_shine_001.png", + "glow_frame": "pit_07_3_shine_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "991": { + "black": true, + "can_color": true, + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "pit_07_4_001.png", + "glow_frame": "pit_07_4_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "992": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pit_07_4_shine_001.png", + "glow_frame": "pit_07_4_shine_glow_001.png", + "gridH": 0.3166666626930237, + "gridW": 0.3166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "997": { + "can_color": true, + "children": [ + { + "frame": "d_ringSeg_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_ringSeg_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_ringSeg_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_ringSeg_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_ringSeg_01_001.png", + "glow_frame": "d_ringSeg_01_glow_001.png", + "gridH": 1.6666666269302368, + "gridW": 1.6666666269302368, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "998": { + "can_color": true, + "children": [ + { + "frame": "d_ringSeg_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_ringSeg_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_ringSeg_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_ringSeg_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_ringSeg_02_001.png", + "glow_frame": "d_ringSeg_02_glow_001.png", + "gridH": 1.2666666507720947, + "gridW": 1.2666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "999": { + "can_color": true, + "children": [ + { + "frame": "d_ringSeg_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_ringSeg_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_ringSeg_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_ringSeg_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_ringSeg_03_001.png", + "glow_frame": "d_ringSeg_03_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.8666666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1000": { + "can_color": true, + "children": [ + { + "frame": "d_ringSeg_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_ringSeg_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_ringSeg_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "d_ringSeg_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_ringSeg_04_001.png", + "glow_frame": "d_ringSeg_04_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.44999998807907104, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1001": { + "can_color": true, + "children": [ + { + "frame": "d_link_d_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1005, + "default_detail_color_channel": 1006, + "frame": "d_link_d_01_001.png", + "glow_frame": "d_link_d_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1002": { + "can_color": true, + "children": [ + { + "frame": "d_link_d_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1005, + "default_detail_color_channel": 1006, + "frame": "d_link_d_02_001.png", + "glow_frame": "d_link_d_02_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1003": { + "can_color": true, + "children": [ + { + "frame": "d_link_d_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1005, + "default_detail_color_channel": 1006, + "frame": "d_link_d_03_001.png", + "glow_frame": "d_link_d_03_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1004": { + "can_color": true, + "children": [ + { + "frame": "d_link_d_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1005, + "default_detail_color_channel": 1006, + "frame": "d_link_d_04_001.png", + "glow_frame": "d_link_d_04_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1005": { + "can_color": true, + "children": [ + { + "frame": "d_link_d_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1005, + "default_detail_color_channel": 1006, + "frame": "d_link_d_05_001.png", + "glow_frame": "d_link_d_05_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.06666667014360428, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1006": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1007": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1009": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_b_02_001.png", + "glow_frame": "d_gradient_b_02_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1010": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_b_03_001.png", + "glow_frame": "d_gradient_b_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1011": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_c_01_001.png", + "glow_frame": "d_gradient_c_01_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1012": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_c_02_001.png", + "glow_frame": "d_gradient_c_02_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 0.9833333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1013": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_c_03_001.png", + "glow_frame": "d_gradient_c_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1014": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_slope_01_001.png", + "glow_frame": "block010_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1015": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_slope_02_001.png", + "glow_frame": "block010_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1016": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_slope_square_01_001.png", + "glow_frame": "block010_slope_square_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1017": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_slope_square_02_001.png", + "glow_frame": "block010_slope_square_02_glow_001.png", + "gridH": 1, + "gridW": 1.0083333253860474, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1018": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block010_slope_square_03_001.png", + "glow_frame": "block010_slope_square_03_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1019": { + "can_color": true, + "children": [ + { + "frame": "d_flashRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_flashRing_01_001.png", + "glow_frame": "d_flashRing_01_glow_001.png", + "gridH": 3.7333333492279053, + "gridW": 3.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1020": { + "can_color": true, + "children": [ + { + "frame": "d_flashRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_flashRing_02_001.png", + "glow_frame": "d_flashRing_02_glow_001.png", + "gridH": 2.9666666984558105, + "gridW": 2.9666666984558105, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1021": { + "can_color": true, + "children": [ + { + "frame": "d_flashRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_flashRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_flashRing_03_001.png", + "glow_frame": "d_flashRing_03_glow_001.png", + "gridH": 2.0999999046325684, + "gridW": 2.0999999046325684, + "spriteH": 63, + "spriteW": 63, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1022": { + "can_color": false, + "children": [ + { + "frame": "gravJumpRing_01_001.png", + "localDy": 0, + "z": -1 + } + ], + "default_base_color_channel": 0, + "frame": "gravJumpRing_01_001.png", + "glow_frame": "gravJumpRing_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "ring", + "z": 12, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1024": { + "can_color": true, + "children": [ + { + "frame": "persp_block005b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005b_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1025": { + "can_color": true, + "children": [ + { + "frame": "persp_block005b_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005b_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1026": { + "can_color": true, + "children": [ + { + "frame": "persp_block005b_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1027": { + "can_color": true, + "children": [ + { + "frame": "persp_block005b_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005b_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1028": { + "can_color": true, + "children": [ + { + "frame": "persp_block005b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005b_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1029": { + "can_color": true, + "children": [ + { + "frame": "persp_block005b_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1030": { + "can_color": true, + "children": [ + { + "frame": "persp_block005b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1031": { + "can_color": true, + "children": [ + { + "frame": "persp_block005b_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005b_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005b_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005b_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1032": { + "can_color": true, + "children": [ + { + "frame": "persp_block005b_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005b_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block005b_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1033": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_slope_03_001.png", + "glow_frame": "block005_slope_03_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1034": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_slope_04_001.png", + "glow_frame": "block005_slope_04_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1.2833333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1035": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_slope_square_04_001.png", + "glow_frame": "block005_slope_square_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1036": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_slope_square_05_001.png", + "glow_frame": "block005_slope_square_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1037": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_slope_03_001.png", + "glow_frame": "block005b_slope_03_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1038": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_slope_04_001.png", + "glow_frame": "block005b_slope_04_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1.2833333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1039": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_slope_square_04_001.png", + "glow_frame": "block005b_slope_square_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1040": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_slope_square_05_001.png", + "glow_frame": "block005b_slope_square_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1041": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005_slope_05_001.png", + "glow_frame": "block005_slope_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1042": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005_slope_06_001.png", + "glow_frame": "block005_slope_06_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1043": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005b_slope_05_001.png", + "glow_frame": "block005b_slope_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1044": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005b_slope_06_001.png", + "glow_frame": "block005b_slope_06_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1045": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005_16_001.png", + "glow_frame": "block005_16_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1046": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005_17_001.png", + "glow_frame": "block005_17_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1047": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005b_16_001.png", + "glow_frame": "block005b_16_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1048": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005b_17_001.png", + "glow_frame": "block005b_17_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1049": { + "can_color": false, + "children": [ + { + "frame": null, + "localDy": 0, + "tint": 16727871, + "z": -1 + } + ], + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1050": { + "can_color": true, + "children": [ + { + "frame": "d_animWave_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_animWave_01_base_001.png", + "glow_frame": "d_animWave_01_base_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1051": { + "can_color": true, + "children": [ + { + "frame": "d_animWave_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_animWave_02_base_001.png", + "glow_frame": "d_animWave_02_base_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1052": { + "can_color": true, + "children": [ + { + "frame": "d_animWave_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_animWave_03_base_001.png", + "glow_frame": "d_animWave_03_base_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1053": { + "can_color": true, + "children": [ + { + "frame": "d_animLoading_01_color_006.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1010, + "frame": "d_animLoading_01_006.png", + "glow_frame": "d_animLoading_01_006.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1054": { + "can_color": true, + "children": [ + { + "frame": "d_animLoading_02_color_006.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1010, + "frame": "d_animLoading_02_006.png", + "glow_frame": "d_animLoading_02_006.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1055": { + "can_color": true, + "children": [ + { + "frame": "d_pickupCircle_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_pickupCircle_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_pickupCircle_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_pickupCircle_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_pickupCircle_01_001.png", + "glow_frame": "d_pickupCircle_01_glow_001.png", + "gridH": 0.75, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1056": { + "can_color": true, + "children": [ + { + "frame": "d_pickupCircle_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_pickupCircle_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_pickupCircle_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_pickupCircle_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_pickupCircle_01_001.png", + "glow_frame": "d_pickupCircle_01_glow_001.png", + "gridH": 0.75, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1057": { + "can_color": true, + "children": [ + { + "frame": "d_pickupCircle_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_pickupCircle_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_pickupCircle_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_pickupCircle_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_pickupCircle_01_001.png", + "glow_frame": "d_pickupCircle_01_glow_001.png", + "gridH": 0.75, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1058": { + "can_color": true, + "children": [ + { + "frame": "d_spiral_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_spiral_01_001.png", + "glow_frame": "d_spiral_01_glow_001.png", + "gridH": 1.2166666984558105, + "gridW": 1.2666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1059": { + "can_color": true, + "children": [ + { + "frame": "d_spiral_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_spiral_02_001.png", + "glow_frame": "d_spiral_02_glow_001.png", + "gridH": 0.9333333373069763, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1060": { + "can_color": true, + "children": [ + { + "frame": "d_spiral_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_spiral_03_001.png", + "glow_frame": "d_spiral_03_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.8166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1061": { + "can_color": true, + "children": [ + { + "frame": "d_spiral_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_spiral_04_001.png", + "glow_frame": "d_spiral_04_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1062": { + "can_color": true, + "children": [ + { + "frame": "block009b_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_07_001.png", + "glow_frame": "block009b_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1063": { + "can_color": true, + "children": [ + { + "frame": "persp_block009_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block009_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1064": { + "can_color": true, + "children": [ + { + "frame": "persp_block009_01b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block009_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1065": { + "can_color": true, + "children": [ + { + "frame": "persp_block009_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1066": { + "can_color": true, + "children": [ + { + "frame": "persp_block009_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block009_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1067": { + "can_color": true, + "children": [ + { + "frame": "persp_block009_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block009_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1068": { + "can_color": true, + "children": [ + { + "frame": "persp_block009_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1069": { + "can_color": true, + "children": [ + { + "frame": "persp_block009_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1070": { + "can_color": true, + "children": [ + { + "frame": "persp_block009_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block009_05b_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block009_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block009_05b_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1071": { + "can_color": true, + "children": [ + { + "frame": "persp_block009_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block009_04b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block009_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1075": { + "can_color": true, + "children": [ + { + "frame": "block003_color_02_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part03_001.png", + "glow_frame": "block003_part03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1076": { + "can_color": true, + "children": [ + { + "frame": "block003_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part01_001.png", + "glow_frame": "block003_part01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1077": { + "can_color": true, + "children": [ + { + "frame": "block003_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part01_001.png", + "glow_frame": "block003_part01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1078": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_005_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_012_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_01_small_001.png", + "glow_frame": "block007_01_small_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1079": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_006_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_013_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank007_01_001.png", + "glow_frame": "plank007_01_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1080": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_006_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_013_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank007_02_001.png", + "glow_frame": "plank007_02_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1081": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "block007_color_006_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block007_bgcolor_013_001.png", + "localDy": 0, + "tint": 0, + "z": -1 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank007_03_001.png", + "glow_frame": "plank007_03_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1082": { + "can_color": true, + "children": [ + { + "frame": "block007_color_001_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_01_001.png", + "glow_frame": "block007_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1083": { + "can_color": true, + "children": [ + { + "frame": "block007_color_002_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_02_001.png", + "glow_frame": "block007_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1084": { + "can_color": true, + "children": [ + { + "frame": "block007_color_008_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_03_001.png", + "glow_frame": "block007_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1085": { + "can_color": true, + "children": [ + { + "frame": "block007_color_003_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_04_001.png", + "glow_frame": "block007_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1086": { + "can_color": true, + "children": [ + { + "frame": "block007_color_003_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_05_001.png", + "glow_frame": "block007_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1087": { + "can_color": true, + "children": [ + { + "frame": "block007_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_06_001.png", + "glow_frame": "block007_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1088": { + "can_color": true, + "children": [ + { + "frame": "block007_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_07_001.png", + "glow_frame": "block007_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1089": { + "can_color": true, + "children": [ + { + "frame": "block007_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_08_001.png", + "glow_frame": "block007_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1090": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block007_09_001.png", + "glow_frame": "block007_09_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1091": { + "can_color": true, + "children": [ + { + "frame": "block007_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_01_001.png", + "glow_frame": "block007_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1092": { + "can_color": true, + "children": [ + { + "frame": "block007_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_02_001.png", + "glow_frame": "block007_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1093": { + "can_color": true, + "children": [ + { + "frame": "block007_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_square_01_001.png", + "glow_frame": "block007_slope_square_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1094": { + "can_color": true, + "children": [ + { + "frame": "block007_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_slope_square_02_001.png", + "glow_frame": "block007_slope_square_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1095": { + "can_color": true, + "children": [ + { + "frame": "block007_color_005_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block007_01_small_001.png", + "glow_frame": "block007_01_small_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1096": { + "can_color": true, + "children": [ + { + "frame": "block007_color_006_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank007_01_001.png", + "glow_frame": "plank007_01_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1097": { + "can_color": true, + "children": [ + { + "frame": "block007_color_006_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank007_02_001.png", + "glow_frame": "plank007_02_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1098": { + "can_color": true, + "children": [ + { + "frame": "block007_color_006_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank007_03_001.png", + "glow_frame": "plank007_03_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1099": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_001_001.png", + "glow_frame": "block007_bgcolor_001_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.8166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1100": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_002_001.png", + "glow_frame": "block007_bgcolor_002_glow_001.png", + "gridH": 0.75, + "gridW": 0.800000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1101": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_003_001.png", + "glow_frame": "block007_bgcolor_003_glow_001.png", + "gridH": 0.75, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1102": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_004_001.png", + "glow_frame": "block007_bgcolor_004_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1103": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_005_001.png", + "glow_frame": "block007_bgcolor_005_glow_001.png", + "gridH": 0.75, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1104": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_006_001.png", + "glow_frame": "block007_bgcolor_006_glow_001.png", + "gridH": 0.6499999761581421, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1105": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_007_001.png", + "glow_frame": "block007_bgcolor_007_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.800000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1106": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_008_001.png", + "glow_frame": "block007_bgcolor_008_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1107": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_009_001.png", + "glow_frame": "block007_bgcolor_009_glow_001.png", + "gridH": 0.9333333373069763, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1108": { + "can_color": true, + "children": [ + { + "frame": "block007_bgcolor_010_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block007_bgcolor_011_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "block007_slope_02_001.png", + "glow_frame": "block007_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1109": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_001_001.png", + "glow_frame": "block007_bgcolor_001_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.8166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1110": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_012_001.png", + "glow_frame": "block007_bgcolor_012_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1111": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007_bgcolor_013_001.png", + "glow_frame": "block007_bgcolor_013_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.800000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1112": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007b_bgcolor_01_001.png", + "glow_frame": "block007b_bgcolor_01_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.8166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1113": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007b_bgcolor_02_001.png", + "glow_frame": "block007b_bgcolor_02_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1114": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007b_bgcolor_03_001.png", + "glow_frame": "block007b_bgcolor_03_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1115": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007b_bgcolor_05_001.png", + "glow_frame": "block007b_bgcolor_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1116": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007b_bgcolor_06_001.png", + "glow_frame": "block007b_bgcolor_06_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.6000000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1117": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007b_bgcolor_07_001.png", + "glow_frame": "block007b_bgcolor_07_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.6000000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1118": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "block007b_bgcolor_08_001.png", + "glow_frame": "block007b_bgcolor_08_glow_001.png", + "gridH": 0.8666666746139526, + "gridW": 0.8666666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -8 + }, + "1120": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_01_001.png", + "glow_frame": "block008_topcolor_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1122": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_29_001.png", + "glow_frame": "block008_topcolor_29_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1123": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_15_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1124": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_16_001.png", + "glow_frame": "block008_topcolor_16_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1125": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_18_001.png", + "glow_frame": "block008_topcolor_18_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1126": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_24b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block008_topcolor_15_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_24b_001.png", + "glow_frame": "block008_topcolor_24b_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1127": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_24b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block008_topcolor_24b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block008_topcolor_24b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_24b_001.png", + "glow_frame": "block008_topcolor_24b_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1132": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_22_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_22_001.png", + "glow_frame": "block008_topcolor_22_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1133": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_23_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_23_001.png", + "glow_frame": "block008_topcolor_23_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1134": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_25_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_25_001.png", + "glow_frame": "block008_topcolor_25_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1135": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_26_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_26_001.png", + "glow_frame": "block008_topcolor_26_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1136": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_27_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_27_001.png", + "glow_frame": "block008_topcolor_27_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1137": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_28_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_28_001.png", + "glow_frame": "block008_topcolor_28_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1138": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_12_001.png", + "glow_frame": "block008_topcolor_12_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1139": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_13_001.png", + "glow_frame": "block008_topcolor_13_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1140": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_03_001.png", + "glow_frame": "square_g_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1141": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_04_001.png", + "glow_frame": "square_g_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1142": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_05_001.png", + "glow_frame": "square_g_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1143": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_06_001.png", + "glow_frame": "square_g_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1144": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_07_001.png", + "glow_frame": "square_g_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1145": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_08_001.png", + "glow_frame": "square_g_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1146": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_09_001.png", + "glow_frame": "square_g_09_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1147": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_10_001.png", + "glow_frame": "square_g_10_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1148": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_11_001.png", + "glow_frame": "square_g_11_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1149": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_12_001.png", + "glow_frame": "square_g_12_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1150": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_13_001.png", + "glow_frame": "square_g_13_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1151": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_14_001.png", + "glow_frame": "square_g_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1152": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_15_001.png", + "glow_frame": "square_g_15_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1153": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "square_g_16_001.png", + "glow_frame": "square_g_16_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1154": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "smallOutline_01_001.png", + "glow_frame": "smallOutline_01_glow_001.png", + "gridH": 0.05000000074505806, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1155": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "smallOutline_02_001.png", + "glow_frame": "smallOutline_02_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1156": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "smallOutline_03_001.png", + "glow_frame": "smallOutline_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1157": { + "can_color": true, + "children": [ + { + "frame": "smallOutline_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "smallOutline_04_001.png", + "glow_frame": "smallOutline_04_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1158": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_06_001.png", + "glow_frame": "blockOutline_06_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.06666667014360428, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1159": { + "can_color": true, + "children": [ + { + "frame": "block009b_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_08_001.png", + "glow_frame": "block009b_08_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1160": { + "can_color": true, + "children": [ + { + "frame": "block009b_09_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_09_001.png", + "glow_frame": "block009b_09_glow_001.png", + "gridH": 1, + "gridW": 0.9166666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1161": { + "can_color": true, + "children": [ + { + "frame": "block009b_10_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009b_10_001.png", + "glow_frame": "block009b_10_glow_001.png", + "gridH": 1, + "gridW": 0.9166666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1162": { + "can_color": true, + "children": [ + { + "frame": "block006_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_01_001.png", + "glow_frame": "block006_01_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1163": { + "can_color": true, + "children": [ + { + "frame": "block006_color_02_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_02_001.png", + "glow_frame": "block006_02_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1164": { + "can_color": true, + "children": [ + { + "frame": "block006_color_03_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_03_001.png", + "glow_frame": "block006_03_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1165": { + "can_color": true, + "children": [ + { + "frame": "block006_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_04_001.png", + "glow_frame": "block006_04_glow_001.png", + "gridH": 1, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1166": { + "can_color": true, + "children": [ + { + "frame": "block006_color_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_05_001.png", + "glow_frame": "block006_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1167": { + "can_color": true, + "children": [ + { + "frame": "block006_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_06_001.png", + "glow_frame": "block006_06_glow_001.png", + "gridH": 1, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1168": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_07_001.png", + "glow_frame": "block006_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1169": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_08_001.png", + "glow_frame": "block006_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1170": { + "can_color": true, + "children": [ + { + "frame": "block006_color_06_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_09_001.png", + "glow_frame": "block006_09_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1171": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_10_001.png", + "glow_frame": "block006_10_glow_001.png", + "gridH": 1, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1172": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_11_001.png", + "glow_frame": "block006_11_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1173": { + "can_color": true, + "children": [ + { + "frame": "block006_color_02_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_12_001.png", + "glow_frame": "block006_12_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1174": { + "can_color": true, + "children": [ + { + "frame": "block006_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_13_001.png", + "glow_frame": "block006_13_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1175": { + "can_color": true, + "children": [ + { + "frame": "block006_color_03_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_14_001.png", + "glow_frame": "block006_14_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1176": { + "can_color": true, + "children": [ + { + "frame": "block006_color_03_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_15_001.png", + "glow_frame": "block006_15_glow_001.png", + "gridH": 0.5, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1177": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_16_001.png", + "glow_frame": "block006_16_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1178": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_17_001.png", + "glow_frame": "block006_17_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1179": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_18_001.png", + "glow_frame": "block006_18_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1180": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_19_001.png", + "glow_frame": "block006_19_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1181": { + "can_color": true, + "children": [ + { + "frame": "block006_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_20_001.png", + "glow_frame": "block006_20_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1182": { + "can_color": true, + "children": [ + { + "frame": "block006_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_21_001.png", + "glow_frame": "block006_21_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1183": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_22_001.png", + "glow_frame": "block006_22_glow_001.png", + "gridH": 1, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1184": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_23_001.png", + "glow_frame": "block006_23_glow_001.png", + "gridH": 1, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1185": { + "can_color": true, + "children": [ + { + "frame": "block006_color_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_24_001.png", + "glow_frame": "block006_24_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1186": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_25_001.png", + "glow_frame": "block006_25_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1187": { + "can_color": true, + "children": [ + { + "frame": "block006_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_slope_01_001.png", + "glow_frame": "block006_slope_01_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1188": { + "can_color": true, + "children": [ + { + "frame": "block006_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_slope_02_001.png", + "glow_frame": "block006_slope_02_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 1.5166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1189": { + "can_color": true, + "children": [ + { + "frame": "block006_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_slope_square_01_001.png", + "glow_frame": "block006_slope_square_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1190": { + "can_color": true, + "children": [ + { + "frame": "block006_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_slope_square_02_001.png", + "glow_frame": "block006_slope_square_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1191": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_color_01_001.png", + "glow_frame": "block006_color_01_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1192": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_color_02_001.png", + "glow_frame": "block006_color_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1193": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_color_03_001.png", + "glow_frame": "block006_color_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1194": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_color_04_001.png", + "glow_frame": "block006_color_04_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1195": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_color_05_001.png", + "glow_frame": "block006_color_05_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1196": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_color_06_001.png", + "glow_frame": "block006_color_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1197": { + "can_color": true, + "children": [ + { + "frame": "block006_color_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block006_color_01_001.png", + "glow_frame": "block006_color_01_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1198": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_slope_01_color_001.png", + "glow_frame": "block006_slope_01_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1199": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_slope_02_color_001.png", + "glow_frame": "block006_slope_02_color_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1200": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_slope_square_01_color_001.png", + "glow_frame": "block006_slope_square_01_color_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1201": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block006_slope_square_02_color_001.png", + "glow_frame": "block006_slope_square_02_color_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1202": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_01_001.png", + "glow_frame": "blockOutlineThick_01_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1203": { + "can_color": true, + "children": [ + { + "frame": "blockOutlineThick_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_02_001.png", + "glow_frame": "blockOutlineThick_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1204": { + "can_color": true, + "children": [ + { + "frame": "blockOutlineThick_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutlineThick_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_03_001.png", + "glow_frame": "blockOutlineThick_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1205": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_04_001.png", + "glow_frame": "blockOutlineThick_04_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1206": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_05_001.png", + "glow_frame": "blockOutlineThick_05_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1207": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_06_001.png", + "glow_frame": "blockOutlineThick_06_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1208": { + "can_color": true, + "children": [ + { + "frame": "blockOutlineThick_07_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutlineThick_07_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutlineThick_07_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_07_001.png", + "glow_frame": "blockOutlineThick_07_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1209": { + "can_color": true, + "children": [ + { + "frame": "blockOutlineThick_08_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_08_001.png", + "glow_frame": "blockOutlineThick_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1210": { + "can_color": true, + "children": [ + { + "frame": "blockOutlineThick_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutlineThick_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutlineThick_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_03_001.png", + "glow_frame": "blockOutlineThick_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1220": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThickb_01_001.png", + "glow_frame": "blockOutlineThickb_01_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1221": { + "can_color": true, + "children": [ + { + "frame": "blockOutlineThickb_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutlineThickb_02_001.png", + "glow_frame": "blockOutlineThickb_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1222": { + "can_color": true, + "children": [ + { + "frame": "blockOutlineThickb_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutlineThickb_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutlineThickb_03_001.png", + "glow_frame": "blockOutlineThickb_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1223": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThickb_04_001.png", + "glow_frame": "blockOutlineThickb_04_glow_001.png", + "gridH": 0.21666666865348816, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1224": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThickb_05_001.png", + "glow_frame": "blockOutlineThickb_05_glow_001.png", + "gridH": 0.21666666865348816, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1225": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThickb_06_001.png", + "glow_frame": "blockOutlineThickb_06_glow_001.png", + "gridH": 0.21666666865348816, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1226": { + "can_color": true, + "children": [ + { + "frame": "blockOutlineThickb_08_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutlineThickb_08_001.png", + "glow_frame": "blockOutlineThickb_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1227": { + "can_color": true, + "children": [ + { + "frame": "blockOutlineThickb_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutlineThickb_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blockOutlineThickb_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutlineThickb_03_001.png", + "glow_frame": "blockOutlineThickb_03_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1228": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_waveBG_001.png", + "glow_frame": "d_waveBG_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1229": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_05_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_01_001.png", + "glow_frame": "block010_piece_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1230": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_05_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_01_001.png", + "glow_frame": "block010_piece_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1231": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_06_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_01_001.png", + "glow_frame": "block010_piece_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1232": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_02_001.png", + "glow_frame": "block010_piece_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1233": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_02_001.png", + "glow_frame": "block010_piece_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1234": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_02_001.png", + "glow_frame": "block010_piece_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1235": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_02_001.png", + "glow_frame": "block010_piece_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1236": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_02_001.png", + "glow_frame": "block010_piece_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1237": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_02_001.png", + "glow_frame": "block010_piece_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1238": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_06_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_piece_01_001.png", + "glow_frame": "block010_piece_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1239": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_02_001.png", + "glow_frame": "block010_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1240": { + "can_color": true, + "children": [ + { + "frame": "block010_piece_04_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1011, + "frame": "block010_06_001.png", + "glow_frame": "block010_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1241": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_02_001.png", + "glow_frame": "block008_topcolor_02_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1242": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_06_001.png", + "glow_frame": "block008_topcolor_06_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1243": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_07_001.png", + "glow_frame": "block008_topcolor_07_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1244": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_08_001.png", + "glow_frame": "block008_topcolor_08_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1245": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "block008_topcolor_10_001.png", + "glow_frame": "block008_topcolor_10_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1246": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block008_topcolor_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block008_topcolor_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "block008_topcolor_11_001.png", + "glow_frame": "block008_topcolor_11_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 4, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 4 + }, + "1247": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_02_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_02_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1248": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_03_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1249": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_03_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_03_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1250": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_03_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1251": { + "can_color": true, + "children": [ + { + "frame": "block009c_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_10_001.png", + "glow_frame": "block009c_10_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1252": { + "can_color": true, + "children": [ + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_11_001.png", + "glow_frame": "block009c_11_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1253": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_02_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1254": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1255": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1256": { + "can_color": true, + "children": [ + { + "frame": "block009c_color_08_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_06_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_slope_03_001.png", + "glow_frame": "block009c_slope_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1257": { + "can_color": true, + "children": [ + { + "frame": "block009c_color_09_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_07_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_slope_04_001.png", + "glow_frame": "block009c_slope_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1258": { + "can_color": true, + "children": [ + { + "frame": "block009c_color_06_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_08_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_slope_03_001.png", + "glow_frame": "block009c_slope_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1259": { + "can_color": true, + "children": [ + { + "frame": "block009c_color_07_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_09_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009c_slope_04_001.png", + "glow_frame": "block009c_slope_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1260": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_02_001.png", + "glow_frame": "blockOutline_02_glow_001.png", + "gridH": 0.05000000074505806, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1261": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineOuter1_01_001.png", + "glow_frame": "blockOutlineOuter1_01_glow_001.png", + "gridH": 0.0833333358168602, + "gridW": 0.0833333358168602, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1262": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThick_01_001.png", + "glow_frame": "blockOutlineThick_01_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1263": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineOuter2_01_001.png", + "glow_frame": "blockOutlineOuter2_01_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1264": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineThickb_01_001.png", + "glow_frame": "blockOutlineThickb_01_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1265": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutlineOuter3_01_001.png", + "glow_frame": "blockOutlineOuter3_01_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.24166665971279144, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1266": { + "can_color": true, + "children": [ + { + "frame": "block009_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_07_001.png", + "glow_frame": "block009_07_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1267": { + "can_color": true, + "children": [ + { + "frame": "block009_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block009_08_001.png", + "glow_frame": "block009_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1268": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1269": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_c_04_001.png", + "glow_frame": "d_gradient_c_04_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 0.699999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1270": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_c_05_001.png", + "glow_frame": "d_gradient_c_05_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 0.44999998807907104, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1271": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_b_04_001.png", + "glow_frame": "d_gradient_b_04_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1272": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_b_05_001.png", + "glow_frame": "d_gradient_b_05_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.15000000596046448, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1273": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_04_001.png", + "glow_frame": "d_gradient_04_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1274": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_05_001.png", + "glow_frame": "d_gradient_05_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.30000001192092896, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1275": { + "can_color": true, + "children": [ + { + "frame": "d_key01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "d_key01_001.png", + "glow_frame": "d_key01_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1276": { + "can_color": true, + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "d_keyHole01_001.png", + "glow_frame": "d_keyHole01_glow_001.png", + "gridH": 1, + "gridW": 0.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1277": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_02_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1278": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_02_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1279": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_03_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1280": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_03_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_03_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1281": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_03_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_03_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1282": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1283": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1284": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1285": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1286": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1287": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_02_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1288": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block009c_color_02_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1289": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_02_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1290": { + "can_color": true, + "children": [ + { + "frame": "block009c_line_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_line_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "block009c_color_02_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 0, + "z": 1 + }, + { + "frame": "block008_06_color_b_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block005b_05_001.png", + "glow_frame": "block005b_05_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1291": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_06_001.png", + "glow_frame": "d_gradient_06_glow_001.png", + "gridH": 0.6499999761581421, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1292": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_b_06_001.png", + "glow_frame": "d_gradient_b_06_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1293": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_gradient_c_06_001.png", + "glow_frame": "d_gradient_c_06_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1294": { + "can_color": true, + "children": [ + { + "frame": "block005_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_02b_001.png", + "glow_frame": "block005_02b_glow_001.png", + "gridH": 1, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1295": { + "can_color": true, + "children": [ + { + "frame": "block005_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005_04b_001.png", + "glow_frame": "block005_04b_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1296": { + "can_color": true, + "children": [ + { + "frame": "block005_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_02b_001.png", + "glow_frame": "block005b_02b_glow_001.png", + "gridH": 1, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1297": { + "can_color": true, + "children": [ + { + "frame": "block005_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005b_04b_001.png", + "glow_frame": "block005b_04b_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1298": { + "can_color": true, + "children": [ + { + "frame": "block003_color_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "block003_part02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block003_part01_001.png", + "glow_frame": "block003_part01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1299": { + "can_color": true, + "children": [ + { + "frame": "block005_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_02_001.png", + "glow_frame": "block005c_02_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1300": { + "can_color": true, + "children": [ + { + "frame": "block005_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_03_001.png", + "glow_frame": "block005c_03_glow_001.png", + "gridH": 0.75, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1301": { + "can_color": true, + "children": [ + { + "frame": "block005_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_04_001.png", + "glow_frame": "block005c_04_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.6000000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1302": { + "can_color": true, + "children": [ + { + "frame": "block005_10_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_10_001.png", + "glow_frame": "block005c_10_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1303": { + "can_color": true, + "children": [ + { + "frame": "block005_11_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_11_001.png", + "glow_frame": "block005c_11_glow_001.png", + "gridH": 0.4833333194255829, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1304": { + "can_color": true, + "children": [ + { + "frame": "block005_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_06_001.png", + "glow_frame": "block005c_06_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1305": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_slope_01_001.png", + "glow_frame": "block005c_slope_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1306": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_slope_02_001.png", + "glow_frame": "block005c_slope_02_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1.2999999523162842, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1307": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_slope_square_01_001.png", + "glow_frame": "block005c_slope_square_01_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.6833333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1308": { + "can_color": true, + "children": [ + { + "frame": "block005_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block005c_slope_square_02_001.png", + "glow_frame": "block005c_slope_square_02_glow_001.png", + "gridH": 0.6166666746139526, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1309": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_slope_square_03_001.png", + "glow_frame": "block005c_slope_square_03_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1310": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_02_001.png", + "glow_frame": "block005c_02_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1311": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_03_001.png", + "glow_frame": "block005c_03_glow_001.png", + "gridH": 0.75, + "gridW": 0.75, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1312": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_04_001.png", + "glow_frame": "block005c_04_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.6000000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1313": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_10_001.png", + "glow_frame": "block005c_10_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1314": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_11_001.png", + "glow_frame": "block005c_11_glow_001.png", + "gridH": 0.4833333194255829, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1315": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_06_001.png", + "glow_frame": "block005c_06_glow_001.png", + "gridH": 0.7166666388511658, + "gridW": 0.4833333194255829, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1316": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_slope_01_001.png", + "glow_frame": "block005c_slope_01_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1317": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_slope_02_001.png", + "glow_frame": "block005c_slope_02_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1.2999999523162842, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1318": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_slope_square_01_001.png", + "glow_frame": "block005c_slope_square_01_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.6833333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1319": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_slope_square_02_001.png", + "glow_frame": "block005c_slope_square_02_glow_001.png", + "gridH": 0.6166666746139526, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1320": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block005c_slope_square_03_001.png", + "glow_frame": "block005c_slope_square_03_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1322": { + "can_color": true, + "children": [ + { + "frame": "block006_color_02_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_26_001.png", + "glow_frame": "block006_26_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1325": { + "can_color": true, + "children": [ + { + "frame": "block006_slope_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_slope_square_03_001.png", + "glow_frame": "block006_slope_square_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1326": { + "can_color": true, + "children": [ + { + "frame": "block006_slope_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block006_slope_square_04_001.png", + "glow_frame": "block006_slope_square_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1327": { + "can_color": true, + "default_base_color_channel": 1010, + "default_detail_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1328": { + "can_color": true, + "default_base_color_channel": 1010, + "default_detail_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 0.5, + "gridW": 0.2666666805744171, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1329": { + "type": "deco", + "frame": "secretCoin_2_01_001.png", + "gridW": 1, + "gridH": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1330": { + "type": "ring", + "frame": "dropRing_01_001.png", + "gridW": 1.2, + "gridH": 1.2, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1331": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_17_front_001.png", + "glow_frame": "portal_17_front_glow_001.png", + "gridH": 2.866666555404663, + "gridW": 1.1333333253860474, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10, + "portalParticle": true, + "portalParticleColor": 0x00ffff + }, + "1332": { + "type": "pad", + "frame": "bump_02_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.9666666388511658, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1333": { + "type": "ring", + "frame": "ring_02_001.png", + "gridW": 1.2, + "gridH": 1.2, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1334": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "boost_05_001.png", + "glow_frame": "boost_05_glow_001.png", + "gridH": 1.8666666746139526, + "gridW": 2.299999952316284, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -6, + "default_detail_color_channel": -1, + "default_z_layer": 4, + "default_z_order": -6 + }, + "1338": { + "can_color": true, + "children": [ + { + "frame": "blockOutline_14new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1339": { + "can_color": true, + "children": [ + { + "frame": "blockOutline_15new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 3, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 3 + }, + "1340": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "invisibleOutline_01_001.png", + "glow_frame": "invisibleOutline_01_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1341": { + "can_color": true, + "children": [ + { + "frame": "invisibleOutline_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1342": { + "can_color": true, + "children": [ + { + "frame": "invisibleOutline_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1343": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "invisibleOutline_b_01_001.png", + "glow_frame": "invisibleOutline_b_01_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1344": { + "can_color": true, + "children": [ + { + "frame": "invisibleOutline_b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1345": { + "can_color": true, + "children": [ + { + "frame": "invisibleOutline_b_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1346": { + "type": "trigger", + "frame": null, + "gridW": 0, + "gridH": 0, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1347": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1348": { + "can_color": true, + "children": [ + { + "frame": "block011_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_01_001.png", + "glow_frame": "block011_01_glow_001.png", + "gridH": 1.1833332777023315, + "gridW": 1.0833333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1349": { + "can_color": true, + "children": [ + { + "frame": "block011_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_02_001.png", + "glow_frame": "block011_02_glow_001.png", + "gridH": 1.1666666269302368, + "gridW": 0.949999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1350": { + "can_color": true, + "children": [ + { + "frame": "block011_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_03_001.png", + "glow_frame": "block011_03_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 1.0166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1351": { + "can_color": true, + "children": [ + { + "frame": "block011_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_04_001.png", + "glow_frame": "block011_04_glow_001.png", + "gridH": 1.1333333253860474, + "gridW": 1.1166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1352": { + "can_color": true, + "children": [ + { + "frame": "block011b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_01_001.png", + "glow_frame": "block011b_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1353": { + "can_color": true, + "children": [ + { + "frame": "block011b_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_02_001.png", + "glow_frame": "block011b_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1354": { + "can_color": true, + "children": [ + { + "frame": "block011b_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_03_001.png", + "glow_frame": "block011b_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1355": { + "can_color": true, + "children": [ + { + "frame": "block011b_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_04_001.png", + "glow_frame": "block011b_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1356": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_02_001.png", + "glow_frame": "block011_edge_02_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1357": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_03_001.png", + "glow_frame": "block011_edge_03_glow_001.png", + "gridH": 1.1666666269302368, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1358": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_04_001.png", + "glow_frame": "block011_edge_04_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.5666666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1359": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_05_001.png", + "glow_frame": "block011_edge_05_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 1.0166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1360": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_06_001.png", + "glow_frame": "block011_edge_06_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.9833333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1361": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_07_001.png", + "glow_frame": "block011_edge_07_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 1.0499999523162842, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1362": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_08_001.png", + "glow_frame": "block011_edge_08_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.949999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1363": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_09_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_09_001.png", + "glow_frame": "block011_edge_09_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1364": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_10_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_10_001.png", + "glow_frame": "block011_edge_10_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1365": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_11_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_11_001.png", + "glow_frame": "block011_edge_11_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1366": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block011_edge_12_001.png", + "glow_frame": "block011_edge_12_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1367": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_01_001.png", + "glow_frame": "block011_light_01_glow_001.png", + "gridH": 1.2333333492279053, + "gridW": 0.4833333194255829, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1368": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_02_001.png", + "glow_frame": "block011_light_02_glow_001.png", + "gridH": 0.8666666746139526, + "gridW": 0.4833333194255829, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1369": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_03_001.png", + "glow_frame": "block011_light_03_glow_001.png", + "gridH": 1.2166666984558105, + "gridW": 0.5833333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1370": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_04_001.png", + "glow_frame": "block011_light_04_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.5833333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1371": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_05_001.png", + "glow_frame": "block011_light_05_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1372": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_06_001.png", + "glow_frame": "block011_light_06_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 1.0166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1373": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_07_001.png", + "glow_frame": "block011_light_07_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 1.100000023841858, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1374": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_08_001.png", + "glow_frame": "block011_light_08_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.9833333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1375": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_09_001.png", + "glow_frame": "block011_light_09_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1376": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_10_001.png", + "glow_frame": "block011_light_10_glow_001.png", + "gridH": 0.4166666567325592, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1377": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_11_001.png", + "glow_frame": "block011_light_11_glow_001.png", + "gridH": 0.4833333194255829, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1378": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_12_001.png", + "glow_frame": "block011_light_12_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1379": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_13_001.png", + "glow_frame": "block011_light_13_glow_001.png", + "gridH": 1.1666666269302368, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1380": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_14_001.png", + "glow_frame": "block011_light_14_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1381": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_15_001.png", + "glow_frame": "block011_light_15_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.6000000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1382": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_16_001.png", + "glow_frame": "block011_light_16_glow_001.png", + "gridH": 1.2166666984558105, + "gridW": 0.6333333253860474, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1383": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_17_001.png", + "glow_frame": "block011_light_17_glow_001.png", + "gridH": 0.6499999761581421, + "gridW": 1.149999976158142, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1384": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_18_001.png", + "glow_frame": "block011_light_18_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1385": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_19_001.png", + "glow_frame": "block011_light_19_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.949999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1386": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block011_light_20_001.png", + "glow_frame": "block011_light_20_glow_001.png", + "gridH": 0.75, + "gridW": 1.1166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1387": { + "can_color": true, + "children": [ + { + "frame": "block011b_piece_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_piece_01_001.png", + "glow_frame": "block011b_piece_01_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 0.9166666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1388": { + "can_color": true, + "children": [ + { + "frame": "block011b_piece_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_piece_02_001.png", + "glow_frame": "block011b_piece_02_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 0.7666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1389": { + "can_color": true, + "children": [ + { + "frame": "block011b_piece_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_piece_03_001.png", + "glow_frame": "block011b_piece_03_glow_001.png", + "gridH": 0.6833333373069763, + "gridW": 0.8500000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1390": { + "can_color": true, + "children": [ + { + "frame": "block011b_piece_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_piece_04_001.png", + "glow_frame": "block011b_piece_04_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1391": { + "can_color": true, + "children": [ + { + "frame": "block011b_piece_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_piece_05_001.png", + "glow_frame": "block011b_piece_05_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 0.800000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1392": { + "can_color": true, + "children": [ + { + "frame": "block011b_piece_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_piece_06_001.png", + "glow_frame": "block011b_piece_06_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.6333333253860474, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1393": { + "can_color": true, + "children": [ + { + "frame": "block011b_piece_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_piece_07_001.png", + "glow_frame": "block011b_piece_07_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.8166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1394": { + "can_color": true, + "children": [ + { + "frame": "block011b_piece_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_piece_08_001.png", + "glow_frame": "block011b_piece_08_glow_001.png", + "gridH": 0.6833333373069763, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1395": { + "can_color": true, + "children": [ + { + "frame": "block011_edge_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block011_edge_01_001.png", + "glow_frame": "block011_edge_01_glow_001.png", + "gridH": 1.1666666269302368, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1431": { + "can_color": true, + "children": [ + { + "frame": "block012_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_01_001.png", + "glow_frame": "block012_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1432": { + "can_color": true, + "children": [ + { + "frame": "block012_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_02_001.png", + "glow_frame": "block012_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1433": { + "can_color": true, + "children": [ + { + "frame": "block012_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_03_001.png", + "glow_frame": "block012_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1434": { + "can_color": true, + "children": [ + { + "frame": "block012_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_04_001.png", + "glow_frame": "block012_04_glow_001.png", + "gridH": 1, + "gridW": 0.699999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1435": { + "can_color": true, + "children": [ + { + "frame": "block012_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_05_001.png", + "glow_frame": "block012_05_glow_001.png", + "gridH": 0.5833333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1436": { + "can_color": true, + "children": [ + { + "frame": "block012_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_06_001.png", + "glow_frame": "block012_06_glow_001.png", + "gridH": 1, + "gridW": 0.6000000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1437": { + "can_color": true, + "children": [ + { + "frame": "block012_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_07_001.png", + "glow_frame": "block012_07_glow_001.png", + "gridH": 0.7166666388511658, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1438": { + "can_color": true, + "children": [ + { + "frame": "block012_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_08_001.png", + "glow_frame": "block012_08_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1439": { + "can_color": true, + "children": [ + { + "frame": "block012_09_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_09_001.png", + "glow_frame": "block012_09_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.36666667461395264, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1440": { + "can_color": true, + "children": [ + { + "frame": "block012_10_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_10_001.png", + "glow_frame": "block012_10_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1441": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block012_11_001.png", + "glow_frame": "block012_11_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1442": { + "can_color": true, + "children": [ + { + "frame": "block012b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_01_001.png", + "glow_frame": "block012b_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1443": { + "can_color": true, + "children": [ + { + "frame": "block012b_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_02_001.png", + "glow_frame": "block012b_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1444": { + "can_color": true, + "children": [ + { + "frame": "block012b_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_03_001.png", + "glow_frame": "block012b_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1445": { + "can_color": true, + "children": [ + { + "frame": "block012b_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_04_001.png", + "glow_frame": "block012b_04_glow_001.png", + "gridH": 1, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1446": { + "can_color": true, + "children": [ + { + "frame": "block012b_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_05_001.png", + "glow_frame": "block012b_05_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1447": { + "can_color": true, + "children": [ + { + "frame": "block012b_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_06_001.png", + "glow_frame": "block012b_06_glow_001.png", + "gridH": 1, + "gridW": 0.4833333194255829, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1448": { + "can_color": true, + "children": [ + { + "frame": "block012b_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_07_001.png", + "glow_frame": "block012b_07_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1449": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "block012b_08_001.png", + "glow_frame": "block012b_08_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1450": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "block012b_09_001.png", + "glow_frame": "block012b_09_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1451": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "block012b_10_001.png", + "glow_frame": "block012b_10_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1452": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "block012b_11_001.png", + "glow_frame": "block012b_11_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1453": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block012_light_01_001.png", + "glow_frame": "block012_light_01_glow_001.png", + "gridH": 1, + "gridW": 0.28333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1454": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block012_light_02_001.png", + "glow_frame": "block012_light_02_glow_001.png", + "gridH": 0.28333333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1455": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block012_light_03_001.png", + "glow_frame": "block012_light_03_glow_001.png", + "gridH": 1, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1456": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block012_light_04_001.png", + "glow_frame": "block012_light_04_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1457": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block012_light_05_001.png", + "glow_frame": "block012_light_05_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5833333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1458": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block012_light_06_001.png", + "glow_frame": "block012_light_06_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1459": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block012_light_07_001.png", + "glow_frame": "block012_light_07_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5833333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1460": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block012_light_08_001.png", + "glow_frame": "block012_light_08_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1461": { + "can_color": true, + "children": [ + { + "frame": "block013_01c_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_01c_001.png", + "glow_frame": "block013_01c_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1462": { + "can_color": true, + "children": [ + { + "frame": "block013_02c_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_02c_001.png", + "glow_frame": "block013_02c_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1463": { + "can_color": true, + "children": [ + { + "frame": "block013_03c_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_03c_001.png", + "glow_frame": "block013_03c_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1464": { + "can_color": true, + "children": [ + { + "frame": "block013_04c_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_04c_001.png", + "glow_frame": "block013_04c_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1471": { + "can_color": true, + "children": [ + { + "frame": "block013_detail_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block013_detail_01_001.png", + "glow_frame": "block013_detail_01_glow_001.png", + "gridH": 0.4166666567325592, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1472": { + "can_color": true, + "children": [ + { + "frame": "block013_detail_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block013_detail_02_001.png", + "glow_frame": "block013_detail_02_glow_001.png", + "gridH": 0.3166666626930237, + "gridW": 0.10000000149011612, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1473": { + "can_color": true, + "children": [ + { + "frame": "block013_detail_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_detail_03_001.png", + "glow_frame": "block013_detail_03_glow_001.png", + "gridH": 0.5, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1496": { + "can_color": true, + "children": [ + { + "frame": "block013_detail_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_detail_04_001.png", + "glow_frame": "block013_detail_04_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.699999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1507": { + "can_color": true, + "children": [ + { + "frame": "block013_detail_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block013_detail_05_001.png", + "glow_frame": "block013_detail_05_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1510": { + "can_color": true, + "children": [ + { + "frame": "block012_12_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_12_001.png", + "glow_frame": "block012_12_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1511": { + "can_color": true, + "children": [ + { + "frame": "block012_13_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_13_001.png", + "glow_frame": "block012_13_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 0.8833333253860474, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1512": { + "can_color": true, + "children": [ + { + "frame": "block012_14_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_14_001.png", + "glow_frame": "block012_14_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 0.8500000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1513": { + "can_color": true, + "children": [ + { + "frame": "block012b_12_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_12_001.png", + "glow_frame": "block012b_12_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1514": { + "can_color": true, + "children": [ + { + "frame": "block012b_13_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_13_001.png", + "glow_frame": "block012b_13_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1515": { + "can_color": true, + "children": [ + { + "frame": "block012b_14_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_14_001.png", + "glow_frame": "block012b_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1516": { + "can_color": true, + "children": [ + { + "frame": "waterfallAnim_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "waterfallAnim_color_001.png", + "localDy": 0, + "tint": 52224 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "waterfallAnim_001.png", + "glow_frame": "waterfallAnim_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1517": { + "can_color": true, + "children": [ + { + "frame": "waterfallAnim_color_007.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "waterfallAnim_007.png", + "glow_frame": "waterfallAnim_007.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1518": { + "can_color": true, + "children": [ + { + "frame": "waterSplash_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "waterSplash_001.png", + "glow_frame": "waterSplash_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5833333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1519": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "starAnim_002.png", + "glow_frame": "starAnim_002.png", + "gridH": 0.3333333432674408, + "gridW": 0.3166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1520": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1521": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingLine_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_rotatingLine_01_001.png", + "glow_frame": "d_rotatingLine_01_glow_001.png", + "gridH": 2.0999999046325684, + "gridW": 0.20000000298023224, + "spriteH": 63, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1522": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingLine_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1006, + "frame": "d_rotatingLine_02_001.png", + "glow_frame": "d_rotatingLine_02_glow_001.png", + "gridH": 1.7000000476837158, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1523": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingLine_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_rotatingLine_03_001.png", + "glow_frame": "d_rotatingLine_03_glow_001.png", + "gridH": 1.2333333492279053, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1524": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingLine_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1006, + "frame": "d_rotatingLine_04_001.png", + "glow_frame": "d_rotatingLine_04_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 0.10000000149011612, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1525": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingSquare_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_rotatingSquare_01_001.png", + "glow_frame": "d_rotatingSquare_01_glow_001.png", + "gridH": 0.21666666865348816, + "gridW": 0.20000000298023224, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1526": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingSquare_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1006, + "frame": "d_rotatingSquare_02_001.png", + "glow_frame": "d_rotatingSquare_02_glow_001.png", + "gridH": 0.18333333730697632, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1527": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingSquare_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1005, + "frame": "d_rotatingSquare_03_001.png", + "glow_frame": "d_rotatingSquare_03_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1528": { + "can_color": true, + "children": [ + { + "frame": "d_rotatingSquare_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1006, + "frame": "d_rotatingSquare_04_001.png", + "glow_frame": "d_rotatingSquare_04_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.10000000149011612, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1529": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block013_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1530": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "persp_block013_09_001.png", + "glow_frame": "persp_block013_09_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1531": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1532": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block013_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1533": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block013_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1534": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1535": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1536": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_05_001.png", + "localDy": -7.5, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block013_05_001.png", + "localDy": 7.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1537": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_04_001.png", + "localDy": -7.5, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block013_04_001.png", + "localDy": 7.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1538": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_07_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block013_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1539": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block013_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1540": { + "can_color": true, + "children": [ + { + "frame": "persp_block013_08_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1552": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block011_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block011_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1553": { + "can_color": true, + "children": [ + { + "frame": "block008_topcolor_15_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block011_01b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block011_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1554": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_03_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block011_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1555": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_04_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block011_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block011_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1556": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_05_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block011_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block011_02_001.png", + "localDy": 2.5, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.550000011920929, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1557": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_06_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block011_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.38333332538604736, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1558": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_07_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block011_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1559": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_08_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block011_05_001.png", + "localDy": -11.25, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block011_05_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block011_05_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block011_05_001.png", + "localDy": 11.25, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 2.049999952316284, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1560": { + "can_color": true, + "children": [ + { + "frame": "persp_outline_09_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "persp_block011_04_001.png", + "localDy": -10, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block011_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "persp_block011_04_001.png", + "localDy": 10, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0499999523162842, + "gridW": 1.0499999523162842, + "spriteH": 31.5, + "spriteW": 31.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1561": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "persp_outline_01_001.png", + "glow_frame": "persp_outline_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1562": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block008_topcolor_15_001.png", + "glow_frame": "block008_topcolor_15_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1563": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "persp_outline_03_001.png", + "glow_frame": "persp_outline_03_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1564": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "persp_outline_04_001.png", + "glow_frame": "persp_outline_04_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4000000059604645, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1565": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "persp_outline_05_001.png", + "glow_frame": "persp_outline_05_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5666666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1566": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "persp_outline_06_001.png", + "glow_frame": "persp_outline_06_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4000000059604645, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1567": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "persp_outline_07_001.png", + "glow_frame": "persp_outline_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1568": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "persp_outline_08_001.png", + "glow_frame": "persp_outline_08_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 2.066666603088379, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1569": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "persp_outline_09_001.png", + "glow_frame": "persp_outline_09_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1582": { + "can_color": true, + "children": [ + { + "frame": "fireball_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "fireball_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "fireball_01_001.png", + "glow_frame": "fireball_01_glow_001.png", + "gridH": 0.8666666746139526, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 9, + "hitbox_radius": 4, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1583": { + "can_color": true, + "children": [ + { + "frame": "fireball_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "fireball_02_001.png", + "glow_frame": "fireball_02_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 1.0333333015441895, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 9, + "hitbox_radius": 4, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1584": { + "can_color": true, + "default_base_color_channel": 1010, + "default_detail_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1585": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1586": { + "can_color": true, + "children": [ + { + "frame": null, + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 1.2000000476837158, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "trigger", + "default_z_layer": 1, + "default_z_order": 0 + }, + "1587": { + "can_color": true, + "children": [ + { + "frame": "d_heart01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "d_heart01_001.png", + "glow_frame": "d_heart01_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1588": { + "can_color": true, + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "d_heart01_match_001.png", + "glow_frame": "d_heart01_match_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1589": { + "can_color": true, + "children": [ + { + "frame": "d_potion01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "d_potion01_001.png", + "glow_frame": "d_potion01_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1590": { + "can_color": true, + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "d_potion01_match_001.png", + "glow_frame": "d_potion01_match_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 0.8500000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1591": { + "can_color": true, + "children": [ + { + "frame": "lava_top_bubble_color_008.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "lava_top_bubble_008.png", + "glow_frame": "lava_top_bubble_008.png", + "gridH": 0.11666666716337204, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1592": { + "can_color": true, + "children": [ + { + "frame": "d_animSquare_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "d_animSquare_01_006.png", + "glow_frame": "d_animSquare_01_006.png", + "gridH": 0.25, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1593": { + "can_color": true, + "children": [ + { + "frame": "lava_top_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "lava_top_002.png", + "glow_frame": "lava_top_002.png", + "gridH": 0.11666666716337204, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1594": { + "type": "ring", + "frame": "ring_custom_01_001.png", + "gridW": 1.2, + "gridH": 1.2, + "default_detail_color_channel": 1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1595": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1596": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_skull_01_001.png", + "glow_frame": "d_skull_01_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.6499999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "1597": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_skull_02_001.png", + "glow_frame": "d_skull_02_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.6000000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 1 + }, + "1598": { + "can_color": true, + "children": [ + { + "frame": "d_skull01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "d_skull01_001.png", + "glow_frame": "d_skull01_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1599": { + "can_color": true, + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "d_skull01_match_001.png", + "glow_frame": "d_skull01_match_glow_001.png", + "gridH": 0.8666666746139526, + "gridW": 0.8500000238418579, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1600": { + "can_color": true, + "children": [ + { + "frame": "d_sign_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "d_sign_01_001.png", + "glow_frame": "d_sign_01_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.9666666388511658, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1601": { + "can_color": true, + "children": [ + { + "frame": "d_sign_pole_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "d_sign_pole_001.png", + "glow_frame": "d_sign_pole_glow_001.png", + "gridH": 1.3333333730697632, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 8, + "default_z_layer": 3, + "default_z_order": 8 + }, + "1602": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_sign_img_01_001.png", + "glow_frame": "d_sign_img_01_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 12, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1603": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_sign_img_02_001.png", + "glow_frame": "d_sign_img_02_glow_001.png", + "gridH": 0.4833333194255829, + "gridW": 0.5833333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 12, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1604": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_sign_img_03_001.png", + "glow_frame": "d_sign_img_03_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.6499999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 12, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1605": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_sign_img_04_001.png", + "glow_frame": "d_sign_img_04_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.6499999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 12, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1606": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_sign_img_05_001.png", + "glow_frame": "d_sign_img_05_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.23333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 12, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1607": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_sign_img_06_001.png", + "glow_frame": "d_sign_img_06_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.3499999940395355, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 12, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1608": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_sign_paint_01_001.png", + "glow_frame": "d_sign_paint_01_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.3166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1609": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_sign_paint_02_001.png", + "glow_frame": "d_sign_paint_02_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1610": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "d_sign_paint_03_001.png", + "glow_frame": "d_sign_paint_03_glow_001.png", + "gridH": 0.18333333730697632, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1611": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1612": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1613": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1614": { + "can_color": true, + "children": [ + { + "frame": "smallCoin_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "smallCoin_02_highlight_001.png", + "localDy": 0, + "tint": 5898073, + "z": 10 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1010, + "frame": "smallCoin_01_001.png", + "glow_frame": "smallCoin_01_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.8333333134651184, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "1615": { + "can_color": true, + "default_base_color_channel": 1, + "frame": null, + "glow_frame": "none", + "gridH": 1.0499999523162842, + "gridW": 1.4500000476837158, + "spriteH": 31.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1616": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1617": { + "can_color": true, + "children": [ + { + "frame": "block013_detail_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1012, + "frame": "block013_detail_06_001.png", + "glow_frame": "block013_detail_06_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1618": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "explosion_01_007.png", + "glow_frame": "explosion_01_007.png", + "gridH": 0.36666667461395264, + "gridW": 0.3333333432674408, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1619": { + "can_color": true, + "children": [ + { + "frame": "spinBlade01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "spinBlade01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "spinBlade01_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "spinBlade01_001.png", + "glow_frame": "spinBlade01_glow_001.png", + "gridH": 1.2999999523162842, + "gridW": 1.6333333253860474, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 25, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1620": { + "can_color": true, + "children": [ + { + "frame": "spinBlade02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "spinBlade02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "spinBlade02_001.png", + "glow_frame": "spinBlade02_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 15, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1621": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_01_001.png", + "glow_frame": "block013_edge_01_glow_001.png", + "gridH": 1, + "gridW": 0.30000001192092896, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1622": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_02_001.png", + "glow_frame": "block013_edge_02_glow_001.png", + "gridH": 1, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1623": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_03_001.png", + "glow_frame": "block013_edge_03_glow_001.png", + "gridH": 1, + "gridW": 0.28333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1624": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_04_001.png", + "glow_frame": "block013_edge_04_glow_001.png", + "gridH": 1, + "gridW": 0.3166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1625": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_05_001.png", + "glow_frame": "block013_edge_05_glow_001.png", + "gridH": 1, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1626": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_06_001.png", + "glow_frame": "block013_edge_06_glow_001.png", + "gridH": 1, + "gridW": 0.23333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1627": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_07_001.png", + "glow_frame": "block013_edge_07_glow_001.png", + "gridH": 1, + "gridW": 0.25, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1628": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_08_001.png", + "glow_frame": "block013_edge_08_glow_001.png", + "gridH": 1, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1629": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_09_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_09_001.png", + "glow_frame": "block013_edge_09_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1630": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_10_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_10_001.png", + "glow_frame": "block013_edge_10_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1631": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_11_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_11_001.png", + "glow_frame": "block013_edge_11_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1632": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_12_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_12_001.png", + "glow_frame": "block013_edge_12_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1633": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_13_001.png", + "glow_frame": "block013_edge_13_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1634": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_14_001.png", + "glow_frame": "block013_edge_14_glow_001.png", + "gridH": 0.28333333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1635": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_15_001.png", + "glow_frame": "block013_edge_15_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1636": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_16_001.png", + "glow_frame": "block013_edge_16_glow_001.png", + "gridH": 0.28333333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1637": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_c_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_c_01_001.png", + "glow_frame": "block013_edge_c_01_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1638": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_c_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_c_02_001.png", + "glow_frame": "block013_edge_c_02_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1639": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_c_03_001.png", + "glow_frame": "block013_edge_c_03_glow_001.png", + "gridH": 0.25, + "gridW": 0.23333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1640": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_c_04_001.png", + "glow_frame": "block013_edge_c_04_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1641": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_c_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_c_05_001.png", + "glow_frame": "block013_edge_c_05_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1642": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_c_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_c_06_001.png", + "glow_frame": "block013_edge_c_06_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1643": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_c_07_001.png", + "glow_frame": "block013_edge_c_07_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.15000000596046448, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1644": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_c_08_001.png", + "glow_frame": "block013_edge_c_08_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.20000000298023224, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1645": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_c_09_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_c_09_001.png", + "glow_frame": "block013_edge_c_09_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.25, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1646": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_c_10_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_c_10_001.png", + "glow_frame": "block013_edge_c_10_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1647": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_c_11_001.png", + "glow_frame": "block013_edge_c_11_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1648": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_c_12_001.png", + "glow_frame": "block013_edge_c_12_glow_001.png", + "gridH": 0.28333333134651184, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1649": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_c_13_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_c_13_001.png", + "glow_frame": "block013_edge_c_13_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.18333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1650": { + "can_color": true, + "children": [ + { + "frame": "block013_edge_c_14_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block013_edge_c_14_001.png", + "glow_frame": "block013_edge_c_14_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1651": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_c_15_001.png", + "glow_frame": "block013_edge_c_15_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1652": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_edge_c_16_001.png", + "glow_frame": "block013_edge_c_16_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1653": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_01_001.png", + "glow_frame": "block013_light_01_glow_001.png", + "gridH": 1, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1654": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_02_001.png", + "glow_frame": "block013_light_02_glow_001.png", + "gridH": 1, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1655": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_03_001.png", + "glow_frame": "block013_light_03_glow_001.png", + "gridH": 1, + "gridW": 0.25, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1656": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_04_001.png", + "glow_frame": "block013_light_04_glow_001.png", + "gridH": 1, + "gridW": 0.28333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1657": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_05_001.png", + "glow_frame": "block013_light_05_glow_001.png", + "gridH": 1, + "gridW": 0.23333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1658": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_06_001.png", + "glow_frame": "block013_light_06_glow_001.png", + "gridH": 1, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1659": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_07_001.png", + "glow_frame": "block013_light_07_glow_001.png", + "gridH": 1, + "gridW": 0.25, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1660": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_08_001.png", + "glow_frame": "block013_light_08_glow_001.png", + "gridH": 1, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1661": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_09_001.png", + "glow_frame": "block013_light_09_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1662": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_10_001.png", + "glow_frame": "block013_light_10_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1663": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_11_001.png", + "glow_frame": "block013_light_11_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1664": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_12_001.png", + "glow_frame": "block013_light_12_glow_001.png", + "gridH": 0.28333333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1665": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_13_001.png", + "glow_frame": "block013_light_13_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1666": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_14_001.png", + "glow_frame": "block013_light_14_glow_001.png", + "gridH": 0.18333333730697632, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1667": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_15_001.png", + "glow_frame": "block013_light_15_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1668": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_16_001.png", + "glow_frame": "block013_light_16_glow_001.png", + "gridH": 0.28333333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1669": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_01_001.png", + "glow_frame": "block013_light_c_01_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.18333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1670": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_02_001.png", + "glow_frame": "block013_light_c_02_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1671": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_03_001.png", + "glow_frame": "block013_light_c_03_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.28333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1672": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_04_001.png", + "glow_frame": "block013_light_c_04_glow_001.png", + "gridH": 0.25, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1673": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_05_001.png", + "glow_frame": "block013_light_c_05_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.3166666626930237, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1674": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_06_001.png", + "glow_frame": "block013_light_c_06_glow_001.png", + "gridH": 0.21666666865348816, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1675": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_07_001.png", + "glow_frame": "block013_light_c_07_glow_001.png", + "gridH": 0.25, + "gridW": 0.18333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1676": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_08_001.png", + "glow_frame": "block013_light_c_08_glow_001.png", + "gridH": 0.3166666626930237, + "gridW": 0.25, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1677": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_09_001.png", + "glow_frame": "block013_light_c_09_glow_001.png", + "gridH": 0.25, + "gridW": 0.30000001192092896, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1678": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_10_001.png", + "glow_frame": "block013_light_c_10_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1679": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_11_001.png", + "glow_frame": "block013_light_c_11_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1680": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_12_001.png", + "glow_frame": "block013_light_c_12_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1681": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_13_001.png", + "glow_frame": "block013_light_c_13_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.21666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1682": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_14_001.png", + "glow_frame": "block013_light_c_14_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1683": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_15_001.png", + "glow_frame": "block013_light_c_15_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.28333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1684": { + "can_color": true, + "default_base_color_channel": 4, + "frame": "block013_light_c_16_001.png", + "glow_frame": "block013_light_c_16_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1685": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1686": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1687": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1688": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1689": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1690": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1691": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1692": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1693": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1694": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1695": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1696": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1697": { + "can_color": true, + "default_base_color_channel": 1006, + "default_detail_color_channel": 1, + "frame": "d_zag_01_003.png", + "glow_frame": "d_zag_01_003.png", + "gridH": 0.4333333373069763, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1698": { + "can_color": true, + "default_base_color_channel": 1006, + "default_detail_color_channel": 1, + "frame": "d_zag_02_002.png", + "glow_frame": "d_zag_02_002.png", + "gridH": 0.6166666746139526, + "gridW": 0.6499999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1699": { + "can_color": true, + "default_base_color_channel": 1006, + "default_detail_color_channel": 1, + "frame": "d_zag_03_001.png", + "glow_frame": "d_zag_03_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1700": { + "can_color": true, + "children": [ + { + "frame": null, + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 1.2000000476837158, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "trigger", + "default_z_layer": 3, + "default_z_order": 0 + }, + "1701": { + "can_color": true, + "children": [ + { + "frame": "bladeTrap01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "bladeTrap01_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "bladeTrap01_001.png", + "glow_frame": "bladeTrap01_glow_001.png", + "gridH": 0.9333333373069763, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 6, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1702": { + "can_color": true, + "children": [ + { + "frame": "bladeTrap02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "bladeTrap02_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "bladeTrap02_001.png", + "glow_frame": "bladeTrap02_glow_001.png", + "gridH": 0.9666666388511658, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 6, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1703": { + "can_color": true, + "children": [ + { + "frame": "bladeTrap03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "bladeTrap03_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "bladeTrap03_001.png", + "glow_frame": "bladeTrap03_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 6, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1704": { + "type": "ring", + "frame": "dashRing_01_001.png", + "gridW": 1.2, + "gridH": 1.2, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1705": { + "can_color": true, + "children": [ + { + "frame": "sawblade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "sawblade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1010, + "frame": "sawblade_01_001.png", + "glow_frame": "sawblade_01_glow_001.png", + "gridH": 2.8333332538604736, + "gridW": 1.4666666984558105, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 32.29999923706055, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1706": { + "can_color": true, + "children": [ + { + "frame": "sawblade_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1010, + "frame": "sawblade_02_001.png", + "glow_frame": "sawblade_02_glow_001.png", + "gridH": 2, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 21.600000381469727, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1707": { + "can_color": true, + "children": [ + { + "frame": "sawblade_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1010, + "frame": "sawblade_03_001.png", + "glow_frame": "sawblade_03_glow_001.png", + "gridH": 1.3333333730697632, + "gridW": 1.3333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 11.77500057220459, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1708": { + "can_color": true, + "children": [ + { + "frame": "darkblade_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "darkblade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "darkblade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "darkblade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "darkblade_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1010, + "default_detail_color_channel": 1, + "frame": "darkblade_01_001.png", + "glow_frame": "darkblade_01_glow_001.png", + "gridH": 1.4333332777023315, + "gridW": 1.4333332777023315, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 28.899999618530273, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1709": { + "can_color": true, + "children": [ + { + "frame": "darkblade_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "darkblade_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1010, + "default_detail_color_channel": 1, + "frame": "darkblade_02_001.png", + "glow_frame": "darkblade_02_glow_001.png", + "gridH": 2.0999999046325684, + "gridW": 1.8333333730697632, + "spriteH": 63, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 17.440000534057617, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1710": { + "can_color": true, + "children": [ + { + "frame": "darkblade_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "darkblade_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1010, + "default_detail_color_channel": 1, + "frame": "darkblade_03_001.png", + "glow_frame": "darkblade_03_glow_001.png", + "gridH": 1.4333332777023315, + "gridW": 1.4333332777023315, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 12.90000057220459, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1711": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "pit_b_01_001.png", + "glow_frame": "pit_b_01_glow_001.png", + "gridH": 1.6666666269302368, + "gridW": 1.5666667222976685, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1712": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "pit_b_02_001.png", + "glow_frame": "pit_b_02_glow_001.png", + "gridH": 1.8666666746139526, + "gridW": 1.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1713": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "pit_b_03_001.png", + "glow_frame": "pit_b_03_glow_001.png", + "gridH": 1.6666666269302368, + "gridW": 1.2999999523162842, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1714": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "pit_b_04_001.png", + "glow_frame": "pit_b_04_glow_001.png", + "gridH": 1.3666666746139526, + "gridW": 1.2666666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1715": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_03_001.png", + "glow_frame": "pit_03_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1716": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_01_low_001.png", + "glow_frame": "pit_01_low_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1717": { + "can_color": true, + "children": [ + { + "frame": "pit_01_slope_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1010, + "frame": "pit_01_slope_01_001.png", + "glow_frame": "pit_01_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1718": { + "can_color": true, + "children": [ + { + "frame": "pit_01_slope_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1010, + "frame": "pit_01_slope_02_001.png", + "glow_frame": "pit_01_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1719": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_04_001.png", + "glow_frame": "pit_04_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1720": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_04_02_001.png", + "glow_frame": "pit_04_02_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1721": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_04_03_001.png", + "glow_frame": "pit_04_03_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1722": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_04_low_001.png", + "glow_frame": "pit_04_low_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1723": { + "can_color": true, + "children": [ + { + "frame": "pit_04_slope_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1010, + "frame": "pit_04_slope_01_001.png", + "glow_frame": "pit_04_slope_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1724": { + "can_color": true, + "children": [ + { + "frame": "pit_04_slope_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1010, + "frame": "pit_04_slope_02_001.png", + "glow_frame": "pit_04_slope_02_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1725": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_05_001.png", + "glow_frame": "pit_05_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1726": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_05_02_001.png", + "glow_frame": "pit_05_02_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1727": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_05_03_001.png", + "glow_frame": "pit_05_03_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1728": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_06_001.png", + "glow_frame": "pit_06_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1729": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_06_2_001.png", + "glow_frame": "pit_06_2_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.8666666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1730": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_07_001.png", + "glow_frame": "pit_07_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1731": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_07_2_001.png", + "glow_frame": "pit_07_2_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1732": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_07_3_001.png", + "glow_frame": "pit_07_3_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1733": { + "can_color": true, + "default_base_color_channel": 1010, + "frame": "pit_07_4_001.png", + "glow_frame": "pit_07_4_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1734": { + "can_color": true, + "children": [ + { + "frame": "blackCogwheel_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "blackCogwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "blackCogwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "blackCogwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + }, + { + "frame": "blackCogwheel_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1010, + "frame": "blackCogwheel_01_001.png", + "glow_frame": "blackCogwheel_01_glow_001.png", + "gridH": 1.3666666746139526, + "gridW": 1.3666666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 32, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1735": { + "can_color": true, + "children": [ + { + "frame": "blackCogwheel_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "blackCogwheel_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1010, + "frame": "blackCogwheel_02_001.png", + "glow_frame": "blackCogwheel_02_glow_001.png", + "gridH": 1.7666666507720947, + "gridW": 1.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 17.510000228881836, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1736": { + "can_color": true, + "children": [ + { + "frame": "blackCogwheel_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "blackCogwheel_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1010, + "frame": "blackCogwheel_03_001.png", + "glow_frame": "blackCogwheel_03_glow_001.png", + "gridH": 1.2999999523162842, + "gridW": 1.2999999523162842, + "spritesheet": "GJ_GameSheet-uhd", + "type": "hazard", + "z": 1, + "hitbox_radius": 12.479999542236328, + "default_z_layer": 5, + "default_z_order": 1 + }, + "1737": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_001_001.png", + "glow_frame": "d_pixelArt01_001_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1738": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_002_001.png", + "glow_frame": "d_pixelArt01_002_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1739": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_003_001.png", + "glow_frame": "d_pixelArt01_003_glow_001.png", + "gridH": 0.25, + "gridW": 0.25, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1740": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_004_001.png", + "glow_frame": "d_pixelArt01_004_glow_001.png", + "gridH": 1, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1741": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_005_001.png", + "glow_frame": "d_pixelArt01_005_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1742": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_pixelArt01_006_001.png", + "glow_frame": "d_pixelArt01_006_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1743": { + "can_color": true, + "children": [ + { + "frame": "blockOutline_14new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "frame": "triangle_a_02_001.png", + "glow_frame": "triangle_a_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1744": { + "can_color": true, + "children": [ + { + "frame": "blockOutline_15new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "frame": "triangle_a_04_001.png", + "glow_frame": "triangle_a_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1745": { + "can_color": true, + "children": [ + { + "frame": "blockOutline_14new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "frame": "triangle_c_02_001.png", + "glow_frame": "triangle_c_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1746": { + "can_color": true, + "children": [ + { + "frame": "blockOutline_15new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "frame": "triangle_c_04_001.png", + "glow_frame": "triangle_c_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1747": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "blockOutline_14new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "lighttriangle_01_02_color_001.png", + "glow_frame": "lighttriangle_01_02_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1748": { + "black": true, + "can_color": true, + "children": [ + { + "frame": "blockOutline_15new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "color_channel": "black", + "default_base_color_channel": 1004, + "frame": "lighttriangle_01_04_color_001.png", + "glow_frame": "lighttriangle_01_04_color_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1749": { + "can_color": true, + "children": [ + { + "frame": "blockOutline_14new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "frame": "triangle_f_02_001.png", + "glow_frame": "triangle_f_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1750": { + "can_color": true, + "children": [ + { + "frame": "blockOutline_15new_001.png", + "localDy": 0, + "tint": 65280, + "z": 2 + } + ], + "default_base_color_channel": 1004, + "frame": "triangle_f_04_001.png", + "glow_frame": "triangle_f_04_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1751": { + "type": "ring", + "frame": "dashRing_02_001.png", + "gridW": 1.2, + "gridH": 1.2, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "1752": { + "can_color": true, + "children": [ + { + "frame": "d_ringSpiral_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_ringSpiral_01_001.png", + "glow_frame": "d_ringSpiral_01_glow_001.png", + "gridH": 1.2166666984558105, + "gridW": 1.4166666269302368, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1753": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "gridLine01_001.png", + "glow_frame": "gridLine01_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1754": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "gridLine02_001.png", + "glow_frame": "gridLine02_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1755": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1756": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "d_link_b_06_001.png", + "glow_frame": "d_link_b_06_glow_001.png", + "gridH": 1, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1757": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "gridLine03_001.png", + "glow_frame": "gridLine03_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1758": { + "can_color": true, + "children": [ + { + "frame": "d_gradient_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1759": { + "can_color": true, + "children": [ + { + "frame": "d_gradient_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1760": { + "can_color": true, + "children": [ + { + "frame": "d_gradient_b_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1761": { + "can_color": true, + "children": [ + { + "frame": "d_gradient_b_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1762": { + "can_color": true, + "children": [ + { + "frame": "d_gradient_c_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1763": { + "can_color": true, + "children": [ + { + "frame": "d_gradient_c_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1764": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_small_ball_01_001.png", + "glow_frame": "d_small_ball_01_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1765": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_small_ball_02_001.png", + "glow_frame": "d_small_ball_02_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1766": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_small_ball_03_001.png", + "glow_frame": "d_small_ball_03_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1767": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_small_ball_04_001.png", + "glow_frame": "d_small_ball_04_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1768": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_small_ball_05_001.png", + "glow_frame": "d_small_ball_05_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.18333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1769": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_01c_001.png", + "glow_frame": "block013_01c_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1770": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_03c_001.png", + "glow_frame": "block013_03c_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1771": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_02c_001.png", + "glow_frame": "block013_02c_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1772": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block013_04c_001.png", + "glow_frame": "block013_04c_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1773": { + "can_color": true, + "children": [ + { + "frame": "block013_01c_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block013_02c_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1774": { + "can_color": true, + "children": [ + { + "frame": "block013_03c_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block013_04c_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1775": { + "can_color": true, + "children": [ + { + "frame": "block013_01c_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block013_02c_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1776": { + "can_color": true, + "children": [ + { + "frame": "block013_03c_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block013_04c_001.png", + "localDy": 0, + "tint": 65280 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1777": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block011_01_001.png", + "glow_frame": "block011_01_glow_001.png", + "gridH": 1.1833332777023315, + "gridW": 1.0833333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1778": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block011_02_001.png", + "glow_frame": "block011_02_glow_001.png", + "gridH": 1.1666666269302368, + "gridW": 0.949999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1779": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block011_03_001.png", + "glow_frame": "block011_03_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 1.0166666507720947, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1780": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block011_04_001.png", + "glow_frame": "block011_04_glow_001.png", + "gridH": 1.1333333253860474, + "gridW": 1.1166666746139526, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1781": { + "can_color": true, + "children": [ + { + "frame": "block011b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_01_001.png", + "glow_frame": "block011b_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1782": { + "can_color": true, + "children": [ + { + "frame": "block011b_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_02_001.png", + "glow_frame": "block011b_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1783": { + "can_color": true, + "children": [ + { + "frame": "block011b_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_03_001.png", + "glow_frame": "block011b_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1784": { + "can_color": true, + "children": [ + { + "frame": "block011b_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block011b_04_001.png", + "glow_frame": "block011b_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1785": { + "can_color": true, + "children": [ + { + "frame": "block011_01_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011_02_001.png", + "localDy": 0, + "tint": 65280 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1786": { + "can_color": true, + "children": [ + { + "frame": "block011_03_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011_04_001.png", + "localDy": 0, + "tint": 65280 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1787": { + "can_color": true, + "children": [ + { + "frame": "block011_01_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011_02_001.png", + "localDy": 0, + "tint": 65280 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1788": { + "can_color": true, + "children": [ + { + "frame": "block011_03_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011_04_001.png", + "localDy": 0, + "tint": 65280 + } + ], + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1789": { + "can_color": true, + "children": [ + { + "frame": "block011b_01_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011b_02_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011b_01_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1790": { + "can_color": true, + "children": [ + { + "frame": "block011b_03_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011b_04_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011b_03_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1791": { + "can_color": true, + "children": [ + { + "frame": "block011b_01_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011b_02_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011b_01_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1792": { + "can_color": true, + "children": [ + { + "frame": "block011b_03_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011b_04_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block011b_03_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1793": { + "can_color": true, + "children": [ + { + "frame": "block012_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_03_001.png", + "glow_frame": "block012_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1794": { + "can_color": true, + "children": [ + { + "frame": "block012_03_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block012_01_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1795": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "block012_12_001.png", + "glow_frame": "block012_12_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1796": { + "can_color": true, + "children": [ + { + "frame": "block012_13_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block012_13_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1797": { + "can_color": true, + "children": [ + { + "frame": "puzzle_base_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "puzzle_piece_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "puzzle_piece_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "puzzle_base_001.png", + "glow_frame": "puzzle_base_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1798": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1799": { + "can_color": true, + "children": [ + { + "frame": "block012b_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_03_001.png", + "glow_frame": "block012b_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1800": { + "can_color": true, + "children": [ + { + "frame": "block012b_03_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block012b_01_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1801": { + "can_color": true, + "children": [ + { + "frame": "block012b_12_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_12_001.png", + "glow_frame": "block012b_12_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1802": { + "can_color": true, + "children": [ + { + "frame": "block012b_13_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block012b_13_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1803": { + "can_color": true, + "children": [ + { + "frame": "block012_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_01_001.png", + "glow_frame": "block012_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1804": { + "can_color": true, + "children": [ + { + "frame": "block012_01_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block012_03_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1805": { + "can_color": true, + "children": [ + { + "frame": "block012b_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_01_001.png", + "glow_frame": "block012b_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1806": { + "can_color": true, + "children": [ + { + "frame": "block012b_01_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block012b_03_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1807": { + "can_color": true, + "children": [ + { + "frame": "block012_13_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "block012_13_001.png", + "glow_frame": "block012_13_glow_001.png", + "gridH": 0.8833333253860474, + "gridW": 0.8833333253860474, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1808": { + "can_color": true, + "children": [ + { + "frame": "block012_13_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block012_14_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1809": { + "can_color": true, + "children": [ + { + "frame": "block012b_13_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "block012b_13_001.png", + "glow_frame": "block012b_13_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1810": { + "can_color": true, + "children": [ + { + "frame": "block012b_13_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "block012b_14_001.png", + "localDy": 0, + "tint": 65280 + }, + { + "frame": "blockOutline_15_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -9, + "default_z_layer": 1, + "default_z_order": -9 + }, + "1811": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1812": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1813": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1814": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1815": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1816": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1817": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1818": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1819": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1820": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_02_01_color_001.png", + "glow_frame": "lightsquare_02_01_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1821": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_02_02_color_001.png", + "glow_frame": "lightsquare_02_02_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1823": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_02_03_color_001.png", + "glow_frame": "lightsquare_02_03_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1824": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_02_04_color_001.png", + "glow_frame": "lightsquare_02_04_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1825": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_02_05_color_001.png", + "glow_frame": "lightsquare_02_05_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1826": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_02_06_color_001.png", + "glow_frame": "lightsquare_02_06_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1827": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_02_07_color_001.png", + "glow_frame": "lightsquare_02_07_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1828": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "lightsquare_02_08_color_001.png", + "glow_frame": "lightsquare_02_08_color_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1829": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1830": { + "can_color": true, + "default_base_color_channel": 1007, + "frame": "gridLine04_001.png", + "glow_frame": "gridLine04_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1831": { + "can_color": true, + "children": [ + { + "frame": "d_scaleFadeRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_scaleFadeRing_01_001.png", + "glow_frame": "d_scaleFadeRing_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1832": { + "can_color": true, + "children": [ + { + "frame": "d_scaleFadeRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_scaleFadeRing_03_001.png", + "glow_frame": "d_scaleFadeRing_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1833": { + "can_color": true, + "children": [ + { + "frame": "d_scaleFadeRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_scaleFadeRing_02_001.png", + "glow_frame": "d_scaleFadeRing_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1834": { + "can_color": true, + "children": [ + { + "frame": "d_scaleFadeRing_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1007, + "frame": "d_scaleFadeRing_04_001.png", + "glow_frame": "d_scaleFadeRing_04_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1835": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_scaleFadeRing_01_001.png", + "glow_frame": "d_scaleFadeRing_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1836": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_scaleFadeRing_03_001.png", + "glow_frame": "d_scaleFadeRing_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1837": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_scaleFadeRing_02_001.png", + "glow_frame": "d_scaleFadeRing_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1838": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "d_scaleFadeRing_04_001.png", + "glow_frame": "d_scaleFadeRing_04_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1839": { + "can_color": true, + "children": [ + { + "frame": "d_scaleFadeRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "d_scaleFadeRing_01_001.png", + "glow_frame": "d_scaleFadeRing_01_glow_001.png", + "gridH": 2, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1840": { + "can_color": true, + "children": [ + { + "frame": "d_scaleFadeRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_03_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "d_scaleFadeRing_03_001.png", + "glow_frame": "d_scaleFadeRing_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1841": { + "can_color": true, + "children": [ + { + "frame": "d_scaleFadeRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "d_scaleFadeRing_02_001.png", + "glow_frame": "d_scaleFadeRing_02_glow_001.png", + "gridH": 2, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1842": { + "can_color": true, + "children": [ + { + "frame": "d_scaleFadeRing_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_scaleFadeRing_04_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "d_scaleFadeRing_04_001.png", + "glow_frame": "d_scaleFadeRing_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1843": { + "can_color": true, + "children": [ + { + "frame": "d_sign_tile_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "d_sign_tile_01_001.png", + "glow_frame": "d_sign_tile_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1844": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "gjHand_01_001.png", + "glow_frame": "gjHand_01_glow_001.png", + "gridH": 0.949999988079071, + "gridW": 1.875, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1845": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "gjHand_02_001.png", + "glow_frame": "gjHand_02_glow_001.png", + "gridH": 0.949999988079071, + "gridW": 1.2833333015441895, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1846": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "gjHand_03_001.png", + "glow_frame": "gjHand_03_glow_001.png", + "gridH": 1.4333332777023315, + "gridW": 1.2833333015441895, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1847": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "gjHand_04_001.png", + "glow_frame": "gjHand_04_glow_001.png", + "gridH": 1.850000023841858, + "gridW": 1.350000023841858, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1848": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "gjHand_05_001.png", + "glow_frame": "gjHand_05_glow_001.png", + "gridH": 1, + "gridW": 1.2833333015441895, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1849": { + "can_color": true, + "children": [ + { + "frame": "gj_smoke01_color_006.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_smoke01_006.png", + "glow_frame": "gj_smoke01_006.png", + "gridH": 0.5333333611488342, + "gridW": 1.2000000476837158, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1850": { + "can_color": true, + "children": [ + { + "frame": "gj_smoke02_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_smoke02_002.png", + "glow_frame": "gj_smoke02_002.png", + "gridH": 0.6833333373069763, + "gridW": 0.8500000238418579, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1851": { + "can_color": true, + "children": [ + { + "frame": "gj_drops01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_drops01_001.png", + "glow_frame": "gj_drops01_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.4000000059604645, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1852": { + "can_color": true, + "children": [ + { + "frame": "gj_drops02_color_008.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_drops02_008.png", + "glow_frame": "gj_drops02_008.png", + "gridH": 0.8333333134651184, + "gridW": 0.6666666865348816, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1853": { + "can_color": true, + "children": [ + { + "frame": "gj_drops03_color_006.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_drops03_006.png", + "glow_frame": "gj_drops03_006.png", + "gridH": 1.350000023841858, + "gridW": 0.13333334028720856, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1854": { + "can_color": true, + "children": [ + { + "frame": "gj_drops04_color_014.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_drops04_014.png", + "glow_frame": "gj_drops04_014.png", + "gridH": 0.6000000238418579, + "gridW": 0.3333333432674408, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1855": { + "can_color": true, + "children": [ + { + "frame": "explosion_01_007.png", + "localDy": 0, + "tint": 5898073, + "z": -1 + }, + { + "frame": "gj_drops05_color_016.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_drops05_016.png", + "glow_frame": "gj_drops05_016.png", + "gridH": 0.13333334028720856, + "gridW": 0.1666666716337204, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1856": { + "can_color": true, + "children": [ + { + "frame": "gj_bubble01_color_014.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_bubble01_014.png", + "glow_frame": "gj_bubble01_014.png", + "gridH": 0.38333332538604736, + "gridW": 0.5333333611488342, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1857": { + "can_color": true, + "children": [ + { + "frame": "gj_lightning01_color_002.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_lightning01_002.png", + "glow_frame": "gj_lightning01_002.png", + "gridH": 0.46666666865348816, + "gridW": 2, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1858": { + "can_color": true, + "children": [ + { + "frame": "gj_drops06_2_005.png", + "localDy": 0, + "tint": 5898073, + "z": -1 + }, + { + "frame": "gj_drops06_3_005.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1011, + "frame": "gj_drops06_005.png", + "glow_frame": "gj_drops06_005.png", + "gridH": 0.6833333373069763, + "gridW": 0.699999988079071, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1859": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1860": { + "can_color": true, + "children": [ + { + "frame": "gj_lightning02_color_010.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "gj_lightning02_010.png", + "glow_frame": "gj_lightning02_010.png", + "gridH": 0.4833333194255829, + "gridW": 1.4500000476837158, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1861": { + "can_color": true, + "children": [ + { + "frame": "blockDesign01_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign01_01_001.png", + "glow_frame": "blockDesign01_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1862": { + "can_color": true, + "children": [ + { + "frame": "blockDesign01_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign01_02_001.png", + "glow_frame": "blockDesign01_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1863": { + "can_color": true, + "children": [ + { + "frame": "blockDesign01_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign01_03_001.png", + "glow_frame": "blockDesign01_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1864": { + "can_color": true, + "children": [ + { + "frame": "blockDesign01_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign01_04_001.png", + "glow_frame": "blockDesign01_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1865": { + "can_color": true, + "children": [ + { + "frame": "blockDesign02_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign02_01_001.png", + "glow_frame": "blockDesign02_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1866": { + "can_color": true, + "children": [ + { + "frame": "blockDesign02_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign02_02_001.png", + "glow_frame": "blockDesign02_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1867": { + "can_color": true, + "children": [ + { + "frame": "blockDesign02_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign02_03_001.png", + "glow_frame": "blockDesign02_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1868": { + "can_color": true, + "children": [ + { + "frame": "blockDesign02_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign02_04_001.png", + "glow_frame": "blockDesign02_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1869": { + "can_color": true, + "children": [ + { + "frame": "blockDesign03_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign03_01_001.png", + "glow_frame": "blockDesign03_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1870": { + "can_color": true, + "children": [ + { + "frame": "blockDesign03_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign03_02_001.png", + "glow_frame": "blockDesign03_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1871": { + "can_color": true, + "children": [ + { + "frame": "blockDesign03_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign03_03_001.png", + "glow_frame": "blockDesign03_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1872": { + "can_color": true, + "children": [ + { + "frame": "blockDesign03_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign03_04_001.png", + "glow_frame": "blockDesign03_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1873": { + "can_color": true, + "children": [ + { + "frame": "blockDesign04_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign04_01_001.png", + "glow_frame": "blockDesign04_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1874": { + "can_color": true, + "children": [ + { + "frame": "blockDesign05_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign05_01_001.png", + "glow_frame": "blockDesign05_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1875": { + "can_color": true, + "children": [ + { + "frame": "blockDesign05_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign05_02_001.png", + "glow_frame": "blockDesign05_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1876": { + "can_color": true, + "children": [ + { + "frame": "blockDesign05_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign05_03_001.png", + "glow_frame": "blockDesign05_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1877": { + "can_color": true, + "children": [ + { + "frame": "blockDesign05_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign05_04_001.png", + "glow_frame": "blockDesign05_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1878": { + "can_color": true, + "children": [ + { + "frame": "blockDesign06_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign06_01_001.png", + "glow_frame": "blockDesign06_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1879": { + "can_color": true, + "children": [ + { + "frame": "blockDesign06_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign06_02_001.png", + "glow_frame": "blockDesign06_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1880": { + "can_color": true, + "children": [ + { + "frame": "blockDesign06_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign06_03_001.png", + "glow_frame": "blockDesign06_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1881": { + "can_color": true, + "children": [ + { + "frame": "blockDesign06_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign06_04_001.png", + "glow_frame": "blockDesign06_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1882": { + "can_color": true, + "children": [ + { + "frame": "blockDesign07_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign07_01_001.png", + "glow_frame": "blockDesign07_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1883": { + "can_color": true, + "children": [ + { + "frame": "blockDesign07_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign07_02_001.png", + "glow_frame": "blockDesign07_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1884": { + "can_color": true, + "children": [ + { + "frame": "blockDesign07_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign07_03_001.png", + "glow_frame": "blockDesign07_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1885": { + "can_color": true, + "children": [ + { + "frame": "blockDesign07_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockDesign07_04_001.png", + "glow_frame": "blockDesign07_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -7, + "default_z_layer": 1, + "default_z_order": -7 + }, + "1886": { + "can_color": true, + "children": [ + { + "frame": "d_gradient_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_gradient_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_gradient_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_gradient_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "emptyFrame.png", + "glow_frame": "emptyFrame.png", + "gridH": 1.3333333730697632, + "gridW": 1.3333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1887": { + "can_color": true, + "children": [ + { + "frame": "d_gradient_b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_gradient_b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_gradient_b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_gradient_b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "emptyFrame.png", + "glow_frame": "emptyFrame.png", + "gridH": 0.6666666865348816, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1888": { + "can_color": true, + "children": [ + { + "frame": "d_gradient_c_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_gradient_c_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_gradient_c_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "d_gradient_c_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "emptyFrame.png", + "glow_frame": "emptyFrame.png", + "gridH": 2, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 9 + }, + "1889": { + "type": "deco", + "frame": "fakeSpike_01_001.png", + "gridW": 0, + "gridH": 0, + "black": true, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -4 + }, + "1890": { + "type": "deco", + "frame": "fakeSpike_02_001.png", + "gridW": 0, + "gridH": 0, + "black": true, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -4 + }, + "1891": { + "type": "deco", + "frame": "fakeSpike_03_001.png", + "gridW": 0, + "gridH": 0, + "black": true, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -4 + }, + "1892": { + "type": "deco", + "frame": "fakeSpike_04_001.png", + "gridW": 0, + "gridH": 0, + "black": true, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -4 + }, + "1893": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "square_b_01_001.png", + "glow_frame": "square_b_01_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1894": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "square_b_02_001.png", + "glow_frame": "square_b_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1895": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "square_b_03_001.png", + "glow_frame": "square_b_03_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.4833333194255829, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1896": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "square_b_04_001.png", + "glow_frame": "square_b_04_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1897": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "square_b_05_001.png", + "glow_frame": "square_b_05_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1898": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "square_b_06_001.png", + "glow_frame": "square_b_06_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1899": { + "can_color": true, + "children": [ + { + "frame": "triangle_b_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1900": { + "can_color": true, + "children": [ + { + "frame": "triangle_b_02_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1901": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "triangle_b_square_01_001.png", + "glow_frame": "triangle_b_square_01_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.36666667461395264, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1902": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "triangle_b_square_02_001.png", + "glow_frame": "triangle_b_square_02_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.9666666388511658, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "1903": { + "can_color": true, + "children": [ + { + "frame": "plank_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "colorPlank_01_001.png", + "glow_frame": "colorPlank_01_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1904": { + "can_color": true, + "children": [ + { + "frame": "plank_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank_01_02_001.png", + "glow_frame": "plank_01_02_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1905": { + "can_color": true, + "children": [ + { + "frame": "plank_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank_01_03_001.png", + "glow_frame": "plank_01_03_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1906": { + "can_color": true, + "children": [ + { + "frame": "emptyFrame.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "plank_01_slope_01_001.png", + "localDy": 0, + "tint": 65280, + "z": 10 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_14_001.png", + "glow_frame": "blockOutline_14_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1907": { + "can_color": true, + "children": [ + { + "frame": "emptyFrame.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "plank_01_slope_02_001.png", + "localDy": 0, + "tint": 65280, + "z": 10 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_15_001.png", + "glow_frame": "blockOutline_15_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1908": { + "can_color": true, + "children": [ + { + "frame": "plank_01_square_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank_01_square_01_001.png", + "glow_frame": "plank_01_square_01_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1909": { + "can_color": true, + "children": [ + { + "frame": "plank_01_square_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "plank_01_square_02_001.png", + "glow_frame": "plank_01_square_02_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.8999999761581421, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1910": { + "can_color": true, + "children": [ + { + "frame": "square_01_small_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "blockOutline_10_001.png", + "glow_frame": "blockOutline_10_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1911": { + "can_color": true, + "children": [ + { + "frame": "plank_01_small_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "colorPlank_01_small_001.png", + "glow_frame": "colorPlank_01_small_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet-uhd", + "type": "solid", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1912": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1913": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1914": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1915": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1916": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1917": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1919": { + "can_color": true, + "children": [ + { + "frame": "bush_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "bush_01_001.png", + "glow_frame": "bush_01_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1920": { + "can_color": true, + "children": [ + { + "frame": "bush_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "bush_02_001.png", + "glow_frame": "bush_02_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1921": { + "can_color": true, + "children": [ + { + "frame": "bush_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "bush_03_001.png", + "glow_frame": "bush_03_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 3, + "default_z_order": -5 + }, + "1922": { + "can_color": true, + "children": [ + { + "frame": "edge_01_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "edge_01_01_001.png", + "glow_frame": "edge_01_01_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1923": { + "can_color": true, + "children": [ + { + "frame": "edge_01_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "edge_01_02_001.png", + "glow_frame": "edge_01_02_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1924": { + "can_color": true, + "children": [ + { + "frame": "edge_01_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "edge_01_03_001.png", + "glow_frame": "edge_01_03_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1925": { + "can_color": true, + "children": [ + { + "frame": "edge_01_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "edge_01_04_001.png", + "glow_frame": "edge_01_04_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1926": { + "can_color": true, + "children": [ + { + "frame": "edge_01_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "edge_01_05_001.png", + "glow_frame": "edge_01_05_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1927": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "blockPiece_001_001.png", + "glow_frame": "blockPiece_001_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1928": { + "can_color": true, + "children": [ + { + "frame": "edge_01_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1012, + "frame": "edge_01_07_001.png", + "glow_frame": "edge_01_07_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "1931": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1932": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1933": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_18_front_001.png", + "glow_frame": "portal_18_front_glow_001.png", + "gridH": 2.8333332538604736, + "gridW": 1.1166666746139526, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "1934": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1935": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1936": { + "can_color": true, + "children": [ + { + "frame": "fire_b_01_2_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "fire_b_01_003.png", + "glow_frame": "fire_b_01_003.png", + "gridH": 0.9916666746139526, + "gridW": 0.800000011920929, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1937": { + "can_color": true, + "children": [ + { + "frame": "fire_b_02_2_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "fire_b_02_003.png", + "glow_frame": "fire_b_02_003.png", + "gridH": 1.0666667222976685, + "gridW": 1.0416666269302368, + "spriteW": 31.25, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1938": { + "can_color": true, + "children": [ + { + "frame": "fire_b_03_2_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "fire_b_03_002.png", + "glow_frame": "fire_b_03_002.png", + "gridH": 0.7749999761581421, + "gridW": 0.5333333611488342, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1939": { + "can_color": true, + "children": [ + { + "frame": "fire_b_04_2_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1011, + "default_detail_color_channel": 1, + "frame": "fire_b_04_006.png", + "glow_frame": "fire_b_04_006.png", + "gridH": 0.8500000238418579, + "gridW": 0.5666666626930237, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "1964": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "blockPiece_001_001.png", + "glow_frame": "blockPiece_001_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "2012": { + "can_color": true, + "default_base_color_channel": 1010, + "default_detail_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "hitbox_radius": 15, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2015": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2016": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2020": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_01_006.png", + "glow_frame": "gj22_anim_01_006.png", + "gridH": 0.21666666865348816, + "gridW": 1, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2021": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_02_006.png", + "glow_frame": "gj22_anim_02_006.png", + "gridH": 0.28333333134651184, + "gridW": 0.699999988079071, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2022": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_03_003.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_03_006.png", + "glow_frame": "gj22_anim_03_006.png", + "gridH": 0.15000000596046448, + "gridW": 2.1500000953674316, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2023": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_04_002.png", + "glow_frame": "gj22_anim_04_002.png", + "gridH": 0.5166666507720947, + "gridW": 1.75, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2024": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_05_002.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_05_004.png", + "glow_frame": "gj22_anim_05_004.png", + "gridH": 1.2999999523162842, + "gridW": 1.4166666269302368, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2025": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_06_008.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_06_012.png", + "glow_frame": "gj22_anim_06_012.png", + "gridH": 1.8333333730697632, + "gridW": 1.2999999523162842, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2026": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_07_003.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_07_006.png", + "glow_frame": "gj22_anim_07_006.png", + "gridH": 1.1333333253860474, + "gridW": 0.8166666626930237, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2027": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_08_005.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_08_004.png", + "glow_frame": "gj22_anim_08_004.png", + "gridH": 1.8333333730697632, + "gridW": 0.7166666388511658, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2028": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_09_003.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_09_003.png", + "glow_frame": "gj22_anim_09_003.png", + "gridH": 1.5833333730697632, + "gridW": 0.7166666388511658, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2029": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_10_005.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_10_008.png", + "glow_frame": "gj22_anim_10_008.png", + "gridH": 1.0499999523162842, + "gridW": 0.8500000238418579, + "spriteH": 31.5, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2030": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_11_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_11_007.png", + "glow_frame": "gj22_anim_11_007.png", + "gridH": 0.25, + "gridW": 1.4666666984558105, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2031": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_12_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_12_006.png", + "glow_frame": "gj22_anim_12_006.png", + "gridH": 0.75, + "gridW": 1.9333332777023315, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2032": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_13_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_13_006.png", + "glow_frame": "gj22_anim_13_006.png", + "gridH": 0.8166666626930237, + "gridW": 0.7666666507720947, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2033": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_14_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_14_002.png", + "glow_frame": "gj22_anim_14_002.png", + "gridH": 1, + "gridW": 0.8833333253860474, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2034": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_15_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_15_003.png", + "glow_frame": "gj22_anim_15_003.png", + "gridH": 0.5666666626930237, + "gridW": 0.4166666567325592, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2035": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_16_002.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_16_006.png", + "glow_frame": "gj22_anim_16_006.png", + "gridH": 0.30000001192092896, + "gridW": 1.1166666746139526, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2036": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_17_002.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_17_005.png", + "glow_frame": "gj22_anim_17_005.png", + "gridH": 0.5166666507720947, + "gridW": 1.2999999523162842, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2037": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_18_003.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_18_009.png", + "glow_frame": "gj22_anim_18_009.png", + "gridH": 0.7666666507720947, + "gridW": 0.8166666626930237, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2038": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_19_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_19_004.png", + "glow_frame": "gj22_anim_19_004.png", + "gridH": 0.75, + "gridW": 1.2166666984558105, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2039": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_20_002.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_20_008.png", + "glow_frame": "gj22_anim_20_008.png", + "gridH": 0.5666666626930237, + "gridW": 1.0333333015441895, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2040": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_21_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_21_006.png", + "glow_frame": "gj22_anim_21_006.png", + "gridH": 0.44999998807907104, + "gridW": 0.28333333134651184, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2041": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gj22_anim_22_006.png", + "glow_frame": "gj22_anim_22_006.png", + "gridH": 1.2000000476837158, + "gridW": 1.1333333253860474, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2042": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gj22_anim_23_004.png", + "glow_frame": "gj22_anim_23_004.png", + "gridH": 1.2666666507720947, + "gridW": 1.2333333492279053, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2043": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_24_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_24_009.png", + "glow_frame": "gj22_anim_24_009.png", + "gridH": 0.7333333492279053, + "gridW": 1.3333333730697632, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2044": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_25_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_25_002.png", + "glow_frame": "gj22_anim_25_002.png", + "gridH": 0.4333333373069763, + "gridW": 0.5166666507720947, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2045": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_26_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_26_012.png", + "glow_frame": "gj22_anim_26_012.png", + "gridH": 0.5666666626930237, + "gridW": 0.800000011920929, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2046": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_27_color_009.png", + "localDy": 0, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_27_004.png", + "glow_frame": "gj22_anim_27_004.png", + "gridH": 0.7666666507720947, + "gridW": 0.8166666626930237, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2047": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_28_color_001.png", + "localDy": 0, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_28_011.png", + "glow_frame": "gj22_anim_28_011.png", + "gridH": 0.9333333373069763, + "gridW": 0.9833333492279053, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2048": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_29_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_29_002.png", + "glow_frame": "gj22_anim_29_002.png", + "gridH": 0.5833333134651184, + "gridW": 1, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2049": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_30_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_30_003.png", + "glow_frame": "gj22_anim_30_003.png", + "gridH": 0.3166666626930237, + "gridW": 0.9333333373069763, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2050": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_31_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_31_004.png", + "glow_frame": "gj22_anim_31_004.png", + "gridH": 0.4833333194255829, + "gridW": 0.8999999761581421, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2051": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_32_color_009.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_32_009.png", + "glow_frame": "gj22_anim_32_009.png", + "gridH": 0.5, + "gridW": 0.550000011920929, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2052": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_33_color_007.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_33_007.png", + "glow_frame": "gj22_anim_33_007.png", + "gridH": 0.2666666805744171, + "gridW": 0.5166666507720947, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2053": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_34_color_007.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_34_007.png", + "glow_frame": "gj22_anim_34_007.png", + "gridH": 0.21666666865348816, + "gridW": 0.4166666567325592, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2054": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_35_color_008.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_35_008.png", + "glow_frame": "gj22_anim_35_008.png", + "gridH": 0.21666666865348816, + "gridW": 1.4833333492279053, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2055": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_36_002.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_36_007.png", + "glow_frame": "gj22_anim_36_007.png", + "gridH": 0.949999988079071, + "gridW": 1.1666666269302368, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2062": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2063": { + "can_color": true, + "children": [ + { + "frame": "checkpoint_d_01_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "checkpoint_d_01_001.png", + "localDy": 3.304872512817383, + "tint": 65280, + "z": -1 + }, + { + "frame": "checkpoint_d_02_001.png", + "localDy": 0.8172760009765625, + "tint": 65280, + "z": -1 + }, + { + "frame": "checkpoint_d_03_001.png", + "localDy": 1.9917716979980469, + "tint": 65280, + "z": -1 + }, + { + "frame": "checkpoint_01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": "checkpoint_d_01_001.png", + "glow_frame": "checkpoint_d_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 3, + "default_z_order": 2 + }, + "2064": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_16_front_001.png", + "glow_frame": "portal_16_front_glow_001.png", + "gridH": 3, + "gridW": 1.2833333015441895, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "2065": { + "can_color": true, + "children": [ + { + "frame": null, + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": null, + "localDy": 0, + "tint": 65280, + "z": 1 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 1.1833332777023315, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2066": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2067": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2068": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2069": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2070": { + "can_color": true, + "children": [ + { + "frame": "pixelb_03_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_03_01_001.png", + "glow_frame": "pixelb_03_01_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2071": { + "can_color": true, + "children": [ + { + "frame": "pixelb_03_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_03_02_001.png", + "glow_frame": "pixelb_03_02_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2072": { + "can_color": true, + "children": [ + { + "frame": "pixelb_03_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_03_03_001.png", + "glow_frame": "pixelb_03_03_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2073": { + "can_color": true, + "children": [ + { + "frame": "pixelb_03_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_03_04_001.png", + "glow_frame": "pixelb_03_04_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2074": { + "can_color": true, + "children": [ + { + "frame": "pixelb_03_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_03_05_001.png", + "glow_frame": "pixelb_03_05_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2075": { + "can_color": true, + "children": [ + { + "frame": "pixelb_03_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_03_06_001.png", + "glow_frame": "pixelb_03_06_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2076": { + "can_color": true, + "children": [ + { + "frame": "pixelb_03_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_03_07_001.png", + "glow_frame": "pixelb_03_07_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2077": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelb_03_08_001.png", + "glow_frame": "pixelb_03_08_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2078": { + "can_color": true, + "children": [ + { + "frame": "pixelb_02_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_02_01_001.png", + "glow_frame": "pixelb_02_01_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2079": { + "can_color": true, + "children": [ + { + "frame": "pixelb_02_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_02_02_001.png", + "glow_frame": "pixelb_02_02_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2080": { + "can_color": true, + "children": [ + { + "frame": "pixelb_02_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_02_03_001.png", + "glow_frame": "pixelb_02_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2081": { + "can_color": true, + "children": [ + { + "frame": "pixelb_02_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_02_04_001.png", + "glow_frame": "pixelb_02_04_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2082": { + "can_color": true, + "children": [ + { + "frame": "pixelb_02_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_02_05_001.png", + "glow_frame": "pixelb_02_05_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2083": { + "can_color": true, + "children": [ + { + "frame": "pixelb_01_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_01_01_001.png", + "glow_frame": "pixelb_01_01_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2084": { + "can_color": true, + "children": [ + { + "frame": "pixelb_01_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_01_02_001.png", + "glow_frame": "pixelb_01_02_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2085": { + "can_color": true, + "children": [ + { + "frame": "pixelb_01_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_01_03_001.png", + "glow_frame": "pixelb_01_03_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2086": { + "can_color": true, + "children": [ + { + "frame": "pixelb_01_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_01_04_001.png", + "glow_frame": "pixelb_01_04_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2087": { + "can_color": true, + "children": [ + { + "frame": "pixelb_01_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_01_05_001.png", + "glow_frame": "pixelb_01_05_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2088": { + "can_color": true, + "children": [ + { + "frame": "pixelb_01_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_01_06_001.png", + "glow_frame": "pixelb_01_06_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2089": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_611_001.png", + "glow_frame": "pixelart_611_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 8 + }, + "2090": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelb_03_09_001.png", + "glow_frame": "pixelb_03_09_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2091": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelb_03_10_001.png", + "glow_frame": "pixelb_03_10_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2092": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_661_001.png", + "glow_frame": "pixelart_661_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 8 + }, + "2093": { + "can_color": true, + "children": [ + { + "frame": "pixelb_02_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelb_02_06_001.png", + "glow_frame": "pixelb_02_06_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2094": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelb_02_07_001.png", + "glow_frame": "pixelb_02_07_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2095": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelb_02_08_001.png", + "glow_frame": "pixelb_02_08_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2096": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelb_02_09_001.png", + "glow_frame": "pixelb_02_09_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2097": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelb_02_10_001.png", + "glow_frame": "pixelb_02_10_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 8 + }, + "2098": { + "can_color": true, + "children": [ + { + "frame": "pixelart_001_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_001_001.png", + "glow_frame": "pixelart_001_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2099": { + "can_color": true, + "children": [ + { + "frame": "pixelart_002_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_002_001.png", + "glow_frame": "pixelart_002_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2100": { + "can_color": true, + "children": [ + { + "frame": "pixelart_003_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_003_001.png", + "glow_frame": "pixelart_003_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2101": { + "can_color": true, + "children": [ + { + "frame": "pixelart_004_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_004_001.png", + "glow_frame": "pixelart_004_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2102": { + "can_color": true, + "children": [ + { + "frame": "pixelart_005_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_005_001.png", + "glow_frame": "pixelart_005_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2103": { + "can_color": true, + "children": [ + { + "frame": "pixelart_006_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_006_001.png", + "glow_frame": "pixelart_006_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2104": { + "can_color": true, + "children": [ + { + "frame": "pixelart_007_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_007_001.png", + "glow_frame": "pixelart_007_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2105": { + "can_color": true, + "children": [ + { + "frame": "pixelart_008_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_008_001.png", + "glow_frame": "pixelart_008_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2106": { + "can_color": true, + "children": [ + { + "frame": "pixelart_009_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_009_001.png", + "glow_frame": "pixelart_009_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2107": { + "can_color": true, + "children": [ + { + "frame": "pixelart_010_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_010_001.png", + "glow_frame": "pixelart_010_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2108": { + "can_color": true, + "children": [ + { + "frame": "pixelart_011_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_011_001.png", + "glow_frame": "pixelart_011_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2109": { + "can_color": true, + "children": [ + { + "frame": "pixelart_012_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_012_001.png", + "glow_frame": "pixelart_012_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2110": { + "can_color": true, + "children": [ + { + "frame": "pixelart_013_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_013_001.png", + "glow_frame": "pixelart_013_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2111": { + "can_color": true, + "children": [ + { + "frame": "pixelart_014_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_014_001.png", + "glow_frame": "pixelart_014_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2112": { + "can_color": true, + "children": [ + { + "frame": "pixelart_015_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_015_001.png", + "glow_frame": "pixelart_015_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2113": { + "can_color": true, + "children": [ + { + "frame": "pixelart_016_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_016_001.png", + "glow_frame": "pixelart_016_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2114": { + "can_color": true, + "children": [ + { + "frame": "pixelart_017_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_017_001.png", + "glow_frame": "pixelart_017_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2115": { + "can_color": true, + "children": [ + { + "frame": "pixelart_018_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_018_001.png", + "glow_frame": "pixelart_018_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2116": { + "can_color": true, + "children": [ + { + "frame": "pixelart_019_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_019_001.png", + "glow_frame": "pixelart_019_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2117": { + "can_color": true, + "children": [ + { + "frame": "pixelart_020_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_020_001.png", + "glow_frame": "pixelart_020_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2118": { + "can_color": true, + "children": [ + { + "frame": "pixelart_021_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_021_001.png", + "glow_frame": "pixelart_021_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2119": { + "can_color": true, + "children": [ + { + "frame": "pixelart_022_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_022_001.png", + "glow_frame": "pixelart_022_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2120": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelb_02_11_001.png", + "glow_frame": "pixelb_02_11_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2121": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelb_02_12_001.png", + "glow_frame": "pixelb_02_12_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2122": { + "can_color": true, + "children": [ + { + "frame": "pixelart_023_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_023_001.png", + "glow_frame": "pixelart_023_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2123": { + "can_color": true, + "children": [ + { + "frame": "pixelart_024_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_024_001.png", + "glow_frame": "pixelart_024_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2124": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_025_001.png", + "glow_frame": "pixelart_025_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2125": { + "can_color": true, + "children": [ + { + "frame": "pixelart_024b_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_024b_001.png", + "glow_frame": "pixelart_024b_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2126": { + "can_color": true, + "children": [ + { + "frame": "pixelart_026_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_026_001.png", + "glow_frame": "pixelart_026_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2127": { + "can_color": true, + "children": [ + { + "frame": "pixelart_027_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_027_001.png", + "glow_frame": "pixelart_027_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2128": { + "can_color": true, + "children": [ + { + "frame": "pixelart_028_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_028_001.png", + "glow_frame": "pixelart_028_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2129": { + "can_color": true, + "children": [ + { + "frame": "pixelart_029_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_029_001.png", + "glow_frame": "pixelart_029_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2130": { + "can_color": true, + "children": [ + { + "frame": "pixelart_030_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_030_001.png", + "glow_frame": "pixelart_030_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2131": { + "can_color": true, + "children": [ + { + "frame": "pixelart_031_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_031_001.png", + "glow_frame": "pixelart_031_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2132": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_032_001.png", + "glow_frame": "pixelart_032_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2133": { + "can_color": true, + "children": [ + { + "frame": "pixelart_033_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_033_001.png", + "glow_frame": "pixelart_033_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2134": { + "can_color": true, + "children": [ + { + "frame": "pixelart_034_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_034_001.png", + "glow_frame": "pixelart_034_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2135": { + "can_color": true, + "children": [ + { + "frame": "pixelart_035_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_035_001.png", + "glow_frame": "pixelart_035_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2136": { + "can_color": true, + "children": [ + { + "frame": "pixelart_036_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_036_001.png", + "glow_frame": "pixelart_036_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2137": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_037_001.png", + "glow_frame": "pixelart_037_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2138": { + "can_color": true, + "children": [ + { + "frame": "pixelart_038_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_038_001.png", + "glow_frame": "pixelart_038_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2139": { + "can_color": true, + "children": [ + { + "frame": "pixelart_039_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_039_001.png", + "glow_frame": "pixelart_039_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2140": { + "can_color": true, + "children": [ + { + "frame": "pixelart_040_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_040_001.png", + "glow_frame": "pixelart_040_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2141": { + "can_color": true, + "children": [ + { + "frame": "pixelart_041_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_041_001.png", + "glow_frame": "pixelart_041_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2142": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_042_001.png", + "glow_frame": "pixelart_042_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2143": { + "can_color": true, + "children": [ + { + "frame": "pixelart_043_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_043_001.png", + "glow_frame": "pixelart_043_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2144": { + "can_color": true, + "children": [ + { + "frame": "pixelart_044_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_044_001.png", + "glow_frame": "pixelart_044_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2145": { + "can_color": true, + "children": [ + { + "frame": "pixelart_045_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_045_001.png", + "glow_frame": "pixelart_045_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2146": { + "can_color": true, + "children": [ + { + "frame": "pixelart_046_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_046_001.png", + "glow_frame": "pixelart_046_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2147": { + "can_color": true, + "children": [ + { + "frame": "pixelart_047_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_047_001.png", + "glow_frame": "pixelart_047_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2148": { + "can_color": true, + "children": [ + { + "frame": "pixelart_048_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_048_001.png", + "glow_frame": "pixelart_048_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2149": { + "can_color": true, + "children": [ + { + "frame": "pixelart_049_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_049_001.png", + "glow_frame": "pixelart_049_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2150": { + "can_color": true, + "children": [ + { + "frame": "pixelart_050_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_050_001.png", + "glow_frame": "pixelart_050_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2151": { + "can_color": true, + "children": [ + { + "frame": "pixelart_051_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_051_001.png", + "glow_frame": "pixelart_051_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2152": { + "can_color": true, + "children": [ + { + "frame": "pixelart_052_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_052_001.png", + "glow_frame": "pixelart_052_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2153": { + "can_color": true, + "children": [ + { + "frame": "pixelart_053_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_053_001.png", + "glow_frame": "pixelart_053_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2154": { + "can_color": true, + "children": [ + { + "frame": "pixelart_054_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_054_001.png", + "glow_frame": "pixelart_054_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2155": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_055_001.png", + "glow_frame": "pixelart_055_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2156": { + "can_color": true, + "children": [ + { + "frame": "pixelart_056_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_056_001.png", + "glow_frame": "pixelart_056_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2157": { + "can_color": true, + "children": [ + { + "frame": "pixelart_057_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_057_001.png", + "glow_frame": "pixelart_057_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2158": { + "can_color": true, + "children": [ + { + "frame": "pixelart_058_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_058_001.png", + "glow_frame": "pixelart_058_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2159": { + "can_color": true, + "children": [ + { + "frame": "pixelart_059_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_059_001.png", + "glow_frame": "pixelart_059_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2160": { + "can_color": true, + "children": [ + { + "frame": "pixelart_060_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_060_001.png", + "glow_frame": "pixelart_060_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2161": { + "can_color": true, + "children": [ + { + "frame": "pixelart_061_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_061_001.png", + "glow_frame": "pixelart_061_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2162": { + "can_color": true, + "children": [ + { + "frame": "pixelart_062_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_062_001.png", + "glow_frame": "pixelart_062_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2163": { + "can_color": true, + "children": [ + { + "frame": "pixelart_063_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_063_001.png", + "glow_frame": "pixelart_063_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2164": { + "can_color": true, + "children": [ + { + "frame": "pixelart_064_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_064_001.png", + "glow_frame": "pixelart_064_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2165": { + "can_color": true, + "children": [ + { + "frame": "pixelart_065_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_065_001.png", + "glow_frame": "pixelart_065_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2166": { + "can_color": true, + "children": [ + { + "frame": "pixelart_066_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_066_001.png", + "glow_frame": "pixelart_066_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2167": { + "can_color": true, + "children": [ + { + "frame": "pixelart_067_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_067_001.png", + "glow_frame": "pixelart_067_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2168": { + "can_color": true, + "children": [ + { + "frame": "pixelart_068_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_068_001.png", + "glow_frame": "pixelart_068_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2169": { + "can_color": true, + "children": [ + { + "frame": "pixelart_069_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_069_001.png", + "glow_frame": "pixelart_069_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2170": { + "can_color": true, + "children": [ + { + "frame": "pixelart_070_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_070_001.png", + "glow_frame": "pixelart_070_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2171": { + "can_color": true, + "children": [ + { + "frame": "pixelart_071_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_071_001.png", + "glow_frame": "pixelart_071_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2172": { + "can_color": true, + "children": [ + { + "frame": "pixelart_072_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_072_001.png", + "glow_frame": "pixelart_072_glow_001.png", + "gridH": 0.5, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2173": { + "can_color": true, + "children": [ + { + "frame": "pixelart_073_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_073_001.png", + "glow_frame": "pixelart_073_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2174": { + "can_color": true, + "children": [ + { + "frame": "pixelart_074_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_074_001.png", + "glow_frame": "pixelart_074_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2175": { + "can_color": true, + "children": [ + { + "frame": "pixelart_075_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_075_001.png", + "glow_frame": "pixelart_075_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2176": { + "can_color": true, + "children": [ + { + "frame": "pixelart_076_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_076_001.png", + "glow_frame": "pixelart_076_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2177": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_077_001.png", + "glow_frame": "pixelart_077_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2178": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_078_001.png", + "glow_frame": "pixelart_078_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2179": { + "can_color": true, + "children": [ + { + "frame": "pixelart_079_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_079_001.png", + "glow_frame": "pixelart_079_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2180": { + "can_color": true, + "children": [ + { + "frame": "pixelart_080_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_080_001.png", + "glow_frame": "pixelart_080_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2181": { + "can_color": true, + "children": [ + { + "frame": "pixelart_081_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_081_001.png", + "glow_frame": "pixelart_081_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2182": { + "can_color": true, + "children": [ + { + "frame": "pixelart_082_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_082_001.png", + "glow_frame": "pixelart_082_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2183": { + "can_color": true, + "children": [ + { + "frame": "pixelart_083_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_083_001.png", + "glow_frame": "pixelart_083_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2184": { + "can_color": true, + "children": [ + { + "frame": "pixelart_084_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_084_001.png", + "glow_frame": "pixelart_084_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2185": { + "can_color": true, + "children": [ + { + "frame": "pixelart_085_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_085_001.png", + "glow_frame": "pixelart_085_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2186": { + "can_color": true, + "children": [ + { + "frame": "pixelart_086_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_086_001.png", + "glow_frame": "pixelart_086_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2187": { + "can_color": true, + "children": [ + { + "frame": "pixelart_087_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_087_001.png", + "glow_frame": "pixelart_087_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2188": { + "can_color": true, + "children": [ + { + "frame": "pixelart_088_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_088_001.png", + "glow_frame": "pixelart_088_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2189": { + "can_color": true, + "children": [ + { + "frame": "pixelart_089_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_089_001.png", + "glow_frame": "pixelart_089_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2190": { + "can_color": true, + "children": [ + { + "frame": "pixelart_090_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_090_001.png", + "glow_frame": "pixelart_090_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2191": { + "can_color": true, + "children": [ + { + "frame": "pixelart_091_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_091_001.png", + "glow_frame": "pixelart_091_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2192": { + "can_color": true, + "children": [ + { + "frame": "pixelart_092_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_092_001.png", + "glow_frame": "pixelart_092_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2193": { + "can_color": true, + "children": [ + { + "frame": "pixelart_093_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_093_001.png", + "glow_frame": "pixelart_093_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2194": { + "can_color": true, + "children": [ + { + "frame": "pixelart_094_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_094_001.png", + "glow_frame": "pixelart_094_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2195": { + "can_color": true, + "children": [ + { + "frame": "pixelart_095_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_095_001.png", + "glow_frame": "pixelart_095_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2196": { + "can_color": true, + "children": [ + { + "frame": "pixelart_096_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_096_001.png", + "glow_frame": "pixelart_096_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2197": { + "can_color": true, + "children": [ + { + "frame": "pixelart_097_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_097_001.png", + "glow_frame": "pixelart_097_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2198": { + "can_color": true, + "children": [ + { + "frame": "pixelart_098_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_098_001.png", + "glow_frame": "pixelart_098_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2199": { + "can_color": true, + "children": [ + { + "frame": "pixelart_099_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_099_001.png", + "glow_frame": "pixelart_099_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2200": { + "can_color": true, + "children": [ + { + "frame": "pixelart_100_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_100_001.png", + "glow_frame": "pixelart_100_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2201": { + "can_color": true, + "children": [ + { + "frame": "pixelart_101_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_101_001.png", + "glow_frame": "pixelart_101_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2202": { + "can_color": true, + "children": [ + { + "frame": "pixelart_102_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_102_001.png", + "glow_frame": "pixelart_102_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2203": { + "can_color": true, + "children": [ + { + "frame": "pixelart_103_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_103_001.png", + "glow_frame": "pixelart_103_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.800000011920929, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2204": { + "can_color": true, + "children": [ + { + "frame": "pixelart_104_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_104_001.png", + "glow_frame": "pixelart_104_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2205": { + "can_color": true, + "children": [ + { + "frame": "pixelart_105_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_105_001.png", + "glow_frame": "pixelart_105_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2206": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_106_001.png", + "glow_frame": "pixelart_106_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2207": { + "can_color": true, + "children": [ + { + "frame": "pixelart_107_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_107_001.png", + "glow_frame": "pixelart_107_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2208": { + "can_color": true, + "children": [ + { + "frame": "pixelart_108_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_108_001.png", + "glow_frame": "pixelart_108_glow_001.png", + "gridH": 0.6333333253860474, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2209": { + "can_color": true, + "children": [ + { + "frame": "pixelart_109_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_109_001.png", + "glow_frame": "pixelart_109_glow_001.png", + "gridH": 0.5, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2210": { + "can_color": true, + "children": [ + { + "frame": "pixelart_110_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_110_001.png", + "glow_frame": "pixelart_110_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2211": { + "can_color": true, + "children": [ + { + "frame": "pixelart_111_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_111_001.png", + "glow_frame": "pixelart_111_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2212": { + "can_color": true, + "children": [ + { + "frame": "pixelart_112_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_112_001.png", + "glow_frame": "pixelart_112_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2213": { + "can_color": true, + "children": [ + { + "frame": "pixelart_113_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_113_001.png", + "glow_frame": "pixelart_113_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2214": { + "can_color": true, + "children": [ + { + "frame": "pixelart_114_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_114_001.png", + "glow_frame": "pixelart_114_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2215": { + "can_color": true, + "children": [ + { + "frame": "pixelart_115_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_115_001.png", + "glow_frame": "pixelart_115_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2216": { + "can_color": true, + "children": [ + { + "frame": "pixelart_116_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_116_001.png", + "glow_frame": "pixelart_116_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2217": { + "can_color": true, + "children": [ + { + "frame": "pixelart_117_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_117_001.png", + "glow_frame": "pixelart_117_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2218": { + "can_color": true, + "children": [ + { + "frame": "pixelart_118_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_118_001.png", + "glow_frame": "pixelart_118_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2219": { + "can_color": true, + "children": [ + { + "frame": "pixelart_119_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_119_001.png", + "glow_frame": "pixelart_119_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2220": { + "can_color": true, + "children": [ + { + "frame": "pixelart_120_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_120_001.png", + "glow_frame": "pixelart_120_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2221": { + "can_color": true, + "children": [ + { + "frame": "pixelart_121_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_121_001.png", + "glow_frame": "pixelart_121_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2222": { + "can_color": true, + "children": [ + { + "frame": "pixelart_122_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_122_001.png", + "glow_frame": "pixelart_122_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2223": { + "can_color": true, + "children": [ + { + "frame": "pixelart_123_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_123_002.png", + "glow_frame": "pixelart_123_002.png", + "gridH": 0.20000000298023224, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2224": { + "can_color": true, + "children": [ + { + "frame": "pixelart_124_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_124_001.png", + "glow_frame": "pixelart_124_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2225": { + "can_color": true, + "children": [ + { + "frame": "pixelart_125_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_125_001.png", + "glow_frame": "pixelart_125_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2226": { + "can_color": true, + "children": [ + { + "frame": "pixelart_126_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_126_001.png", + "glow_frame": "pixelart_126_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2227": { + "can_color": true, + "children": [ + { + "frame": "pixelart_127_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_127_001.png", + "glow_frame": "pixelart_127_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2228": { + "can_color": true, + "children": [ + { + "frame": "pixelart_128_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_128_001.png", + "glow_frame": "pixelart_128_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2229": { + "can_color": true, + "children": [ + { + "frame": "pixelart_129_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_129_001.png", + "glow_frame": "pixelart_129_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2230": { + "can_color": true, + "children": [ + { + "frame": "pixelart_130_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_130_001.png", + "glow_frame": "pixelart_130_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_z_layer": 3, + "default_z_order": 11 + }, + "2231": { + "can_color": true, + "children": [ + { + "frame": "pixelart_131_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_131_001.png", + "glow_frame": "pixelart_131_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_z_layer": 3, + "default_z_order": 11 + }, + "2232": { + "can_color": true, + "children": [ + { + "frame": "pixelart_132_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_132_001.png", + "glow_frame": "pixelart_132_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_z_layer": 3, + "default_z_order": 11 + }, + "2233": { + "can_color": true, + "children": [ + { + "frame": "pixelart_133_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_133_001.png", + "glow_frame": "pixelart_133_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_z_layer": 3, + "default_z_order": 11 + }, + "2234": { + "can_color": true, + "children": [ + { + "frame": "pixelart_134_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_134_001.png", + "glow_frame": "pixelart_134_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_z_layer": 3, + "default_z_order": 11 + }, + "2235": { + "can_color": true, + "children": [ + { + "frame": "pixelart_135_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_135_001.png", + "glow_frame": "pixelart_135_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_z_layer": 3, + "default_z_order": 11 + }, + "2236": { + "can_color": true, + "children": [ + { + "frame": "pixelart_136_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_136_001.png", + "glow_frame": "pixelart_136_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_z_layer": 3, + "default_z_order": 11 + }, + "2237": { + "can_color": true, + "children": [ + { + "frame": "pixelart_137_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_137_001.png", + "glow_frame": "pixelart_137_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2238": { + "can_color": true, + "children": [ + { + "frame": "pixelart_138_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_138_001.png", + "glow_frame": "pixelart_138_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1.0666667222976685, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2239": { + "can_color": true, + "children": [ + { + "frame": "pixelart_139_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_139_001.png", + "glow_frame": "pixelart_139_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2240": { + "can_color": true, + "children": [ + { + "frame": "pixelart_140_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_140_001.png", + "glow_frame": "pixelart_140_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2241": { + "can_color": true, + "children": [ + { + "frame": "pixelart_141_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_141_001.png", + "glow_frame": "pixelart_141_glow_001.png", + "gridH": 0.5, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2242": { + "can_color": true, + "children": [ + { + "frame": "pixelart_142_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_142_001.png", + "glow_frame": "pixelart_142_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2243": { + "can_color": true, + "children": [ + { + "frame": "pixelart_143_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_143_001.png", + "glow_frame": "pixelart_143_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2244": { + "can_color": true, + "children": [ + { + "frame": "pixelart_144_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_144_001.png", + "glow_frame": "pixelart_144_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.9666666388511658, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2245": { + "can_color": true, + "children": [ + { + "frame": "pixelart_145_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_145_001.png", + "glow_frame": "pixelart_145_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2246": { + "can_color": true, + "children": [ + { + "frame": "pixelart_146_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_146_002.png", + "glow_frame": "pixelart_146_002.png", + "gridH": 0.36666667461395264, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2247": { + "can_color": true, + "children": [ + { + "frame": "pixelart_147_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_147_001.png", + "glow_frame": "pixelart_147_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2248": { + "can_color": true, + "children": [ + { + "frame": "pixelart_148_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_148_001.png", + "glow_frame": "pixelart_148_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2249": { + "can_color": true, + "children": [ + { + "frame": "pixelart_149_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_149_001.png", + "glow_frame": "pixelart_149_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2250": { + "can_color": true, + "children": [ + { + "frame": "pixelart_150_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_150_001.png", + "glow_frame": "pixelart_150_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.9333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2251": { + "can_color": true, + "children": [ + { + "frame": "pixelart_151_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_151_001.png", + "glow_frame": "pixelart_151_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2252": { + "can_color": true, + "children": [ + { + "frame": "pixelart_152_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_152_001.png", + "glow_frame": "pixelart_152_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2253": { + "can_color": true, + "children": [ + { + "frame": "pixelart_153_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_153_001.png", + "glow_frame": "pixelart_153_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2254": { + "can_color": true, + "children": [ + { + "frame": "pixelart_154_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_154_001.png", + "glow_frame": "pixelart_154_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2255": { + "can_color": true, + "children": [ + { + "frame": "pixelart_155_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_155_001.png", + "glow_frame": "pixelart_155_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2256": { + "can_color": true, + "children": [ + { + "frame": "pixelart_156_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_156_001.png", + "glow_frame": "pixelart_156_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2257": { + "can_color": true, + "children": [ + { + "frame": "pixelart_157_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_157_001.png", + "glow_frame": "pixelart_157_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2258": { + "can_color": true, + "children": [ + { + "frame": "pixelart_158_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_158_001.png", + "glow_frame": "pixelart_158_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2259": { + "can_color": true, + "children": [ + { + "frame": "pixelart_159_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_159_001.png", + "glow_frame": "pixelart_159_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2260": { + "can_color": true, + "children": [ + { + "frame": "pixelart_160_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_160_001.png", + "glow_frame": "pixelart_160_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2261": { + "can_color": true, + "children": [ + { + "frame": "pixelart_161_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_161_001.png", + "glow_frame": "pixelart_161_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2262": { + "can_color": true, + "children": [ + { + "frame": "pixelart_162_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_162_001.png", + "glow_frame": "pixelart_162_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2263": { + "can_color": true, + "children": [ + { + "frame": "pixelart_163_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_163_001.png", + "glow_frame": "pixelart_163_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2264": { + "can_color": true, + "children": [ + { + "frame": "pixelart_164_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_164_001.png", + "glow_frame": "pixelart_164_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2265": { + "can_color": true, + "children": [ + { + "frame": "pixelart_165_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_165_001.png", + "glow_frame": "pixelart_165_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2266": { + "can_color": true, + "children": [ + { + "frame": "pixelart_166_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_166_001.png", + "glow_frame": "pixelart_166_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2267": { + "can_color": true, + "children": [ + { + "frame": "pixelart_167_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_167_001.png", + "glow_frame": "pixelart_167_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2268": { + "can_color": true, + "children": [ + { + "frame": "pixelart_168_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_168_001.png", + "glow_frame": "pixelart_168_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2269": { + "can_color": true, + "children": [ + { + "frame": "pixelart_169_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_169_001.png", + "glow_frame": "pixelart_169_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2270": { + "can_color": true, + "children": [ + { + "frame": "pixelart_170_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_170_001.png", + "glow_frame": "pixelart_170_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2271": { + "can_color": true, + "children": [ + { + "frame": "pixelart_171_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_171_001.png", + "glow_frame": "pixelart_171_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2272": { + "can_color": true, + "children": [ + { + "frame": "pixelart_172_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_172_001.png", + "glow_frame": "pixelart_172_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2273": { + "can_color": true, + "children": [ + { + "frame": "pixelart_173_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_173_001.png", + "glow_frame": "pixelart_173_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2274": { + "can_color": true, + "children": [ + { + "frame": "pixelart_174_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_174_001.png", + "glow_frame": "pixelart_174_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2275": { + "can_color": true, + "children": [ + { + "frame": "pixelart_175_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_175_001.png", + "glow_frame": "pixelart_175_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2276": { + "can_color": true, + "children": [ + { + "frame": "pixelart_176_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_176_001.png", + "glow_frame": "pixelart_176_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2277": { + "can_color": true, + "children": [ + { + "frame": "pixelart_177_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_177_001.png", + "glow_frame": "pixelart_177_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2278": { + "can_color": true, + "children": [ + { + "frame": "pixelart_178_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_178_001.png", + "glow_frame": "pixelart_178_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2279": { + "can_color": true, + "children": [ + { + "frame": "pixelart_179_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_179_001.png", + "glow_frame": "pixelart_179_glow_001.png", + "gridH": 0.9666666388511658, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2280": { + "can_color": true, + "children": [ + { + "frame": "pixelart_180_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_180_001.png", + "glow_frame": "pixelart_180_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_z_layer": 3, + "default_z_order": 11 + }, + "2281": { + "can_color": true, + "children": [ + { + "frame": "pixelart_181_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_181_001.png", + "glow_frame": "pixelart_181_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2282": { + "can_color": true, + "children": [ + { + "frame": "pixelart_182_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_182_001.png", + "glow_frame": "pixelart_182_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2283": { + "can_color": true, + "children": [ + { + "frame": "pixelart_183_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_183_001.png", + "glow_frame": "pixelart_183_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2284": { + "can_color": true, + "children": [ + { + "frame": "pixelart_184_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_184_001.png", + "glow_frame": "pixelart_184_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2285": { + "can_color": true, + "children": [ + { + "frame": "pixelart_185_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_185_001.png", + "glow_frame": "pixelart_185_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2286": { + "can_color": true, + "children": [ + { + "frame": "pixelart_186_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_186_001.png", + "glow_frame": "pixelart_186_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2287": { + "can_color": true, + "children": [ + { + "frame": "pixelart_187_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_187_001.png", + "glow_frame": "pixelart_187_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2288": { + "can_color": true, + "children": [ + { + "frame": "pixelart_188_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_188_001.png", + "glow_frame": "pixelart_188_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2289": { + "can_color": true, + "children": [ + { + "frame": "pixelart_189_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_189_001.png", + "glow_frame": "pixelart_189_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2290": { + "can_color": true, + "children": [ + { + "frame": "pixelart_190_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_190_001.png", + "glow_frame": "pixelart_190_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2291": { + "can_color": true, + "children": [ + { + "frame": "pixelart_183_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_191_001.png", + "glow_frame": "pixelart_191_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2292": { + "can_color": true, + "children": [ + { + "frame": "pixelart_192_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_192_001.png", + "glow_frame": "pixelart_192_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2293": { + "can_color": true, + "children": [ + { + "frame": "pixelart_193_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_193_001.png", + "glow_frame": "pixelart_193_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2294": { + "can_color": true, + "children": [ + { + "frame": "pixelart_194_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_194_001.png", + "glow_frame": "pixelart_194_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2295": { + "can_color": true, + "children": [ + { + "frame": "pixelart_195_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_195_001.png", + "glow_frame": "pixelart_195_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2296": { + "can_color": true, + "children": [ + { + "frame": "pixelart_196_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_196_001.png", + "glow_frame": "pixelart_196_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2297": { + "can_color": true, + "children": [ + { + "frame": "pixelart_197_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_197_001.png", + "glow_frame": "pixelart_197_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2298": { + "can_color": true, + "children": [ + { + "frame": "pixelart_198_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_198_001.png", + "glow_frame": "pixelart_198_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2299": { + "can_color": true, + "children": [ + { + "frame": "pixelart_199_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_199_001.png", + "glow_frame": "pixelart_199_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2300": { + "can_color": true, + "children": [ + { + "frame": "pixelart_200_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_200_001.png", + "glow_frame": "pixelart_200_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2301": { + "can_color": true, + "children": [ + { + "frame": "pixelart_201_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_201_001.png", + "glow_frame": "pixelart_201_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2302": { + "can_color": true, + "children": [ + { + "frame": "pixelart_202_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_202_001.png", + "glow_frame": "pixelart_202_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2303": { + "can_color": true, + "children": [ + { + "frame": "pixelart_203_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_203_001.png", + "glow_frame": "pixelart_203_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2304": { + "can_color": true, + "children": [ + { + "frame": "pixelart_204_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_204_001.png", + "glow_frame": "pixelart_204_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2305": { + "can_color": true, + "children": [ + { + "frame": "pixelart_205_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_205_001.png", + "glow_frame": "pixelart_205_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2306": { + "can_color": true, + "children": [ + { + "frame": "pixelart_206_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_206_001.png", + "glow_frame": "pixelart_206_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2307": { + "can_color": true, + "children": [ + { + "frame": "pixelart_207_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_207_001.png", + "glow_frame": "pixelart_207_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2308": { + "can_color": true, + "children": [ + { + "frame": "pixelart_208_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_208_001.png", + "glow_frame": "pixelart_208_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2309": { + "can_color": true, + "children": [ + { + "frame": "pixelart_209_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_209_001.png", + "glow_frame": "pixelart_209_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2310": { + "can_color": true, + "children": [ + { + "frame": "pixelart_210_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_210_001.png", + "glow_frame": "pixelart_210_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2311": { + "can_color": true, + "children": [ + { + "frame": "pixelart_211_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_211_001.png", + "glow_frame": "pixelart_211_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2312": { + "can_color": true, + "children": [ + { + "frame": "pixelart_212_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_212_001.png", + "glow_frame": "pixelart_212_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2313": { + "can_color": true, + "children": [ + { + "frame": "pixelart_213_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_213_001.png", + "glow_frame": "pixelart_213_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2314": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_214_001.png", + "glow_frame": "pixelart_214_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2315": { + "can_color": true, + "children": [ + { + "frame": "pixelart_215_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_215_001.png", + "glow_frame": "pixelart_215_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2316": { + "can_color": true, + "children": [ + { + "frame": "pixelart_216_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_216_001.png", + "glow_frame": "pixelart_216_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2317": { + "can_color": true, + "children": [ + { + "frame": "pixelart_217_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_217_001.png", + "glow_frame": "pixelart_217_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2318": { + "can_color": true, + "children": [ + { + "frame": "pixelart_218_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_218_001.png", + "glow_frame": "pixelart_218_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2319": { + "can_color": true, + "children": [ + { + "frame": "pixelart_219_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_219_001.png", + "glow_frame": "pixelart_219_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2320": { + "can_color": true, + "children": [ + { + "frame": "pixelart_220_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_220_001.png", + "glow_frame": "pixelart_220_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2321": { + "can_color": true, + "children": [ + { + "frame": "pixelart_221_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_221_001.png", + "glow_frame": "pixelart_221_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2322": { + "can_color": true, + "children": [ + { + "frame": "pixelart_222_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_222_001.png", + "glow_frame": "pixelart_222_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2323": { + "can_color": true, + "children": [ + { + "frame": "pixelart_223_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_223_001.png", + "glow_frame": "pixelart_223_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2324": { + "can_color": true, + "children": [ + { + "frame": "pixelart_224_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_224_001.png", + "glow_frame": "pixelart_224_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2325": { + "can_color": true, + "children": [ + { + "frame": "pixelart_225_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_225_001.png", + "glow_frame": "pixelart_225_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2326": { + "can_color": true, + "children": [ + { + "frame": "pixelart_226_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_226_001.png", + "glow_frame": "pixelart_226_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2327": { + "can_color": true, + "children": [ + { + "frame": "pixelart_227_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_227_001.png", + "glow_frame": "pixelart_227_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2328": { + "can_color": true, + "children": [ + { + "frame": "pixelart_228_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_228_001.png", + "glow_frame": "pixelart_228_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2329": { + "can_color": true, + "children": [ + { + "frame": "pixelart_229_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_229_001.png", + "glow_frame": "pixelart_229_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2330": { + "can_color": true, + "children": [ + { + "frame": "pixelart_230_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_230_001.png", + "glow_frame": "pixelart_230_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2331": { + "can_color": true, + "children": [ + { + "frame": "pixelart_231_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_231_001.png", + "glow_frame": "pixelart_231_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2332": { + "can_color": true, + "children": [ + { + "frame": "pixelart_232_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_232_001.png", + "glow_frame": "pixelart_232_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2333": { + "can_color": true, + "children": [ + { + "frame": "pixelart_233_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_233_001.png", + "glow_frame": "pixelart_233_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2334": { + "can_color": true, + "children": [ + { + "frame": "pixelart_234_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_234_001.png", + "glow_frame": "pixelart_234_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2335": { + "can_color": true, + "children": [ + { + "frame": "pixelart_235_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_235_001.png", + "glow_frame": "pixelart_235_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2336": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_236_001.png", + "glow_frame": "pixelart_236_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2337": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_237_001.png", + "glow_frame": "pixelart_237_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2338": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_238_001.png", + "glow_frame": "pixelart_238_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2339": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_239_001.png", + "glow_frame": "pixelart_239_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2340": { + "can_color": true, + "children": [ + { + "frame": "pixelart_240_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_240_001.png", + "glow_frame": "pixelart_240_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2341": { + "can_color": true, + "children": [ + { + "frame": "pixelart_241_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_241_001.png", + "glow_frame": "pixelart_241_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2342": { + "can_color": true, + "children": [ + { + "frame": "pixelart_242_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_242_001.png", + "glow_frame": "pixelart_242_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2343": { + "can_color": true, + "children": [ + { + "frame": "pixelart_243_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_243_001.png", + "glow_frame": "pixelart_243_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2344": { + "can_color": true, + "children": [ + { + "frame": "pixelart_244_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_244_001.png", + "glow_frame": "pixelart_244_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2345": { + "can_color": true, + "children": [ + { + "frame": "pixelart_245_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_245_001.png", + "glow_frame": "pixelart_245_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2346": { + "can_color": true, + "children": [ + { + "frame": "pixelart_246_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_246_001.png", + "glow_frame": "pixelart_246_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2347": { + "can_color": true, + "children": [ + { + "frame": "pixelart_247_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_247_001.png", + "glow_frame": "pixelart_247_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2348": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_248_001.png", + "glow_frame": "pixelart_248_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2349": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_249_001.png", + "glow_frame": "pixelart_249_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2350": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_250_001.png", + "glow_frame": "pixelart_250_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2351": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_251_001.png", + "glow_frame": "pixelart_251_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2352": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_252_001.png", + "glow_frame": "pixelart_252_glow_001.png", + "gridH": 0.5, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2353": { + "can_color": true, + "children": [ + { + "frame": "pixelart_253_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_253_001.png", + "glow_frame": "pixelart_253_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2354": { + "can_color": true, + "children": [ + { + "frame": "pixelart_254_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_254_001.png", + "glow_frame": "pixelart_254_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2355": { + "can_color": true, + "children": [ + { + "frame": "pixelart_255_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_255_001.png", + "glow_frame": "pixelart_255_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2356": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_256_001.png", + "glow_frame": "pixelart_256_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2357": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_257_001.png", + "glow_frame": "pixelart_257_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2358": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_258_001.png", + "glow_frame": "pixelart_258_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2359": { + "can_color": true, + "children": [ + { + "frame": "pixelart_259_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_259_001.png", + "glow_frame": "pixelart_259_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2360": { + "can_color": true, + "children": [ + { + "frame": "pixelart_260_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_260_001.png", + "glow_frame": "pixelart_260_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2361": { + "can_color": true, + "children": [ + { + "frame": "pixelart_261_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_261_001.png", + "glow_frame": "pixelart_261_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2362": { + "can_color": true, + "children": [ + { + "frame": "pixelart_262_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_262_001.png", + "glow_frame": "pixelart_262_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2363": { + "can_color": true, + "children": [ + { + "frame": "pixelart_263_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_263_001.png", + "glow_frame": "pixelart_263_glow_001.png", + "gridH": 0.5, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2364": { + "can_color": true, + "children": [ + { + "frame": "pixelart_264_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_264_001.png", + "glow_frame": "pixelart_264_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2365": { + "can_color": true, + "children": [ + { + "frame": "pixelart_265_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_265_001.png", + "glow_frame": "pixelart_265_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2366": { + "can_color": true, + "children": [ + { + "frame": "pixelart_266_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_266_001.png", + "glow_frame": "pixelart_266_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2367": { + "can_color": true, + "children": [ + { + "frame": "pixelart_267_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_267_001.png", + "glow_frame": "pixelart_267_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2368": { + "can_color": true, + "children": [ + { + "frame": "pixelart_268_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_268_001.png", + "glow_frame": "pixelart_268_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2369": { + "can_color": true, + "children": [ + { + "frame": "pixelart_269_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_269_001.png", + "glow_frame": "pixelart_269_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2370": { + "can_color": true, + "children": [ + { + "frame": "pixelart_270_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_270_001.png", + "glow_frame": "pixelart_270_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2371": { + "can_color": true, + "children": [ + { + "frame": "pixelart_271_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_271_001.png", + "glow_frame": "pixelart_271_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2372": { + "can_color": true, + "children": [ + { + "frame": "pixelart_272_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_272_001.png", + "glow_frame": "pixelart_272_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2373": { + "can_color": true, + "children": [ + { + "frame": "pixelart_273_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_273_001.png", + "glow_frame": "pixelart_273_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2374": { + "can_color": true, + "children": [ + { + "frame": "pixelart_274_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_274_001.png", + "glow_frame": "pixelart_274_glow_001.png", + "gridH": 0.5, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2375": { + "can_color": true, + "children": [ + { + "frame": "pixelart_275_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_275_001.png", + "glow_frame": "pixelart_275_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2376": { + "can_color": true, + "children": [ + { + "frame": "pixelart_276_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_276_001.png", + "glow_frame": "pixelart_276_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2377": { + "can_color": true, + "children": [ + { + "frame": "pixelart_277_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_277_001.png", + "glow_frame": "pixelart_277_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2378": { + "can_color": true, + "children": [ + { + "frame": "pixelart_278_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_278_001.png", + "glow_frame": "pixelart_278_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2379": { + "can_color": true, + "children": [ + { + "frame": "pixelart_279_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_279_001.png", + "glow_frame": "pixelart_279_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2380": { + "can_color": true, + "children": [ + { + "frame": "pixelart_280_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_280_001.png", + "glow_frame": "pixelart_280_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2381": { + "can_color": true, + "children": [ + { + "frame": "pixelart_281_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_281_001.png", + "glow_frame": "pixelart_281_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2382": { + "can_color": true, + "children": [ + { + "frame": "pixelart_282_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_282_001.png", + "glow_frame": "pixelart_282_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2383": { + "can_color": true, + "children": [ + { + "frame": "pixelart_283_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_283_001.png", + "glow_frame": "pixelart_283_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2384": { + "can_color": true, + "children": [ + { + "frame": "pixelart_284_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_284_001.png", + "glow_frame": "pixelart_284_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2385": { + "can_color": true, + "children": [ + { + "frame": "pixelart_285_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_285_001.png", + "glow_frame": "pixelart_285_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2386": { + "can_color": true, + "children": [ + { + "frame": "pixelart_286_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_286_001.png", + "glow_frame": "pixelart_286_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2387": { + "can_color": true, + "children": [ + { + "frame": "pixelart_287_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_287_001.png", + "glow_frame": "pixelart_287_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2388": { + "can_color": true, + "children": [ + { + "frame": "pixelart_288_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_288_001.png", + "glow_frame": "pixelart_288_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2389": { + "can_color": true, + "children": [ + { + "frame": "pixelart_289_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_289_001.png", + "glow_frame": "pixelart_289_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2390": { + "can_color": true, + "children": [ + { + "frame": "pixelart_290_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_290_001.png", + "glow_frame": "pixelart_290_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2391": { + "can_color": true, + "children": [ + { + "frame": "pixelart_291_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_291_001.png", + "glow_frame": "pixelart_291_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2392": { + "can_color": true, + "children": [ + { + "frame": "pixelart_292_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_292_001.png", + "glow_frame": "pixelart_292_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2393": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_293_001.png", + "glow_frame": "pixelart_293_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2394": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_294_001.png", + "glow_frame": "pixelart_294_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2395": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_295_001.png", + "glow_frame": "pixelart_295_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2396": { + "can_color": true, + "children": [ + { + "frame": "pixelart_296_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_296_001.png", + "glow_frame": "pixelart_296_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2397": { + "can_color": true, + "children": [ + { + "frame": "pixelart_297_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_297_001.png", + "glow_frame": "pixelart_297_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2398": { + "can_color": true, + "children": [ + { + "frame": "pixelart_298_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_298_001.png", + "glow_frame": "pixelart_298_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2399": { + "can_color": true, + "children": [ + { + "frame": "pixelart_299_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_299_001.png", + "glow_frame": "pixelart_299_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2400": { + "can_color": true, + "children": [ + { + "frame": "pixelart_300_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_300_001.png", + "glow_frame": "pixelart_300_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2401": { + "can_color": true, + "children": [ + { + "frame": "pixelart_301_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_301_001.png", + "glow_frame": "pixelart_301_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2402": { + "can_color": true, + "children": [ + { + "frame": "pixelart_302_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_302_001.png", + "glow_frame": "pixelart_302_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2403": { + "can_color": true, + "children": [ + { + "frame": "pixelart_303_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_303_001.png", + "glow_frame": "pixelart_303_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2404": { + "can_color": true, + "children": [ + { + "frame": "pixelart_304_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_304_001.png", + "glow_frame": "pixelart_304_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2405": { + "can_color": true, + "children": [ + { + "frame": "pixelart_305_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_305_001.png", + "glow_frame": "pixelart_305_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2406": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_306_001.png", + "glow_frame": "pixelart_306_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2407": { + "can_color": true, + "children": [ + { + "frame": "pixelart_307_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_307_001.png", + "glow_frame": "pixelart_307_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2408": { + "can_color": true, + "children": [ + { + "frame": "pixelart_308_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_308_001.png", + "glow_frame": "pixelart_308_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2409": { + "can_color": true, + "children": [ + { + "frame": "pixelart_309_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_309_001.png", + "glow_frame": "pixelart_309_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2410": { + "can_color": true, + "children": [ + { + "frame": "pixelart_310_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_310_001.png", + "glow_frame": "pixelart_310_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2411": { + "can_color": true, + "children": [ + { + "frame": "pixelart_311_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_311_001.png", + "glow_frame": "pixelart_311_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2412": { + "can_color": true, + "children": [ + { + "frame": "pixelart_312_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_312_001.png", + "glow_frame": "pixelart_312_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2413": { + "can_color": true, + "children": [ + { + "frame": "pixelart_313_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_313_001.png", + "glow_frame": "pixelart_313_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2414": { + "can_color": true, + "children": [ + { + "frame": "pixelart_314_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_314_001.png", + "glow_frame": "pixelart_314_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2415": { + "can_color": true, + "children": [ + { + "frame": "pixelart_315_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_315_001.png", + "glow_frame": "pixelart_315_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2416": { + "can_color": true, + "children": [ + { + "frame": "pixelart_316_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_316_001.png", + "glow_frame": "pixelart_316_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2417": { + "can_color": true, + "children": [ + { + "frame": "pixelart_317_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_317_001.png", + "glow_frame": "pixelart_317_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2418": { + "can_color": true, + "children": [ + { + "frame": "pixelart_318_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_318_001.png", + "glow_frame": "pixelart_318_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2419": { + "can_color": true, + "children": [ + { + "frame": "pixelart_319_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_319_001.png", + "glow_frame": "pixelart_319_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2420": { + "can_color": true, + "children": [ + { + "frame": "pixelart_320_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_320_001.png", + "glow_frame": "pixelart_320_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2421": { + "can_color": true, + "children": [ + { + "frame": "pixelart_321_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_321_001.png", + "glow_frame": "pixelart_321_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2422": { + "can_color": true, + "children": [ + { + "frame": "pixelart_322_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_322_001.png", + "glow_frame": "pixelart_322_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2423": { + "can_color": true, + "children": [ + { + "frame": "pixelart_323_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_323_001.png", + "glow_frame": "pixelart_323_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2424": { + "can_color": true, + "children": [ + { + "frame": "pixelart_324_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_324_001.png", + "glow_frame": "pixelart_324_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2425": { + "can_color": true, + "children": [ + { + "frame": "pixelart_325_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_325_001.png", + "glow_frame": "pixelart_325_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2426": { + "can_color": true, + "children": [ + { + "frame": "pixelart_326_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_326_001.png", + "glow_frame": "pixelart_326_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2427": { + "can_color": true, + "children": [ + { + "frame": "pixelart_327_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_327_001.png", + "glow_frame": "pixelart_327_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2428": { + "can_color": true, + "children": [ + { + "frame": "pixelart_328_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_328_001.png", + "glow_frame": "pixelart_328_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2429": { + "can_color": true, + "children": [ + { + "frame": "pixelart_329_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_329_001.png", + "glow_frame": "pixelart_329_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2430": { + "can_color": true, + "children": [ + { + "frame": "pixelart_330_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_330_001.png", + "glow_frame": "pixelart_330_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2431": { + "can_color": true, + "children": [ + { + "frame": "pixelart_331_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_331_001.png", + "glow_frame": "pixelart_331_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2432": { + "can_color": true, + "children": [ + { + "frame": "pixelart_332_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_332_001.png", + "glow_frame": "pixelart_332_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2433": { + "can_color": true, + "children": [ + { + "frame": "pixelart_147_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_333_001.png", + "glow_frame": "pixelart_333_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2434": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_334_001.png", + "glow_frame": "pixelart_334_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2435": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_335_001.png", + "glow_frame": "pixelart_335_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2436": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_336_001.png", + "glow_frame": "pixelart_336_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2437": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_337_001.png", + "glow_frame": "pixelart_337_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2438": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_338_001.png", + "glow_frame": "pixelart_338_glow_001.png", + "gridH": 0.5, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2439": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_339_001.png", + "glow_frame": "pixelart_339_glow_001.png", + "gridH": 0.5, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2440": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_340_001.png", + "glow_frame": "pixelart_340_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2441": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_341_001.png", + "glow_frame": "pixelart_341_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2442": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_342_001.png", + "glow_frame": "pixelart_342_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2443": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_343_001.png", + "glow_frame": "pixelart_343_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2444": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_344_001.png", + "glow_frame": "pixelart_344_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2445": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_345_001.png", + "glow_frame": "pixelart_345_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2446": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_346_001.png", + "glow_frame": "pixelart_346_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2447": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_347_001.png", + "glow_frame": "pixelart_347_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2448": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_348_001.png", + "glow_frame": "pixelart_348_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2449": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_349_001.png", + "glow_frame": "pixelart_349_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2450": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_350_001.png", + "glow_frame": "pixelart_350_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2451": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_351_001.png", + "glow_frame": "pixelart_351_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2452": { + "can_color": true, + "children": [ + { + "frame": "pixelart_352_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_352_001.png", + "glow_frame": "pixelart_352_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2453": { + "can_color": true, + "children": [ + { + "frame": "pixelart_353_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_353_001.png", + "glow_frame": "pixelart_353_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2454": { + "can_color": true, + "children": [ + { + "frame": "pixelart_354_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_354_001.png", + "glow_frame": "pixelart_354_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2455": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_355_001.png", + "glow_frame": "pixelart_355_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2456": { + "can_color": true, + "children": [ + { + "frame": "pixelart_356_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_356_001.png", + "glow_frame": "pixelart_356_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2457": { + "can_color": true, + "children": [ + { + "frame": "pixelart_357_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_357_001.png", + "glow_frame": "pixelart_357_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2458": { + "can_color": true, + "children": [ + { + "frame": "pixelart_358_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_358_001.png", + "glow_frame": "pixelart_358_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2459": { + "can_color": true, + "children": [ + { + "frame": "pixelart_359_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_082_001.png", + "glow_frame": "pixelart_082_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2460": { + "can_color": true, + "children": [ + { + "frame": "pixelart_360_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_083_001.png", + "glow_frame": "pixelart_083_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2461": { + "can_color": true, + "children": [ + { + "frame": "pixelart_361_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_084_001.png", + "glow_frame": "pixelart_084_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2462": { + "can_color": true, + "children": [ + { + "frame": "pixelart_362_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_362_001.png", + "glow_frame": "pixelart_362_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2463": { + "can_color": true, + "children": [ + { + "frame": "pixelart_363_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_363_001.png", + "glow_frame": "pixelart_363_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2464": { + "can_color": true, + "children": [ + { + "frame": "pixelart_364_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_364_001.png", + "glow_frame": "pixelart_364_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2465": { + "can_color": true, + "children": [ + { + "frame": "pixelart_365_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_365_001.png", + "glow_frame": "pixelart_365_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2466": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_366_001.png", + "glow_frame": "pixelart_366_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 8 + }, + "2467": { + "can_color": true, + "children": [ + { + "frame": "pixelart_367_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_367_001.png", + "glow_frame": "pixelart_367_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2468": { + "can_color": true, + "children": [ + { + "frame": "pixelart_368_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_368_001.png", + "glow_frame": "pixelart_368_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2469": { + "can_color": true, + "children": [ + { + "frame": "pixelart_369_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_369_001.png", + "glow_frame": "pixelart_369_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2470": { + "can_color": true, + "children": [ + { + "frame": "pixelart_370_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_370_001.png", + "glow_frame": "pixelart_370_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2471": { + "can_color": true, + "children": [ + { + "frame": "pixelart_371_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_371_001.png", + "glow_frame": "pixelart_371_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2472": { + "can_color": true, + "children": [ + { + "frame": "pixelart_372_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_372_001.png", + "glow_frame": "pixelart_372_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2473": { + "can_color": true, + "children": [ + { + "frame": "pixelart_373_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_373_001.png", + "glow_frame": "pixelart_373_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1.0666667222976685, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2474": { + "can_color": true, + "children": [ + { + "frame": "pixelart_374_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_374_001.png", + "glow_frame": "pixelart_374_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2475": { + "can_color": true, + "children": [ + { + "frame": "pixelart_375_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_375_001.png", + "glow_frame": "pixelart_375_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2476": { + "can_color": true, + "children": [ + { + "frame": "pixelart_376_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_376_001.png", + "glow_frame": "pixelart_376_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2477": { + "can_color": true, + "children": [ + { + "frame": "pixelart_377_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_377_001.png", + "glow_frame": "pixelart_377_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2478": { + "can_color": true, + "children": [ + { + "frame": "pixelart_378_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_378_001.png", + "glow_frame": "pixelart_378_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2479": { + "can_color": true, + "children": [ + { + "frame": "pixelart_379_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_379_001.png", + "glow_frame": "pixelart_379_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2480": { + "can_color": true, + "children": [ + { + "frame": "pixelart_380_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_380_001.png", + "glow_frame": "pixelart_380_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2481": { + "can_color": true, + "children": [ + { + "frame": "pixelart_381_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_381_001.png", + "glow_frame": "pixelart_381_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2482": { + "can_color": true, + "children": [ + { + "frame": "pixelart_382_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_382_001.png", + "glow_frame": "pixelart_382_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2483": { + "can_color": true, + "children": [ + { + "frame": "pixelart_383_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_383_001.png", + "glow_frame": "pixelart_383_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2484": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_384_001.png", + "glow_frame": "pixelart_384_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2485": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_385_001.png", + "glow_frame": "pixelart_385_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2486": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_386_001.png", + "glow_frame": "pixelart_386_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2487": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_387_001.png", + "glow_frame": "pixelart_387_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2488": { + "can_color": true, + "children": [ + { + "frame": "pixelart_388_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_388_001.png", + "glow_frame": "pixelart_388_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2489": { + "can_color": true, + "children": [ + { + "frame": "pixelart_389_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_389_001.png", + "glow_frame": "pixelart_389_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2490": { + "can_color": true, + "children": [ + { + "frame": "pixelart_390_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_390_001.png", + "glow_frame": "pixelart_390_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2491": { + "can_color": true, + "children": [ + { + "frame": "pixelart_391_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_391_001.png", + "glow_frame": "pixelart_391_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2492": { + "can_color": true, + "children": [ + { + "frame": "pixelart_392_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_392_001.png", + "glow_frame": "pixelart_392_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2493": { + "can_color": true, + "children": [ + { + "frame": "pixelart_393_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_393_001.png", + "glow_frame": "pixelart_393_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2494": { + "can_color": true, + "children": [ + { + "frame": "pixelart_394_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_394_001.png", + "glow_frame": "pixelart_394_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2495": { + "can_color": true, + "children": [ + { + "frame": "pixelart_395_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_395_001.png", + "glow_frame": "pixelart_395_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2496": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_396_001.png", + "glow_frame": "pixelart_396_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2497": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_397_001.png", + "glow_frame": "pixelart_397_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2498": { + "can_color": true, + "children": [ + { + "frame": "pixelart_398_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_398_001.png", + "glow_frame": "pixelart_398_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2499": { + "can_color": true, + "children": [ + { + "frame": "pixelart_399_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_399_001.png", + "glow_frame": "pixelart_399_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2500": { + "can_color": true, + "children": [ + { + "frame": "pixelart_400_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_400_001.png", + "glow_frame": "pixelart_400_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2501": { + "can_color": true, + "children": [ + { + "frame": "pixelart_401_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_401_001.png", + "glow_frame": "pixelart_401_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2502": { + "can_color": true, + "children": [ + { + "frame": "pixelart_402_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_402_001.png", + "glow_frame": "pixelart_402_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2503": { + "can_color": true, + "children": [ + { + "frame": "pixelart_403_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_403_001.png", + "glow_frame": "pixelart_403_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2504": { + "can_color": true, + "children": [ + { + "frame": "pixelart_404_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_404_001.png", + "glow_frame": "pixelart_404_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2505": { + "can_color": true, + "children": [ + { + "frame": "pixelart_405_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_405_001.png", + "glow_frame": "pixelart_405_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2506": { + "can_color": true, + "children": [ + { + "frame": "pixelart_406_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_406_001.png", + "glow_frame": "pixelart_406_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2507": { + "can_color": true, + "children": [ + { + "frame": "pixelart_407_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_407_001.png", + "glow_frame": "pixelart_407_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2508": { + "can_color": true, + "children": [ + { + "frame": "pixelart_408_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_408_001.png", + "glow_frame": "pixelart_408_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2509": { + "can_color": true, + "children": [ + { + "frame": "pixelart_409_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_409_001.png", + "glow_frame": "pixelart_409_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2510": { + "can_color": true, + "children": [ + { + "frame": "pixelart_410_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_410_001.png", + "glow_frame": "pixelart_410_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2511": { + "can_color": true, + "children": [ + { + "frame": "pixelart_411_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_411_001.png", + "glow_frame": "pixelart_411_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.8333333134651184, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2512": { + "can_color": true, + "children": [ + { + "frame": "pixelart_412_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_412_001.png", + "glow_frame": "pixelart_412_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2513": { + "can_color": true, + "children": [ + { + "frame": "pixelart_413_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_413_001.png", + "glow_frame": "pixelart_413_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2514": { + "can_color": true, + "children": [ + { + "frame": "pixelart_414_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_414_001.png", + "glow_frame": "pixelart_414_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2515": { + "can_color": true, + "children": [ + { + "frame": "pixelart_415_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_415_001.png", + "glow_frame": "pixelart_415_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.800000011920929, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2516": { + "can_color": true, + "children": [ + { + "frame": "pixelart_416_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_416_001.png", + "glow_frame": "pixelart_416_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.800000011920929, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2517": { + "can_color": true, + "children": [ + { + "frame": "pixelart_417_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_417_001.png", + "glow_frame": "pixelart_417_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.800000011920929, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2518": { + "can_color": true, + "children": [ + { + "frame": "pixelart_418_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_418_001.png", + "glow_frame": "pixelart_418_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2519": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_419_001.png", + "glow_frame": "pixelart_419_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2520": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_420_001.png", + "glow_frame": "pixelart_420_glow_001.png", + "gridH": 0.5, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2521": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_421_001.png", + "glow_frame": "pixelart_421_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.800000011920929, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2522": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_422_001.png", + "glow_frame": "pixelart_422_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2523": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_423_001.png", + "glow_frame": "pixelart_423_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2524": { + "can_color": true, + "children": [ + { + "frame": "pixelart_424_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_424_001.png", + "glow_frame": "pixelart_424_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.9333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2525": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_425_001.png", + "glow_frame": "pixelart_425_glow_001.png", + "gridH": 0.5, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2526": { + "can_color": true, + "children": [ + { + "frame": "pixelart_426_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_426_001.png", + "glow_frame": "pixelart_426_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2527": { + "can_color": true, + "children": [ + { + "frame": "pixelart_427_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_427_001.png", + "glow_frame": "pixelart_427_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2528": { + "can_color": true, + "children": [ + { + "frame": "pixelart_428_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_428_001.png", + "glow_frame": "pixelart_428_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2529": { + "can_color": true, + "children": [ + { + "frame": "pixelart_429_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_429_001.png", + "glow_frame": "pixelart_429_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2530": { + "can_color": true, + "children": [ + { + "frame": "pixelart_430_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_430_001.png", + "glow_frame": "pixelart_430_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2531": { + "can_color": true, + "children": [ + { + "frame": "pixelart_431_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_431_001.png", + "glow_frame": "pixelart_431_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2532": { + "can_color": true, + "children": [ + { + "frame": "pixelart_432_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_432_001.png", + "glow_frame": "pixelart_432_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2533": { + "can_color": true, + "children": [ + { + "frame": "pixelart_433_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_433_001.png", + "glow_frame": "pixelart_433_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2534": { + "can_color": true, + "children": [ + { + "frame": "pixelart_434_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_434_001.png", + "glow_frame": "pixelart_434_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2535": { + "can_color": true, + "children": [ + { + "frame": "pixelart_435_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_435_001.png", + "glow_frame": "pixelart_435_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2536": { + "can_color": true, + "children": [ + { + "frame": "pixelart_436_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_436_001.png", + "glow_frame": "pixelart_436_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2537": { + "can_color": true, + "children": [ + { + "frame": "pixelart_437_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_437_001.png", + "glow_frame": "pixelart_437_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2538": { + "can_color": true, + "children": [ + { + "frame": "pixelart_438_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_438_001.png", + "glow_frame": "pixelart_438_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2539": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_439_001.png", + "glow_frame": "pixelart_439_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2540": { + "can_color": true, + "children": [ + { + "frame": "pixelart_440_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_440_001.png", + "glow_frame": "pixelart_440_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2541": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_441_001.png", + "glow_frame": "pixelart_441_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2542": { + "can_color": true, + "children": [ + { + "frame": "pixelart_442_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_442_001.png", + "glow_frame": "pixelart_442_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2543": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_443_001.png", + "glow_frame": "pixelart_443_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2544": { + "can_color": true, + "children": [ + { + "frame": "pixelart_444_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_444_001.png", + "glow_frame": "pixelart_444_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2545": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_445_001.png", + "glow_frame": "pixelart_445_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2546": { + "can_color": true, + "children": [ + { + "frame": "pixelart_446_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_446_001.png", + "glow_frame": "pixelart_446_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2547": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_447_001.png", + "glow_frame": "pixelart_447_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2548": { + "can_color": true, + "children": [ + { + "frame": "pixelart_448_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_448_001.png", + "glow_frame": "pixelart_448_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2549": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_449_001.png", + "glow_frame": "pixelart_449_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 8 + }, + "2550": { + "can_color": true, + "children": [ + { + "frame": "pixelart_450_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_450_001.png", + "glow_frame": "pixelart_450_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2551": { + "can_color": true, + "children": [ + { + "frame": "pixelart_451_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_451_001.png", + "glow_frame": "pixelart_451_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2552": { + "can_color": true, + "children": [ + { + "frame": "pixelart_452_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_452_001.png", + "glow_frame": "pixelart_452_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2553": { + "can_color": true, + "children": [ + { + "frame": "pixelart_453_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_453_001.png", + "glow_frame": "pixelart_453_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2554": { + "can_color": true, + "children": [ + { + "frame": "pixelart_454_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_454_001.png", + "glow_frame": "pixelart_454_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2555": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_455_001.png", + "glow_frame": "pixelart_455_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2556": { + "can_color": true, + "children": [ + { + "frame": "pixelart_456_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_456_001.png", + "glow_frame": "pixelart_456_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2557": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_455_001.png", + "glow_frame": "pixelart_455_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2558": { + "can_color": true, + "children": [ + { + "frame": "pixelart_458_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_458_001.png", + "glow_frame": "pixelart_458_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2559": { + "can_color": true, + "children": [ + { + "frame": "pixelart_459_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_459_001.png", + "glow_frame": "pixelart_459_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2560": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_460_001.png", + "glow_frame": "pixelart_460_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2561": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_461_001.png", + "glow_frame": "pixelart_461_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2562": { + "can_color": true, + "children": [ + { + "frame": "pixelart_462_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_462_001.png", + "glow_frame": "pixelart_462_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2563": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_463_001.png", + "glow_frame": "pixelart_463_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2564": { + "can_color": true, + "children": [ + { + "frame": "pixelart_464_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_464_001.png", + "glow_frame": "pixelart_464_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2565": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_465_001.png", + "glow_frame": "pixelart_465_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2566": { + "can_color": true, + "children": [ + { + "frame": "pixelart_466_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_466_001.png", + "glow_frame": "pixelart_466_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1.0666667222976685, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2567": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_467_001.png", + "glow_frame": "pixelart_467_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.8999999761581421, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2568": { + "can_color": true, + "children": [ + { + "frame": "pixelart_468_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_468_001.png", + "glow_frame": "pixelart_468_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2569": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1042_001.png", + "glow_frame": "pixelart_1042_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2570": { + "can_color": true, + "children": [ + { + "frame": "pixelart_470_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_470_001.png", + "glow_frame": "pixelart_470_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2571": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_471_001.png", + "glow_frame": "pixelart_471_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2572": { + "can_color": true, + "children": [ + { + "frame": "pixelart_472_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_472_001.png", + "glow_frame": "pixelart_472_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2573": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_441_001.png", + "glow_frame": "pixelart_441_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2574": { + "can_color": true, + "children": [ + { + "frame": "pixelart_474_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_474_001.png", + "glow_frame": "pixelart_474_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2575": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_475_001.png", + "glow_frame": "pixelart_475_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2576": { + "can_color": true, + "children": [ + { + "frame": "pixelart_476_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_476_001.png", + "glow_frame": "pixelart_476_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2577": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_477_001.png", + "glow_frame": "pixelart_477_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2578": { + "can_color": true, + "children": [ + { + "frame": "pixelart_478_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_478_001.png", + "glow_frame": "pixelart_478_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2579": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_479_001.png", + "glow_frame": "pixelart_479_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2580": { + "can_color": true, + "children": [ + { + "frame": "pixelart_480_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_480_001.png", + "glow_frame": "pixelart_480_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2581": { + "can_color": true, + "children": [ + { + "frame": "pixelart_481_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_481_001.png", + "glow_frame": "pixelart_481_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2582": { + "can_color": true, + "children": [ + { + "frame": "pixelart_482_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_482_001.png", + "glow_frame": "pixelart_482_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2583": { + "can_color": true, + "children": [ + { + "frame": "pixelart_483_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_483_001.png", + "glow_frame": "pixelart_483_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2584": { + "can_color": true, + "children": [ + { + "frame": "pixelart_484_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_484_001.png", + "glow_frame": "pixelart_484_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2585": { + "can_color": true, + "children": [ + { + "frame": "pixelart_485_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_485_001.png", + "glow_frame": "pixelart_485_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2586": { + "can_color": true, + "children": [ + { + "frame": "pixelart_486_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_486_001.png", + "glow_frame": "pixelart_486_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2587": { + "can_color": true, + "children": [ + { + "frame": "pixelart_487_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_487_001.png", + "glow_frame": "pixelart_487_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2588": { + "can_color": true, + "children": [ + { + "frame": "pixelart_488_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_488_001.png", + "glow_frame": "pixelart_488_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2589": { + "can_color": true, + "children": [ + { + "frame": "pixelart_489_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_489_001.png", + "glow_frame": "pixelart_489_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2590": { + "can_color": true, + "children": [ + { + "frame": "pixelart_490_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_490_001.png", + "glow_frame": "pixelart_490_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2591": { + "can_color": true, + "children": [ + { + "frame": "pixelart_491_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_491_001.png", + "glow_frame": "pixelart_491_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2592": { + "can_color": true, + "children": [ + { + "frame": "pixelart_492_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_492_001.png", + "glow_frame": "pixelart_492_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2593": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_493_001.png", + "glow_frame": "pixelart_493_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2594": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_494_001.png", + "glow_frame": "pixelart_494_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2595": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_495_001.png", + "glow_frame": "pixelart_495_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2596": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_496_001.png", + "glow_frame": "pixelart_496_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2597": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_497_001.png", + "glow_frame": "pixelart_497_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2598": { + "can_color": true, + "children": [ + { + "frame": "pixelart_498_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_498_001.png", + "glow_frame": "pixelart_498_glow_001.png", + "gridH": 0.5, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2599": { + "can_color": true, + "children": [ + { + "frame": "pixelart_499_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_499_001.png", + "glow_frame": "pixelart_499_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2600": { + "can_color": true, + "children": [ + { + "frame": "pixelart_500_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_500_001.png", + "glow_frame": "pixelart_500_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2601": { + "can_color": true, + "children": [ + { + "frame": "pixelart_501_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_501_001.png", + "glow_frame": "pixelart_501_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2602": { + "can_color": true, + "children": [ + { + "frame": "pixelart_502_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_502_001.png", + "glow_frame": "pixelart_502_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2603": { + "can_color": true, + "children": [ + { + "frame": "pixelart_503_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_503_001.png", + "glow_frame": "pixelart_503_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2604": { + "can_color": true, + "children": [ + { + "frame": "pixelart_504_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_504_001.png", + "glow_frame": "pixelart_504_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2605": { + "can_color": true, + "children": [ + { + "frame": "pixelart_505_color_006.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_505_006.png", + "glow_frame": "pixelart_505_006.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2606": { + "can_color": true, + "children": [ + { + "frame": "pixelart_506_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_506_001.png", + "glow_frame": "pixelart_506_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2607": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_507_001.png", + "glow_frame": "pixelart_507_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2608": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_508_001.png", + "glow_frame": "pixelart_508_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2609": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_509_001.png", + "glow_frame": "pixelart_509_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2610": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_510_001.png", + "glow_frame": "pixelart_510_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2611": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_511_001.png", + "glow_frame": "pixelart_511_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2612": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_512_001.png", + "glow_frame": "pixelart_512_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2613": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_513_001.png", + "glow_frame": "pixelart_513_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2614": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_514_001.png", + "glow_frame": "pixelart_514_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2615": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_515_001.png", + "glow_frame": "pixelart_515_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2616": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_516_001.png", + "glow_frame": "pixelart_516_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2617": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_517_001.png", + "glow_frame": "pixelart_517_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2618": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_518_001.png", + "glow_frame": "pixelart_518_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2619": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_519_001.png", + "glow_frame": "pixelart_519_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2620": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_520_001.png", + "glow_frame": "pixelart_520_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2621": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_521_001.png", + "glow_frame": "pixelart_521_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2622": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_522_001.png", + "glow_frame": "pixelart_522_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2623": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_523_001.png", + "glow_frame": "pixelart_523_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2624": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_524_001.png", + "glow_frame": "pixelart_524_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2625": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_525_001.png", + "glow_frame": "pixelart_525_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2626": { + "can_color": true, + "children": [ + { + "frame": "pixelart_526_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_526_001.png", + "glow_frame": "pixelart_526_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2627": { + "can_color": true, + "children": [ + { + "frame": "pixelart_527_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_527_001.png", + "glow_frame": "pixelart_527_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2628": { + "can_color": true, + "children": [ + { + "frame": "pixelart_528_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_528_001.png", + "glow_frame": "pixelart_528_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2629": { + "can_color": true, + "children": [ + { + "frame": "pixelart_529_color_003.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_529_003.png", + "glow_frame": "pixelart_529_003.png", + "gridH": 0.7666666507720947, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2630": { + "can_color": true, + "children": [ + { + "frame": "pixelart_530_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_530_001.png", + "glow_frame": "pixelart_530_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2631": { + "can_color": true, + "children": [ + { + "frame": "pixelart_454_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_531_001.png", + "glow_frame": "pixelart_531_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2632": { + "can_color": true, + "children": [ + { + "frame": "pixelart_532_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_532_001.png", + "glow_frame": "pixelart_532_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2633": { + "can_color": true, + "children": [ + { + "frame": "pixelart_533_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_533_001.png", + "glow_frame": "pixelart_533_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2634": { + "can_color": true, + "children": [ + { + "frame": "pixelart_291_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_534_001.png", + "glow_frame": "pixelart_534_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2635": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_535_001.png", + "glow_frame": "pixelart_535_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2636": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_536_001.png", + "glow_frame": "pixelart_536_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2637": { + "can_color": true, + "children": [ + { + "frame": "pixelart_537_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_537_001.png", + "glow_frame": "pixelart_537_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2638": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_538_001.png", + "glow_frame": "pixelart_538_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2639": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_539_001.png", + "glow_frame": "pixelart_539_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2640": { + "can_color": true, + "children": [ + { + "frame": "pixelart_540_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_540_001.png", + "glow_frame": "pixelart_540_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2641": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_541_001.png", + "glow_frame": "pixelart_541_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2642": { + "can_color": true, + "children": [ + { + "frame": "pixelart_542_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_542_001.png", + "glow_frame": "pixelart_542_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2643": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_543_001.png", + "glow_frame": "pixelart_543_glow_001.png", + "gridH": 0.5, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2644": { + "can_color": true, + "children": [ + { + "frame": "pixelart_544_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_544_001.png", + "glow_frame": "pixelart_544_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2645": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_545_001.png", + "glow_frame": "pixelart_545_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2646": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_546_001.png", + "glow_frame": "pixelart_546_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2647": { + "can_color": true, + "children": [ + { + "frame": "pixelart_547_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_547_001.png", + "glow_frame": "pixelart_547_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2648": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_548_001.png", + "glow_frame": "pixelart_548_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2649": { + "can_color": true, + "children": [ + { + "frame": "pixelart_549_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_549_001.png", + "glow_frame": "pixelart_549_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2650": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_543_001.png", + "glow_frame": "pixelart_543_glow_001.png", + "gridH": 0.5, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2651": { + "can_color": true, + "children": [ + { + "frame": "pixelart_551_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_551_001.png", + "glow_frame": "pixelart_551_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2652": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_552_001.png", + "glow_frame": "pixelart_552_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2653": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_539_001.png", + "glow_frame": "pixelart_539_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2654": { + "can_color": true, + "children": [ + { + "frame": "pixelart_554_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_554_001.png", + "glow_frame": "pixelart_554_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2655": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_555_001.png", + "glow_frame": "pixelart_555_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2656": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_556_001.png", + "glow_frame": "pixelart_556_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2657": { + "can_color": true, + "children": [ + { + "frame": "pixelart_557_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_557_001.png", + "glow_frame": "pixelart_557_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2658": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_558_001.png", + "glow_frame": "pixelart_558_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2659": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_559_001.png", + "glow_frame": "pixelart_559_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2660": { + "can_color": true, + "children": [ + { + "frame": "pixelart_560_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_560_001.png", + "glow_frame": "pixelart_560_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2661": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_561_001.png", + "glow_frame": "pixelart_561_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2662": { + "can_color": true, + "children": [ + { + "frame": "pixelart_562_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_562_001.png", + "glow_frame": "pixelart_562_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2663": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_563_001.png", + "glow_frame": "pixelart_563_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2664": { + "can_color": true, + "children": [ + { + "frame": "pixelart_564_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_564_001.png", + "glow_frame": "pixelart_564_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2665": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_565_001.png", + "glow_frame": "pixelart_565_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2666": { + "can_color": true, + "children": [ + { + "frame": "pixelart_566_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_566_001.png", + "glow_frame": "pixelart_566_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2667": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_567_001.png", + "glow_frame": "pixelart_567_glow_001.png", + "gridH": 0.5, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2668": { + "can_color": true, + "children": [ + { + "frame": "pixelart_568_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_568_001.png", + "glow_frame": "pixelart_568_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2669": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_569_001.png", + "glow_frame": "pixelart_569_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2670": { + "can_color": true, + "children": [ + { + "frame": "pixelart_570_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_570_001.png", + "glow_frame": "pixelart_570_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2671": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_543_001.png", + "glow_frame": "pixelart_543_glow_001.png", + "gridH": 0.5, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2672": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_572_001.png", + "glow_frame": "pixelart_572_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2673": { + "can_color": true, + "children": [ + { + "frame": "pixelart_573_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_573_001.png", + "glow_frame": "pixelart_573_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2674": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_548_001.png", + "glow_frame": "pixelart_548_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2675": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1394_color_001.png", + "glow_frame": "pixelart_1394_color_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2676": { + "can_color": true, + "children": [ + { + "frame": "pixelart_576_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_576_001.png", + "glow_frame": "pixelart_576_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2677": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_543_001.png", + "glow_frame": "pixelart_543_glow_001.png", + "gridH": 0.5, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2678": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_578_001.png", + "glow_frame": "pixelart_578_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2679": { + "can_color": true, + "children": [ + { + "frame": "pixelart_579_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_579_001.png", + "glow_frame": "pixelart_579_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2680": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_580_001.png", + "glow_frame": "pixelart_580_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2681": { + "can_color": true, + "children": [ + { + "frame": "pixelart_581_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_581_001.png", + "glow_frame": "pixelart_581_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2682": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_555_001.png", + "glow_frame": "pixelart_555_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2683": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_583_001.png", + "glow_frame": "pixelart_583_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2684": { + "can_color": true, + "children": [ + { + "frame": "pixelart_584_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_584_001.png", + "glow_frame": "pixelart_584_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2685": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_585_001.png", + "glow_frame": "pixelart_585_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2686": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_586_001.png", + "glow_frame": "pixelart_586_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2687": { + "can_color": true, + "children": [ + { + "frame": "pixelart_587_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_587_001.png", + "glow_frame": "pixelart_587_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1.0666667222976685, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2688": { + "can_color": true, + "children": [ + { + "frame": "pixelart_588_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_588_001.png", + "glow_frame": "pixelart_588_glow_001.png", + "gridH": 0.5, + "gridW": 1.1333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2689": { + "can_color": true, + "children": [ + { + "frame": "pixelart_589_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_589_001.png", + "glow_frame": "pixelart_589_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.9333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2690": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1258_color_001.png", + "glow_frame": "pixelart_1258_color_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2691": { + "can_color": true, + "children": [ + { + "frame": "pixelart_591_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_591_001.png", + "glow_frame": "pixelart_591_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 1.0666667222976685, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2692": { + "can_color": true, + "children": [ + { + "frame": "pixelart_592_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_592_001.png", + "glow_frame": "pixelart_592_glow_001.png", + "gridH": 0.5, + "gridW": 1.1333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "2693": { + "can_color": true, + "children": [ + { + "frame": "pixelart_593_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_593_001.png", + "glow_frame": "pixelart_593_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.8999999761581421, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2694": { + "can_color": true, + "children": [ + { + "frame": "pixelart_594_color_004.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_594_004.png", + "glow_frame": "pixelart_594_004.png", + "gridH": 0.9666666388511658, + "gridW": 1.100000023841858, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2695": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1126_001.png", + "glow_frame": "pixelart_1126_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2696": { + "can_color": true, + "children": [ + { + "frame": "pixelart_596_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_596_001.png", + "glow_frame": "pixelart_596_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2697": { + "can_color": true, + "children": [ + { + "frame": "pixelart_597_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_596_001.png", + "glow_frame": "pixelart_596_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2698": { + "can_color": true, + "children": [ + { + "frame": "pixelart_598_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_598_001.png", + "glow_frame": "pixelart_598_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2699": { + "can_color": true, + "children": [ + { + "frame": "pixelart_599_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_599_001.png", + "glow_frame": "pixelart_599_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2700": { + "can_color": true, + "children": [ + { + "frame": "pixelart_600_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_600_001.png", + "glow_frame": "pixelart_600_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "2703": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2704": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2708": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_01_001.png", + "glow_frame": "gdh_01_1_01_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2709": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_01_o_001.png", + "glow_frame": "gdh_01_1_01_o_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2710": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_01_s_001.png", + "glow_frame": "gdh_01_1_01_s_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2711": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_01b_001.png", + "glow_frame": "gdh_01_1_01b_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2712": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_01b_o_001.png", + "glow_frame": "gdh_01_1_01b_o_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2713": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_01b_s_001.png", + "glow_frame": "gdh_01_1_01b_s_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2714": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_02_001.png", + "glow_frame": "gdh_01_1_02_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2715": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_02_o_001.png", + "glow_frame": "gdh_01_1_02_o_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2716": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_02_s_001.png", + "glow_frame": "gdh_01_1_02_s_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2717": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_02b_001.png", + "glow_frame": "gdh_01_1_02b_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2718": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_02b_o_001.png", + "glow_frame": "gdh_01_1_02b_o_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2719": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_02b_s_001.png", + "glow_frame": "gdh_01_1_02b_s_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2720": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_03_001.png", + "glow_frame": "gdh_01_1_03_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2721": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_03_o_001.png", + "glow_frame": "gdh_01_1_03_o_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2722": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_03_s_001.png", + "glow_frame": "gdh_01_1_03_s_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2723": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_03b_001.png", + "glow_frame": "gdh_01_1_03b_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2724": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_03b_o_001.png", + "glow_frame": "gdh_01_1_03b_o_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2725": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_03b_s_001.png", + "glow_frame": "gdh_01_1_03b_s_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2726": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_04_001.png", + "glow_frame": "gdh_01_1_04_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2727": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_04_o_001.png", + "glow_frame": "gdh_01_1_04_o_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2728": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_04_s_001.png", + "glow_frame": "gdh_01_1_04_s_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2729": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_04b_001.png", + "glow_frame": "gdh_01_1_04b_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2730": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_04b_o_001.png", + "glow_frame": "gdh_01_1_04b_o_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2731": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_04b_s_001.png", + "glow_frame": "gdh_01_1_04b_s_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2732": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_05_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_05_001.png", + "glow_frame": "gdh_01_1_05_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2733": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_05_o_001.png", + "glow_frame": "gdh_01_1_05_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2734": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_05_s_001.png", + "glow_frame": "gdh_01_1_05_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2735": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_05b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_05b_001.png", + "glow_frame": "gdh_01_1_05b_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2736": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_05b_o_001.png", + "glow_frame": "gdh_01_1_05b_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.10000000149011612, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2737": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_05b_s_001.png", + "glow_frame": "gdh_01_1_05b_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2738": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_06_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_06_001.png", + "glow_frame": "gdh_01_1_06_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2739": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_06_o_001.png", + "glow_frame": "gdh_01_1_06_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2740": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_06_s_001.png", + "glow_frame": "gdh_01_1_06_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2741": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_06b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_06b_001.png", + "glow_frame": "gdh_01_1_06b_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2742": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_06b_o_001.png", + "glow_frame": "gdh_01_1_06b_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2743": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_06b_s_001.png", + "glow_frame": "gdh_01_1_06b_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.15000000596046448, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2744": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_07_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_07_001.png", + "glow_frame": "gdh_01_1_07_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2745": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_07b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_07b_001.png", + "glow_frame": "gdh_01_1_07b_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2746": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_08_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_08_001.png", + "glow_frame": "gdh_01_1_08_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2747": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_08b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_08b_001.png", + "glow_frame": "gdh_01_1_08b_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2748": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_09_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_09_001.png", + "glow_frame": "gdh_01_1_09_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2749": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_09b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_09b_001.png", + "glow_frame": "gdh_01_1_09b_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2750": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_10_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_10_001.png", + "glow_frame": "gdh_01_1_10_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2751": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_10b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_10b_001.png", + "glow_frame": "gdh_01_1_10b_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2752": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_11_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_11_001.png", + "glow_frame": "gdh_01_1_11_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2753": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_11_o_001.png", + "glow_frame": "gdh_01_1_11_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2754": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_11_s_001.png", + "glow_frame": "gdh_01_1_11_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2755": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_11b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_11b_001.png", + "glow_frame": "gdh_01_1_11b_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2756": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_11b_o_001.png", + "glow_frame": "gdh_01_1_11b_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2757": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_11b_s_001.png", + "glow_frame": "gdh_01_1_11b_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2758": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_12_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_12_001.png", + "glow_frame": "gdh_01_1_12_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2759": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_12_o_001.png", + "glow_frame": "gdh_01_1_12_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.15000000596046448, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2760": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_12_s_001.png", + "glow_frame": "gdh_01_1_12_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.15000000596046448, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2761": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_12b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_12b_001.png", + "glow_frame": "gdh_01_1_12b_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2762": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_12b_o_001.png", + "glow_frame": "gdh_01_1_12b_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2763": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_1_12b_s_001.png", + "glow_frame": "gdh_01_1_12b_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2764": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_01_001.png", + "glow_frame": "gdh_01_2_01_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2765": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_01b_001.png", + "glow_frame": "gdh_01_2_01b_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2766": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_02_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_02_001.png", + "glow_frame": "gdh_01_2_02_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2767": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_02b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_02b_001.png", + "glow_frame": "gdh_01_2_02b_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2768": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_03_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_03_001.png", + "glow_frame": "gdh_01_2_03_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2769": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_03b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_03b_001.png", + "glow_frame": "gdh_01_2_03b_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2770": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_04_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_04_001.png", + "glow_frame": "gdh_01_2_04_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2773": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_04b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_04b_001.png", + "glow_frame": "gdh_01_2_04b_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2776": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_05_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_05_001.png", + "glow_frame": "gdh_01_2_05_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2777": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_05_o_001.png", + "glow_frame": "gdh_01_2_05_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2778": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_05_s_001.png", + "glow_frame": "gdh_01_2_05_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2779": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_05b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_05b_001.png", + "glow_frame": "gdh_01_2_05b_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2780": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_05b_o_001.png", + "glow_frame": "gdh_01_2_05b_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.15000000596046448, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2781": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_05b_s_001.png", + "glow_frame": "gdh_01_2_05b_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2782": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_06_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_06_001.png", + "glow_frame": "gdh_01_2_06_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2783": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_06_o_001.png", + "glow_frame": "gdh_01_2_06_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2784": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_06_s_001.png", + "glow_frame": "gdh_01_2_06_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2785": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_06b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_06b_001.png", + "glow_frame": "gdh_01_2_06b_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.10000000149011612, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2786": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_06b_o_001.png", + "glow_frame": "gdh_01_2_06b_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.10000000149011612, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2787": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_06b_s_001.png", + "glow_frame": "gdh_01_2_06b_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2788": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_07_001.png", + "glow_frame": "gdh_01_2_07_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2789": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_07b_001.png", + "glow_frame": "gdh_01_2_07b_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2790": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_08_001.png", + "glow_frame": "gdh_01_2_08_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2791": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_08b_001.png", + "glow_frame": "gdh_01_2_08b_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2792": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_09_001.png", + "glow_frame": "gdh_01_2_09_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2793": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_09b_001.png", + "glow_frame": "gdh_01_2_09b_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2794": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_10_001.png", + "glow_frame": "gdh_01_2_10_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2795": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_10b_001.png", + "glow_frame": "gdh_01_2_10b_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2796": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_11_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_11_001.png", + "glow_frame": "gdh_01_2_11_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.10000000149011612, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2797": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_11_o_001.png", + "glow_frame": "gdh_01_2_11_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2798": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_11_s_001.png", + "glow_frame": "gdh_01_2_11_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2799": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_11b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_11b_001.png", + "glow_frame": "gdh_01_2_11b_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2800": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_11b_o_001.png", + "glow_frame": "gdh_01_2_11b_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2801": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_11b_s_001.png", + "glow_frame": "gdh_01_2_11b_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2802": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_12_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_12_001.png", + "glow_frame": "gdh_01_2_12_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2803": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_12_o_001.png", + "glow_frame": "gdh_01_2_12_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2804": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_12_s_001.png", + "glow_frame": "gdh_01_2_12_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2805": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_12b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_12b_001.png", + "glow_frame": "gdh_01_2_12b_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.0833333358168602, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2806": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_12b_o_001.png", + "glow_frame": "gdh_01_2_12b_o_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2807": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_12b_s_001.png", + "glow_frame": "gdh_01_2_12b_s_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.10000000149011612, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2808": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_01b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_02_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2809": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_09_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_10b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2810": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_12b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2811": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_05b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2812": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_12b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_05b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2813": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_01b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_02_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_09_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_10b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2814": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_01_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_02_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_12_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2815": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_01b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_02b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2816": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_09_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_10_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_11b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_12b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2817": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_09b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_10b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_05b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_06b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2818": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_01_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_02b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_12_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2819": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_09b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_10_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_11b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_12b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_05b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_06b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2820": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_01_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_02_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_09_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_10_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_11b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_12_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2821": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_01b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_02b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_09b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_10b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_06b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2822": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_1_01_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_02b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_09b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_10_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_06b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_11b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_12_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_1_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_1_001.png", + "glow_frame": "gdh_01_1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2823": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_02_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2824": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_09_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_10b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2825": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_11b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_12_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2826": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_06b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2827": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_11b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_12_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_06b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2828": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_02_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_09_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_10b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2829": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_02_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_11b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_12b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2830": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_02b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_05b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_06b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2831": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_09_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_10_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_12_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2832": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_09b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_10b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2833": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_02b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_11b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_12b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_05b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_06b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2834": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_09b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_10_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_12_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_05_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2835": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_02_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_09_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_10_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_12b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2836": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_02b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_09b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_10b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_05b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2837": { + "can_color": true, + "children": [ + { + "frame": "gdh_01_2_01_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_02b_001.png", + "localDy": 14.799999237060547, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_09b_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_10_001.png", + "localDy": -14.800000190734863, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_05b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_06_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_11_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_12b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_01_2_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_01_2_001.png", + "glow_frame": "gdh_01_2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2838": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_1_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_1_001.png", + "glow_frame": "gdh_02_1_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2839": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_2_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_2_001.png", + "glow_frame": "gdh_02_2_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2840": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_3_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_3_001.png", + "glow_frame": "gdh_02_3_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2841": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_4_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_4_001.png", + "glow_frame": "gdh_02_4_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2842": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_1b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_1b_001.png", + "glow_frame": "gdh_02_1b_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2843": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_2b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_2b_001.png", + "glow_frame": "gdh_02_2b_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2844": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_3b_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_3b_001.png", + "glow_frame": "gdh_02_3b_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2845": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_4_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_4b_001.png", + "glow_frame": "gdh_02_4b_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2846": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_1c_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_1c_001.png", + "glow_frame": "gdh_02_1c_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2847": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_2_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_2c_001.png", + "glow_frame": "gdh_02_2c_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2848": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_3_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_3c_001.png", + "glow_frame": "gdh_02_3c_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2849": { + "can_color": true, + "children": [ + { + "frame": "gdh_02_4_2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gdh_02_4c_001.png", + "glow_frame": "gdh_02_4c_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2850": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_5_001.png", + "glow_frame": "gdh_02_5_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2851": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_5b_001.png", + "glow_frame": "gdh_02_5b_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2852": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_01_001.png", + "glow_frame": "gdh_02_o_01_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2853": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_02_001.png", + "glow_frame": "gdh_02_o_02_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2854": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_03_001.png", + "glow_frame": "gdh_02_o_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.18333333730697632, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2855": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_04_001.png", + "glow_frame": "gdh_02_o_04_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2856": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_05_001.png", + "glow_frame": "gdh_02_o_05_glow_001.png", + "gridH": 0.4833333194255829, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2857": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_06_001.png", + "glow_frame": "gdh_02_o_06_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2858": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_07_001.png", + "glow_frame": "gdh_02_o_07_glow_001.png", + "gridH": 0.0833333358168602, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2859": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_08_001.png", + "glow_frame": "gdh_02_o_08_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2860": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_09_001.png", + "glow_frame": "gdh_02_o_09_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2861": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_10_001.png", + "glow_frame": "gdh_02_o_10_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.18333333730697632, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2862": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_11_001.png", + "glow_frame": "gdh_02_o_11_glow_001.png", + "gridH": 0.0833333358168602, + "gridW": 0.0833333358168602, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2863": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_02_o_12_001.png", + "glow_frame": "gdh_02_o_12_glow_001.png", + "gridH": 0.4833333194255829, + "gridW": 0.18333333730697632, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -2, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -2 + }, + "2864": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_37_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_37_002.png", + "glow_frame": "gj22_anim_37_002.png", + "gridH": 0.7666666507720947, + "gridW": 1.4166666269302368, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2865": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_38_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_38_002.png", + "glow_frame": "gj22_anim_38_002.png", + "gridH": 0.7666666507720947, + "gridW": 0.6666666865348816, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2866": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "blockOutline_01_001.png", + "glow_frame": "blockOutline_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2867": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_39_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_36_007.png", + "glow_frame": "gj22_anim_36_007.png", + "gridH": 0.800000011920929, + "gridW": 1.2166666984558105, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2868": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gj22_anim_39b_003.png", + "glow_frame": "gj22_anim_39b_003.png", + "gridH": 0.13333334028720856, + "gridW": 0.4833333194255829, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2869": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_40_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_40_013.png", + "glow_frame": "gj22_anim_40_013.png", + "gridH": 0.15000000596046448, + "gridW": 0.18333333730697632, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2870": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gj22_anim_40b_006.png", + "glow_frame": "gj22_anim_40b_006.png", + "gridH": 0.0833333358168602, + "gridW": 0.15000000596046448, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2871": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_41_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_41_008.png", + "glow_frame": "gj22_anim_41_008.png", + "gridH": 0.3499999940395355, + "gridW": 0.5833333134651184, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2872": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_42_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_42_012.png", + "glow_frame": "gj22_anim_42_012.png", + "gridH": 1, + "gridW": 0.5666666626930237, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2873": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_43_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_43_002.png", + "glow_frame": "gj22_anim_43_002.png", + "gridH": 0.550000011920929, + "gridW": 0.8666666746139526, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2874": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_44_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_44_001.png", + "glow_frame": "gj22_anim_44_glow_001.png", + "gridH": 0.38333332538604736, + "gridW": 0.75, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2875": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_45_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_45_003.png", + "glow_frame": "gj22_anim_45_003.png", + "gridH": 0.06666667014360428, + "gridW": 0.20000000298023224, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2876": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_46_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_46_008.png", + "glow_frame": "gj22_anim_46_008.png", + "gridH": 0.4000000059604645, + "gridW": 1.0166666507720947, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2877": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_47_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_47_009.png", + "glow_frame": "gj22_anim_47_009.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2878": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_48_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_48_002.png", + "glow_frame": "gj22_anim_48_002.png", + "gridH": 0.3166666626930237, + "gridW": 0.3166666626930237, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2879": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_49_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_49_001.png", + "glow_frame": "gj22_anim_49_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 0.3499999940395355, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2880": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_50_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_50_007.png", + "glow_frame": "gj22_anim_50_007.png", + "gridH": 0.10000000149011612, + "gridW": 0.21666666865348816, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2881": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_51_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_51_009.png", + "glow_frame": "gj22_anim_51_009.png", + "gridH": 0.6833333373069763, + "gridW": 0.8833333253860474, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2882": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_52_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_52_007.png", + "glow_frame": "gj22_anim_52_007.png", + "gridH": 0.1666666716337204, + "gridW": 0.25, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2883": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_53_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_53_005.png", + "glow_frame": "gj22_anim_53_005.png", + "gridH": 0.20000000298023224, + "gridW": 1.350000023841858, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2884": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_54_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_54_003.png", + "glow_frame": "gj22_anim_54_003.png", + "gridH": 0.4333333373069763, + "gridW": 0.25, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2885": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_55_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_55_008.png", + "glow_frame": "gj22_anim_55_008.png", + "gridH": 0.20000000298023224, + "gridW": 0.2666666805744171, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2886": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_56_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_56_001.png", + "glow_frame": "gj22_anim_56_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 2.0166666507720947, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2887": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_57_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_57_001.png", + "glow_frame": "gj22_anim_57_glow_001.png", + "gridH": 0.5, + "gridW": 1.9166666269302368, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2888": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_58_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_58_002.png", + "glow_frame": "gj22_anim_58_002.png", + "gridH": 0.4333333373069763, + "gridW": 2, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2889": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_59_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_59_003.png", + "glow_frame": "gj22_anim_59_003.png", + "gridH": 0.4833333194255829, + "gridW": 1.9833333492279053, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2890": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_60_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_60_005.png", + "glow_frame": "gj22_anim_60_005.png", + "gridH": 0.5, + "gridW": 1.9833333492279053, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2891": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_61_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_61_004.png", + "glow_frame": "gj22_anim_61_004.png", + "gridH": 0.5166666507720947, + "gridW": 2, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2892": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_62_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "gj22_anim_62_002.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_62_001.png", + "glow_frame": "gj22_anim_62_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 1.7999999523162842, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2893": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_63_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "gj22_anim_63_002.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_63_001.png", + "glow_frame": "gj22_anim_63_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 0.4000000059604645, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2894": { + "can_color": true, + "children": [ + { + "frame": "gj22_anim_64_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "gj22_anim_64_008.png", + "glow_frame": "gj22_anim_64_008.png", + "gridH": 0.3499999940395355, + "gridW": 2.0333333015441895, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 2, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2895": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "smartBlock01_001.png", + "glow_frame": "smartBlock01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2896": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "smartBlock02_001.png", + "glow_frame": "smartBlock02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2897": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": "smartBlock03_001.png", + "glow_frame": "smartBlock03_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2899": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2900": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2901": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2902": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_15_front_001.png", + "glow_frame": "portal_15_front_glow_001.png", + "gridH": 3, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "2903": { + "can_color": true, + "children": [ + { + "frame": null, + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1004, + "default_detail_color_channel": 1, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "default_z_layer": 5, + "default_z_order": 0 + }, + "2904": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2905": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2907": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2909": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2910": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2911": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2912": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2913": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2914": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2915": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2916": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2917": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2919": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2920": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2921": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2922": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2923": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2924": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2925": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "2926": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "portal_19_front_001.png", + "glow_frame": "portal_19_front_glow_001.png", + "gridH": 2.5166666507720947, + "gridW": 0.7916666865348816, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "portal", + "sub": "gravity_toggle", + "portalParticle": true, + "portalParticleColor": 9699539, + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "2927": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_07_o_001.png", + "glow_frame": "gdh_01_2_07_o_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2928": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_07_s_001.png", + "glow_frame": "gdh_01_2_07_s_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2929": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_07b_o_001.png", + "glow_frame": "gdh_01_2_07b_o_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2930": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_07b_s_001.png", + "glow_frame": "gdh_01_2_07b_s_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2931": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_08_o_001.png", + "glow_frame": "gdh_01_2_08_o_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2932": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_08_s_001.png", + "glow_frame": "gdh_01_2_08_s_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2933": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_08b_o_001.png", + "glow_frame": "gdh_01_2_08b_o_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2934": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_08b_s_001.png", + "glow_frame": "gdh_01_2_08b_s_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2935": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_09_o_001.png", + "glow_frame": "gdh_01_2_09_o_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2936": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_09_s_001.png", + "glow_frame": "gdh_01_2_09_s_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2937": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_09b_o_001.png", + "glow_frame": "gdh_01_2_09b_o_glow_001.png", + "gridH": 0.15000000596046448, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2938": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_09b_s_001.png", + "glow_frame": "gdh_01_2_09b_s_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2939": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_10_o_001.png", + "glow_frame": "gdh_01_2_10_o_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2940": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_10_s_001.png", + "glow_frame": "gdh_01_2_10_s_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2941": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_10b_o_001.png", + "glow_frame": "gdh_01_2_10b_o_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2942": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_01_2_10b_s_001.png", + "glow_frame": "gdh_01_2_10b_s_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.5166666507720947, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": -5 + }, + "2943": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_03_1_b5_001.png", + "glow_frame": "gdh_03_1_b5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2944": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b4_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b4_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_001.png", + "glow_frame": "gdh_03_1_b5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2945": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b1_001.png", + "localDy": 7.5, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b1_001.png", + "localDy": -7.5, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b1_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_001.png", + "glow_frame": "gdh_03_1_b5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2946": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b4_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b1_001.png", + "localDy": -7.5, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b1_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_001.png", + "glow_frame": "gdh_03_1_b5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2947": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b2_001.png", + "localDy": 7.5, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_001.png", + "localDy": -7.5, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_001.png", + "glow_frame": "gdh_03_1_b5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2948": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b2_001.png", + "localDy": 7.5, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_001.png", + "glow_frame": "gdh_03_1_b5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2949": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b2_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_001.png", + "localDy": -7.5, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_001.png", + "glow_frame": "gdh_03_1_b5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2950": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b3_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_001.png", + "glow_frame": "gdh_03_1_b5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2951": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b3_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_001.png", + "glow_frame": "gdh_03_1_b5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2952": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_03_1_b5_s_001.png", + "glow_frame": "gdh_03_1_b5_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2953": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b4_s_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b4_s_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_s_001.png", + "glow_frame": "gdh_03_1_b5_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2954": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b1_s_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b1_s_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b1_s_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_s_001.png", + "glow_frame": "gdh_03_1_b5_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2955": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b4_s_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b1_s_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b1_s_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_s_001.png", + "glow_frame": "gdh_03_1_b5_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2956": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_s_001.png", + "glow_frame": "gdh_03_1_b5_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2957": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": 3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_s_001.png", + "glow_frame": "gdh_03_1_b5_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2958": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": -3.75, + "tint": 65280, + "z": -1 + }, + { + "frame": "gdh_03_1_b2_s_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_s_001.png", + "glow_frame": "gdh_03_1_b5_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2959": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b3_s_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_s_001.png", + "glow_frame": "gdh_03_1_b5_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2960": { + "can_color": true, + "children": [ + { + "frame": "gdh_03_1_b3_s_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_03_1_b5_s_001.png", + "glow_frame": "gdh_03_1_b5_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": -5, + "default_z_layer": -1, + "default_z_order": -5 + }, + "2961": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c1_001.png", + "glow_frame": "gdh_03_1_c1_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2962": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c2_001.png", + "glow_frame": "gdh_03_1_c2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2963": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c3_001.png", + "glow_frame": "gdh_03_1_c3_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2964": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c4_001.png", + "glow_frame": "gdh_03_1_c4_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 0.9666666388511658, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2965": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c5_001.png", + "glow_frame": "gdh_03_1_c5_glow_001.png", + "gridH": 0.05000000074505806, + "gridW": 0.800000011920929, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2966": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c6_001.png", + "glow_frame": "gdh_03_1_c6_glow_001.png", + "gridH": 0.6499999761581421, + "gridW": 0.6499999761581421, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2967": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c7_001.png", + "glow_frame": "gdh_03_1_c7_glow_001.png", + "gridH": 0.7833333611488342, + "gridW": 1.5666667222976685, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2968": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c1_s_001.png", + "glow_frame": "gdh_03_1_c1_s_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2969": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c2_s_001.png", + "glow_frame": "gdh_03_1_c2_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2970": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c3_s_001.png", + "glow_frame": "gdh_03_1_c3_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2971": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c4_s_001.png", + "glow_frame": "gdh_03_1_c4_s_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2972": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_03_1_c5_s_001.png", + "glow_frame": "gdh_03_1_c5_s_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.36666667461395264, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 0 + }, + "2973": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o1_001.png", + "glow_frame": "gdh_03_1_o1_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2974": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o2_001.png", + "glow_frame": "gdh_03_1_o2_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2975": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o3_001.png", + "glow_frame": "gdh_03_1_o3_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2976": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o4_001.png", + "glow_frame": "gdh_03_1_o4_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 0.9833333492279053, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2977": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o5_001.png", + "glow_frame": "gdh_03_1_o5_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2978": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o6_001.png", + "glow_frame": "gdh_03_1_o6_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2979": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o7_001.png", + "glow_frame": "gdh_03_1_o7_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 0.9833333492279053, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2980": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o8_001.png", + "glow_frame": "gdh_03_1_o8_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2981": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o9_001.png", + "glow_frame": "gdh_03_1_o9_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2982": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o10_001.png", + "glow_frame": "gdh_03_1_o10_glow_001.png", + "gridH": 0.9833333492279053, + "gridW": 1.9833333492279053, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2983": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o1_s_001.png", + "glow_frame": "gdh_03_1_o1_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2984": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o2_s_001.png", + "glow_frame": "gdh_03_1_o2_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2985": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o3_s_001.png", + "glow_frame": "gdh_03_1_o3_s_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2986": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "gdh_03_1_o4_s_001.png", + "glow_frame": "gdh_03_1_o4_s_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2987": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_01_001.png", + "glow_frame": "gdh_g_01_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2988": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_02_001.png", + "glow_frame": "gdh_g_01_02_glow_001.png", + "gridH": 0.9166666865348816, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2989": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_03_001.png", + "glow_frame": "gdh_g_01_03_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2990": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_04_001.png", + "glow_frame": "gdh_g_01_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2991": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_05_001.png", + "glow_frame": "gdh_g_01_05_glow_001.png", + "gridH": 1.0166666507720947, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2992": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_06_001.png", + "glow_frame": "gdh_g_01_06_glow_001.png", + "gridH": 1.0166666507720947, + "gridW": 0.5666666626930237, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2993": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_07_001.png", + "glow_frame": "gdh_g_01_07_glow_001.png", + "gridH": 0.7833333611488342, + "gridW": 0.25, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2994": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_08_001.png", + "glow_frame": "gdh_g_01_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2995": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_09_001.png", + "glow_frame": "gdh_g_01_09_glow_001.png", + "gridH": 0.9333333373069763, + "gridW": 0.9833333492279053, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2996": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_10_001.png", + "glow_frame": "gdh_g_01_10_glow_001.png", + "gridH": 1, + "gridW": 2, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2997": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_11_001.png", + "glow_frame": "gdh_g_01_11_glow_001.png", + "gridH": 0.9666666388511658, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2998": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_g_01_12_001.png", + "glow_frame": "gdh_g_01_12_glow_001.png", + "gridH": 0.550000011920929, + "gridW": 0.6000000238418579, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 5 + }, + "2999": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3000": { + "can_color": true, + "children": [ + { + "frame": "d_animWave_01b_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "d_animWave_01b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "d_animWave_01b_001.png", + "glow_frame": "d_animWave_01b_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 1, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3001": { + "can_color": true, + "children": [ + { + "frame": "d_animWave_02b_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "d_animWave_02b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "d_animWave_02b_001.png", + "glow_frame": "d_animWave_02b_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 1, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3002": { + "can_color": true, + "children": [ + { + "frame": "d_animWave_03b_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + }, + { + "frame": "d_animWave_03b_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "d_animWave_03b_001.png", + "glow_frame": "d_animWave_03b_glow_001.png", + "gridH": 0.28333333134651184, + "gridW": 1, + "spritesheet": "FireSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3004": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "spiderRing_001.png", + "glow_frame": "spiderRing_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 12, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "3005": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "spiderBump_001.png", + "glow_frame": "spiderBump_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.949999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 12, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 12 + }, + "3006": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3007": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3008": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3009": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3010": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3011": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3012": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3013": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3014": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3015": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3016": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3017": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3018": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3019": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3020": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3021": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3022": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3023": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3024": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3027": { + "can_color": false, + "children": [ + { + "frame": "teleportRing_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 0, + "default_detail_color_channel": 1, + "frame": "teleportRing_001.png", + "glow_frame": "teleportRing_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": 12, + "default_z_layer": 3, + "default_z_order": 12 + }, + "3029": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3030": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3031": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3032": { + "can_color": false, + "default_base_color_channel": 0, + "frame": "keyframeIcon_001.png", + "glow_frame": "keyframeIcon_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 0.699999988079071, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3033": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3034": { + "can_color": true, + "children": [ + { + "frame": "gdh_spike_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_spike_01_001.png", + "glow_frame": "gdh_spike_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "hazard", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3035": { + "can_color": true, + "children": [ + { + "frame": "gdh_spike_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_spike_02_001.png", + "glow_frame": "gdh_spike_02_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.6666666865348816, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "hazard", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3036": { + "can_color": true, + "children": [ + { + "frame": "gdh_spike_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_spike_03_001.png", + "glow_frame": "gdh_spike_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "hazard", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3037": { + "can_color": true, + "children": [ + { + "frame": "gdh_spike_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_spike_04_001.png", + "glow_frame": "gdh_spike_04_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "hazard", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3038": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_spike_01_color2_001.png", + "glow_frame": "gdh_spike_01_color2_glow_001.png", + "gridH": 0.8500000238418579, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3039": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_spike_02_color2_001.png", + "glow_frame": "gdh_spike_02_color2_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3040": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_spike_03_color2_001.png", + "glow_frame": "gdh_spike_03_color2_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.18333333730697632, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3041": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_spike_04_color2_001.png", + "glow_frame": "gdh_spike_04_color2_glow_001.png", + "gridH": 0.18333333730697632, + "gridW": 0.10000000149011612, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3042": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_spike_01_g_001.png", + "glow_frame": "gdh_spike_01_g_glow_001.png", + "gridH": 0.8166666626930237, + "gridW": 0.800000011920929, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3043": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_spike_02_g_001.png", + "glow_frame": "gdh_spike_02_g_glow_001.png", + "gridH": 0.5166666507720947, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3044": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_spike_03_g_001.png", + "glow_frame": "gdh_spike_03_g_glow_001.png", + "gridH": 0.3499999940395355, + "gridW": 0.3333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3045": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_spike_04_g_001.png", + "glow_frame": "gdh_spike_04_g_glow_001.png", + "gridH": 0.18333333730697632, + "gridW": 0.1666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3046": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_spike_01_g2_001.png", + "glow_frame": "gdh_spike_01_g2_glow_001.png", + "gridH": 0.949999988079071, + "gridW": 0.9333333373069763, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3047": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_spike_02_g2_001.png", + "glow_frame": "gdh_spike_02_g2_glow_001.png", + "gridH": 0.6166666746139526, + "gridW": 0.6166666746139526, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3048": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_spike_03_g2_001.png", + "glow_frame": "gdh_spike_03_g2_glow_001.png", + "gridH": 0.44999998807907104, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3049": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "gdh_spike_04_g2_001.png", + "glow_frame": "gdh_spike_04_g2_glow_001.png", + "gridH": 0.28333333134651184, + "gridW": 0.28333333134651184, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3050": { + "can_color": true, + "children": [ + { + "frame": "gdh_chain_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_chain_01_001.png", + "glow_frame": "gdh_chain_01_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3051": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_chain_01_color2_001.png", + "glow_frame": "gdh_chain_01_color2_glow_001.png", + "gridH": 0.25, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3052": { + "can_color": true, + "children": [ + { + "frame": "gdh_chain_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_chain_02_001.png", + "glow_frame": "gdh_chain_02_glow_001.png", + "gridH": 0.7333333492279053, + "gridW": 0.23333333432674408, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 7, + "default_z_layer": 1, + "default_z_order": 7 + }, + "3053": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_chain_02_color2_001.png", + "glow_frame": "gdh_chain_02_color2_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.13333334028720856, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3054": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_01_001.png", + "glow_frame": "gdh_platform1_01_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3055": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_02_001.png", + "glow_frame": "gdh_platform1_02_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3056": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_03_001.png", + "glow_frame": "gdh_platform1_03_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3057": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_04_001.png", + "glow_frame": "gdh_platform1_04_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3058": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_05_001.png", + "glow_frame": "gdh_platform1_05_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3059": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_06_001.png", + "glow_frame": "gdh_platform1_06_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3060": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_07_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_07_001.png", + "glow_frame": "gdh_platform1_07_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3061": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_08_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_08_001.png", + "glow_frame": "gdh_platform1_08_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3062": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_09_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_09_001.png", + "glow_frame": "gdh_platform1_09_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3063": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_10_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_10_001.png", + "glow_frame": "gdh_platform1_10_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3064": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_11_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_11_001.png", + "glow_frame": "gdh_platform1_11_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3065": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_12_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_12_001.png", + "glow_frame": "gdh_platform1_12_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3066": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_13_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_13_001.png", + "glow_frame": "gdh_platform1_13_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3067": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_01_color2_001.png", + "glow_frame": "gdh_platform1_01_color2_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3068": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_02_color2_001.png", + "glow_frame": "gdh_platform1_02_color2_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3069": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_03_color2_001.png", + "glow_frame": "gdh_platform1_03_color2_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3070": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_04_color2_001.png", + "glow_frame": "gdh_platform1_04_color2_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4166666567325592, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3071": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_05_color2_001.png", + "glow_frame": "gdh_platform1_05_color2_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3072": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_06_color2_001.png", + "glow_frame": "gdh_platform1_06_color2_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.4333333373069763, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3073": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_07_color2_001.png", + "glow_frame": "gdh_platform1_07_color2_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3074": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_08_color2_001.png", + "glow_frame": "gdh_platform1_08_color2_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.4000000059604645, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3075": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_09_color2_001.png", + "glow_frame": "gdh_platform1_09_color2_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3076": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_10_color2_001.png", + "glow_frame": "gdh_platform1_10_color2_glow_001.png", + "gridH": 0.11666666716337204, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3077": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_11_color2_001.png", + "glow_frame": "gdh_platform1_11_color2_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3078": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_12_color2_001.png", + "glow_frame": "gdh_platform1_12_color2_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3079": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_13_color2_001.png", + "glow_frame": "gdh_platform1_13_color2_glow_001.png", + "gridH": 0.5, + "gridW": 0.11666666716337204, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3080": { + "can_color": true, + "children": [ + { + "frame": "gdh_platformArt_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "gdh_platformArt_01_001.png", + "glow_frame": "gdh_platformArt_01_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3081": { + "can_color": true, + "children": [ + { + "frame": "gdh_platformArt_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "gdh_platformArt_02_001.png", + "glow_frame": "gdh_platformArt_02_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3082": { + "can_color": true, + "children": [ + { + "frame": "gdh_platformArt_03_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "gdh_platformArt_03_001.png", + "glow_frame": "gdh_platformArt_03_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3083": { + "can_color": true, + "children": [ + { + "frame": "gdh_platformArt_04_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "gdh_platformArt_04_001.png", + "glow_frame": "gdh_platformArt_04_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3084": { + "can_color": true, + "children": [ + { + "frame": "gdh_platformArt_05_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "gdh_platformArt_05_001.png", + "glow_frame": "gdh_platformArt_05_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3085": { + "can_color": true, + "children": [ + { + "frame": "gdh_platformArt_06_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 2, + "default_detail_color_channel": 1, + "frame": "gdh_platformArt_06_001.png", + "glow_frame": "gdh_platformArt_06_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3086": { + "can_color": true, + "children": [ + { + "frame": "gdh_crystal_01_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_crystal_01_001.png", + "glow_frame": "gdh_crystal_01_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 0.9333333373069763, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3087": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_crystal_01_color2_001.png", + "glow_frame": "gdh_crystal_01_color2_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 1.0333333015441895, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3088": { + "can_color": true, + "children": [ + { + "frame": "gdh_crystal_02_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_crystal_02_001.png", + "glow_frame": "gdh_crystal_02_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.9666666388511658, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3089": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_crystal_02_color2_001.png", + "glow_frame": "gdh_crystal_02_color2_glow_001.png", + "gridH": 0.75, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 8, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 8 + }, + "3090": { + "can_color": true, + "children": [ + { + "frame": "gdh_platform1_14_color_001.png", + "localDy": 0, + "tint": 52224, + "z": -100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1, + "frame": "gdh_platform1_14_001.png", + "glow_frame": "gdh_platform1_14_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 5, + "default_z_layer": 1, + "default_z_order": 5 + }, + "3091": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "gdh_platform1_14_color2_001.png", + "glow_frame": "gdh_platform1_14_color2_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 6, + "default_detail_color_channel": -1, + "default_z_layer": 1, + "default_z_order": 6 + }, + "3092": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3093": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3094": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3095": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3096": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3097": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3101": { + "can_color": true, + "children": [ + { + "frame": "pixelart_601_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_601_001.png", + "glow_frame": "pixelart_601_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3102": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_602_001.png", + "glow_frame": "pixelart_602_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3103": { + "can_color": true, + "children": [ + { + "frame": "pixelart_603_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_603_001.png", + "glow_frame": "pixelart_603_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3104": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_604_001.png", + "glow_frame": "pixelart_604_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3105": { + "can_color": true, + "children": [ + { + "frame": "pixelart_605_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_605_001.png", + "glow_frame": "pixelart_605_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3106": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_606_001.png", + "glow_frame": "pixelart_606_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3107": { + "can_color": true, + "children": [ + { + "frame": "pixelart_607_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_607_001.png", + "glow_frame": "pixelart_607_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3108": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_608_001.png", + "glow_frame": "pixelart_608_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3109": { + "can_color": true, + "children": [ + { + "frame": "pixelart_609_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_609_001.png", + "glow_frame": "pixelart_609_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3110": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_610_001.png", + "glow_frame": "pixelart_610_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3111": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_611_001.png", + "glow_frame": "pixelart_611_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3112": { + "can_color": true, + "children": [ + { + "frame": "pixelart_612_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_612_001.png", + "glow_frame": "pixelart_612_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3113": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_613_001.png", + "glow_frame": "pixelart_613_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3114": { + "can_color": true, + "children": [ + { + "frame": "pixelart_614_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_614_001.png", + "glow_frame": "pixelart_614_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3115": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_615_001.png", + "glow_frame": "pixelart_615_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3116": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_616_001.png", + "glow_frame": "pixelart_616_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3117": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_617_001.png", + "glow_frame": "pixelart_617_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3118": { + "can_color": true, + "children": [ + { + "frame": "pixelart_618_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_618_001.png", + "glow_frame": "pixelart_618_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3119": { + "can_color": true, + "children": [ + { + "frame": "pixelart_619_color_004.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_619_004.png", + "glow_frame": "pixelart_619_004.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3120": { + "can_color": true, + "children": [ + { + "frame": "pixelart_620_color_003.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_620_003.png", + "glow_frame": "pixelart_620_003.png", + "gridH": 0.10000000149011612, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3121": { + "can_color": true, + "children": [ + { + "frame": "pixelart_621_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_621_002.png", + "glow_frame": "pixelart_621_002.png", + "gridH": 0.10000000149011612, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3122": { + "can_color": true, + "children": [ + { + "frame": "pixelart_622_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_622_001.png", + "glow_frame": "pixelart_622_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3123": { + "can_color": true, + "children": [ + { + "frame": "pixelart_623_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_623_001.png", + "glow_frame": "pixelart_623_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3124": { + "can_color": true, + "children": [ + { + "frame": "pixelart_624_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_624_001.png", + "glow_frame": "pixelart_624_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3125": { + "can_color": true, + "children": [ + { + "frame": "pixelart_625_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_625_001.png", + "glow_frame": "pixelart_625_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3126": { + "can_color": true, + "children": [ + { + "frame": "pixelart_626_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_626_001.png", + "glow_frame": "pixelart_626_glow_001.png", + "gridH": 0.5, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3127": { + "can_color": true, + "children": [ + { + "frame": "pixelart_627_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_627_001.png", + "glow_frame": "pixelart_627_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3128": { + "can_color": true, + "children": [ + { + "frame": "pixelart_628_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_628_001.png", + "glow_frame": "pixelart_628_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3129": { + "can_color": true, + "children": [ + { + "frame": "pixelart_629_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_629_001.png", + "glow_frame": "pixelart_629_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3130": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_630_001.png", + "glow_frame": "pixelart_630_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3131": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_631_001.png", + "glow_frame": "pixelart_631_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3132": { + "can_color": true, + "children": [ + { + "frame": "pixelart_632_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_632_001.png", + "glow_frame": "pixelart_632_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3133": { + "can_color": true, + "children": [ + { + "frame": "pixelart_633_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_633_001.png", + "glow_frame": "pixelart_633_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3134": { + "can_color": true, + "children": [ + { + "frame": "pixelart_634_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_634_001.png", + "glow_frame": "pixelart_634_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3135": { + "can_color": true, + "children": [ + { + "frame": "pixelart_635_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_635_001.png", + "glow_frame": "pixelart_635_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3136": { + "can_color": true, + "children": [ + { + "frame": "pixelart_636_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_636_001.png", + "glow_frame": "pixelart_636_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3137": { + "can_color": true, + "children": [ + { + "frame": "pixelart_637_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_637_001.png", + "glow_frame": "pixelart_637_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3138": { + "can_color": true, + "children": [ + { + "frame": "pixelart_638_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_638_001.png", + "glow_frame": "pixelart_638_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3139": { + "can_color": true, + "children": [ + { + "frame": "pixelart_639_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_639_001.png", + "glow_frame": "pixelart_639_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3140": { + "can_color": true, + "children": [ + { + "frame": "pixelart_640_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_640_001.png", + "glow_frame": "pixelart_640_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3141": { + "can_color": true, + "children": [ + { + "frame": "pixelart_641_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_641_001.png", + "glow_frame": "pixelart_641_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3142": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_642_001.png", + "glow_frame": "pixelart_642_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3143": { + "can_color": true, + "children": [ + { + "frame": "pixelart_643_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_643_001.png", + "glow_frame": "pixelart_643_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3144": { + "can_color": true, + "children": [ + { + "frame": "pixelart_644_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_644_001.png", + "glow_frame": "pixelart_644_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3145": { + "can_color": true, + "children": [ + { + "frame": "pixelart_645_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_645_001.png", + "glow_frame": "pixelart_645_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3146": { + "can_color": true, + "children": [ + { + "frame": "pixelart_646_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_646_001.png", + "glow_frame": "pixelart_646_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3147": { + "can_color": true, + "children": [ + { + "frame": "pixelart_647_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_647_001.png", + "glow_frame": "pixelart_647_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3148": { + "can_color": true, + "children": [ + { + "frame": "pixelart_648_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_648_001.png", + "glow_frame": "pixelart_648_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3149": { + "can_color": true, + "children": [ + { + "frame": "pixelart_649_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_649_001.png", + "glow_frame": "pixelart_649_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3150": { + "can_color": true, + "children": [ + { + "frame": "pixelart_650_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_650_001.png", + "glow_frame": "pixelart_650_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3151": { + "can_color": true, + "children": [ + { + "frame": "pixelart_651_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_651_001.png", + "glow_frame": "pixelart_651_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3152": { + "can_color": true, + "children": [ + { + "frame": "pixelart_652_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_652_001.png", + "glow_frame": "pixelart_652_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3153": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_653_001.png", + "glow_frame": "pixelart_653_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3154": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_654_001.png", + "glow_frame": "pixelart_654_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3155": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_655_001.png", + "glow_frame": "pixelart_655_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3156": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_656_001.png", + "glow_frame": "pixelart_656_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3157": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_657_001.png", + "glow_frame": "pixelart_657_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3158": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_658_001.png", + "glow_frame": "pixelart_658_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3159": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_659_001.png", + "glow_frame": "pixelart_659_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3160": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_660_001.png", + "glow_frame": "pixelart_660_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3161": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_661_001.png", + "glow_frame": "pixelart_661_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3162": { + "can_color": true, + "children": [ + { + "frame": "pixelart_662_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_662_001.png", + "glow_frame": "pixelart_662_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3163": { + "can_color": true, + "children": [ + { + "frame": "pixelart_663_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_663_001.png", + "glow_frame": "pixelart_663_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3164": { + "can_color": true, + "children": [ + { + "frame": "pixelart_664_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_664_001.png", + "glow_frame": "pixelart_664_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3165": { + "can_color": true, + "children": [ + { + "frame": "pixelart_665_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_665_001.png", + "glow_frame": "pixelart_665_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3166": { + "can_color": true, + "children": [ + { + "frame": "pixelart_666_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_666_001.png", + "glow_frame": "pixelart_666_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3167": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_667_001.png", + "glow_frame": "pixelart_667_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3168": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_668_001.png", + "glow_frame": "pixelart_668_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3169": { + "can_color": true, + "children": [ + { + "frame": "pixelart_669_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_669_001.png", + "glow_frame": "pixelart_669_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3170": { + "can_color": true, + "children": [ + { + "frame": "pixelart_670_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_670_001.png", + "glow_frame": "pixelart_670_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3171": { + "can_color": true, + "children": [ + { + "frame": "pixelart_671_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_671_001.png", + "glow_frame": "pixelart_671_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3172": { + "can_color": true, + "children": [ + { + "frame": "pixelart_672_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_672_001.png", + "glow_frame": "pixelart_672_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3173": { + "can_color": true, + "children": [ + { + "frame": "pixelart_673_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_673_001.png", + "glow_frame": "pixelart_673_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3174": { + "can_color": true, + "children": [ + { + "frame": "pixelart_674_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_674_001.png", + "glow_frame": "pixelart_674_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3175": { + "can_color": true, + "children": [ + { + "frame": "pixelart_675_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_675_001.png", + "glow_frame": "pixelart_675_glow_001.png", + "gridH": 0.5, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3176": { + "can_color": true, + "children": [ + { + "frame": "pixelart_676_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_676_001.png", + "glow_frame": "pixelart_676_glow_001.png", + "gridH": 0.5, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3177": { + "can_color": true, + "children": [ + { + "frame": "pixelart_677_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_677_001.png", + "glow_frame": "pixelart_677_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3178": { + "can_color": true, + "children": [ + { + "frame": "pixelart_678_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_678_001.png", + "glow_frame": "pixelart_678_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3179": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_679_001.png", + "glow_frame": "pixelart_679_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3180": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_680_001.png", + "glow_frame": "pixelart_680_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3181": { + "can_color": true, + "children": [ + { + "frame": "pixelart_681_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_681_001.png", + "glow_frame": "pixelart_681_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3182": { + "can_color": true, + "children": [ + { + "frame": "pixelart_682_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_682_001.png", + "glow_frame": "pixelart_682_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3183": { + "can_color": true, + "children": [ + { + "frame": "pixelart_683_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_683_001.png", + "glow_frame": "pixelart_683_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3184": { + "can_color": true, + "children": [ + { + "frame": "pixelart_684_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_684_001.png", + "glow_frame": "pixelart_684_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3185": { + "can_color": true, + "children": [ + { + "frame": "pixelart_685_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_685_001.png", + "glow_frame": "pixelart_685_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3186": { + "can_color": true, + "children": [ + { + "frame": "pixelart_686_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_686_001.png", + "glow_frame": "pixelart_686_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3187": { + "can_color": true, + "children": [ + { + "frame": "pixelart_687_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_687_001.png", + "glow_frame": "pixelart_687_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3188": { + "can_color": true, + "children": [ + { + "frame": "pixelart_688_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_688_001.png", + "glow_frame": "pixelart_688_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3189": { + "can_color": true, + "children": [ + { + "frame": "pixelart_689_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_689_001.png", + "glow_frame": "pixelart_689_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3190": { + "can_color": true, + "children": [ + { + "frame": "pixelart_690_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_690_001.png", + "glow_frame": "pixelart_690_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3191": { + "can_color": true, + "children": [ + { + "frame": "pixelart_691_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_691_001.png", + "glow_frame": "pixelart_691_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3192": { + "can_color": true, + "children": [ + { + "frame": "pixelart_692_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_692_001.png", + "glow_frame": "pixelart_692_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3193": { + "can_color": true, + "children": [ + { + "frame": "pixelart_693_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_693_001.png", + "glow_frame": "pixelart_693_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3194": { + "can_color": true, + "children": [ + { + "frame": "pixelart_694_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_694_001.png", + "glow_frame": "pixelart_694_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3195": { + "can_color": true, + "children": [ + { + "frame": "pixelart_695_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_695_001.png", + "glow_frame": "pixelart_695_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3196": { + "can_color": true, + "children": [ + { + "frame": "pixelart_696_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_696_001.png", + "glow_frame": "pixelart_696_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3197": { + "can_color": true, + "children": [ + { + "frame": "pixelart_697_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_697_001.png", + "glow_frame": "pixelart_697_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3198": { + "can_color": true, + "children": [ + { + "frame": "pixelart_698_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_698_001.png", + "glow_frame": "pixelart_698_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3199": { + "can_color": true, + "children": [ + { + "frame": "pixelart_699_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_699_001.png", + "glow_frame": "pixelart_699_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3200": { + "can_color": true, + "children": [ + { + "frame": "pixelart_700_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_700_001.png", + "glow_frame": "pixelart_700_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3201": { + "can_color": true, + "children": [ + { + "frame": "pixelart_701_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_701_001.png", + "glow_frame": "pixelart_701_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3202": { + "can_color": true, + "children": [ + { + "frame": "pixelart_702_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_702_001.png", + "glow_frame": "pixelart_702_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3203": { + "can_color": true, + "children": [ + { + "frame": "pixelart_703_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_703_001.png", + "glow_frame": "pixelart_703_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3204": { + "can_color": true, + "children": [ + { + "frame": "pixelart_704_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_704_001.png", + "glow_frame": "pixelart_704_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3205": { + "can_color": true, + "children": [ + { + "frame": "pixelart_705_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_705_001.png", + "glow_frame": "pixelart_705_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3206": { + "can_color": true, + "children": [ + { + "frame": "pixelart_706_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_706_001.png", + "glow_frame": "pixelart_706_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3207": { + "can_color": true, + "children": [ + { + "frame": "pixelart_707_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_707_001.png", + "glow_frame": "pixelart_707_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3208": { + "can_color": true, + "children": [ + { + "frame": "pixelart_708_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_708_001.png", + "glow_frame": "pixelart_708_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3209": { + "can_color": true, + "children": [ + { + "frame": "pixelart_709_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_709_001.png", + "glow_frame": "pixelart_709_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3210": { + "can_color": true, + "children": [ + { + "frame": "pixelart_710_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_710_001.png", + "glow_frame": "pixelart_710_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3211": { + "can_color": true, + "children": [ + { + "frame": "pixelart_711_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_711_001.png", + "glow_frame": "pixelart_711_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3212": { + "can_color": true, + "children": [ + { + "frame": "pixelart_712_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_712_001.png", + "glow_frame": "pixelart_712_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3213": { + "can_color": true, + "children": [ + { + "frame": "pixelart_713_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_713_001.png", + "glow_frame": "pixelart_713_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3214": { + "can_color": true, + "children": [ + { + "frame": "pixelart_714_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_714_001.png", + "glow_frame": "pixelart_714_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3215": { + "can_color": true, + "children": [ + { + "frame": "pixelart_715_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_715_001.png", + "glow_frame": "pixelart_715_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3216": { + "can_color": true, + "children": [ + { + "frame": "pixelart_716_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_716_001.png", + "glow_frame": "pixelart_716_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3217": { + "can_color": true, + "children": [ + { + "frame": "pixelart_717_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_717_001.png", + "glow_frame": "pixelart_717_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3218": { + "can_color": true, + "children": [ + { + "frame": "pixelart_718_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_718_001.png", + "glow_frame": "pixelart_718_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3219": { + "can_color": true, + "children": [ + { + "frame": "pixelart_719_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_719_002.png", + "glow_frame": "pixelart_719_002.png", + "gridH": 0.23333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3220": { + "can_color": true, + "children": [ + { + "frame": "pixelart_720_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_720_001.png", + "glow_frame": "pixelart_720_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3221": { + "can_color": true, + "children": [ + { + "frame": "pixelart_721_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_721_001.png", + "glow_frame": "pixelart_721_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3222": { + "can_color": true, + "children": [ + { + "frame": "pixelart_722_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_722_001.png", + "glow_frame": "pixelart_722_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3223": { + "can_color": true, + "children": [ + { + "frame": "pixelart_723_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_723_001.png", + "glow_frame": "pixelart_723_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3224": { + "can_color": true, + "children": [ + { + "frame": "pixelart_724_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_724_001.png", + "glow_frame": "pixelart_724_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3225": { + "can_color": true, + "children": [ + { + "frame": "pixelart_725_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_725_001.png", + "glow_frame": "pixelart_725_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3226": { + "can_color": true, + "children": [ + { + "frame": "pixelart_726_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_726_001.png", + "glow_frame": "pixelart_726_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3227": { + "can_color": true, + "children": [ + { + "frame": "pixelart_727_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_727_001.png", + "glow_frame": "pixelart_727_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3228": { + "can_color": true, + "children": [ + { + "frame": "pixelart_728_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_728_001.png", + "glow_frame": "pixelart_728_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3229": { + "can_color": true, + "children": [ + { + "frame": "pixelart_729_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_729_001.png", + "glow_frame": "pixelart_729_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3230": { + "can_color": true, + "children": [ + { + "frame": "pixelart_730_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_730_001.png", + "glow_frame": "pixelart_730_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3231": { + "can_color": true, + "children": [ + { + "frame": "pixelart_731_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_731_001.png", + "glow_frame": "pixelart_731_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3232": { + "can_color": true, + "children": [ + { + "frame": "pixelart_732_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_732_001.png", + "glow_frame": "pixelart_732_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3233": { + "can_color": true, + "children": [ + { + "frame": "pixelart_733_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_732_001.png", + "glow_frame": "pixelart_732_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3234": { + "can_color": true, + "children": [ + { + "frame": "pixelart_734_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_734_001.png", + "glow_frame": "pixelart_734_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3235": { + "can_color": true, + "children": [ + { + "frame": "pixelart_735_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_735_001.png", + "glow_frame": "pixelart_735_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3236": { + "can_color": true, + "children": [ + { + "frame": "pixelart_736_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_736_001.png", + "glow_frame": "pixelart_736_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3237": { + "can_color": true, + "children": [ + { + "frame": "pixelart_737_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_737_001.png", + "glow_frame": "pixelart_737_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3238": { + "can_color": true, + "children": [ + { + "frame": "pixelart_738_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_738_001.png", + "glow_frame": "pixelart_738_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3239": { + "can_color": true, + "children": [ + { + "frame": "pixelart_739_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_739_001.png", + "glow_frame": "pixelart_739_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3240": { + "can_color": true, + "children": [ + { + "frame": "pixelart_740_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_740_001.png", + "glow_frame": "pixelart_740_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3241": { + "can_color": true, + "children": [ + { + "frame": "pixelart_741_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_741_001.png", + "glow_frame": "pixelart_741_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3242": { + "can_color": true, + "children": [ + { + "frame": "pixelart_742_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_742_001.png", + "glow_frame": "pixelart_742_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3243": { + "can_color": true, + "children": [ + { + "frame": "pixelart_743_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_743_001.png", + "glow_frame": "pixelart_743_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3244": { + "can_color": true, + "children": [ + { + "frame": "pixelart_744_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_744_001.png", + "glow_frame": "pixelart_744_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3245": { + "can_color": true, + "children": [ + { + "frame": "pixelart_745_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_745_001.png", + "glow_frame": "pixelart_745_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3246": { + "can_color": true, + "children": [ + { + "frame": "pixelart_746_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_746_001.png", + "glow_frame": "pixelart_746_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3247": { + "can_color": true, + "children": [ + { + "frame": "pixelart_747_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_747_001.png", + "glow_frame": "pixelart_747_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3248": { + "can_color": true, + "children": [ + { + "frame": "pixelart_748_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_748_001.png", + "glow_frame": "pixelart_748_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3249": { + "can_color": true, + "children": [ + { + "frame": "pixelart_749_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_749_001.png", + "glow_frame": "pixelart_749_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3250": { + "can_color": true, + "children": [ + { + "frame": "pixelart_750_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_750_001.png", + "glow_frame": "pixelart_750_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3251": { + "can_color": true, + "children": [ + { + "frame": "pixelart_751_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_751_001.png", + "glow_frame": "pixelart_751_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3252": { + "can_color": true, + "children": [ + { + "frame": "pixelart_752_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_752_001.png", + "glow_frame": "pixelart_752_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3253": { + "can_color": true, + "children": [ + { + "frame": "pixelart_753_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_753_001.png", + "glow_frame": "pixelart_753_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3254": { + "can_color": true, + "children": [ + { + "frame": "pixelart_754_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_754_001.png", + "glow_frame": "pixelart_754_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3255": { + "can_color": true, + "children": [ + { + "frame": "pixelart_755_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_755_001.png", + "glow_frame": "pixelart_755_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3256": { + "can_color": true, + "children": [ + { + "frame": "pixelart_756_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_756_001.png", + "glow_frame": "pixelart_756_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3257": { + "can_color": true, + "children": [ + { + "frame": "pixelart_757_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_757_001.png", + "glow_frame": "pixelart_757_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3258": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1139_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3259": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1126_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3260": { + "can_color": true, + "children": [ + { + "frame": "pixelart_760_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_760_001.png", + "glow_frame": "pixelart_760_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3261": { + "can_color": true, + "children": [ + { + "frame": "pixelart_761_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_124_001.png", + "glow_frame": "pixelart_124_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3262": { + "can_color": true, + "children": [ + { + "frame": "pixelart_762_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_124_001.png", + "glow_frame": "pixelart_124_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3263": { + "can_color": true, + "children": [ + { + "frame": "pixelart_763_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_763_001.png", + "glow_frame": "pixelart_763_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3264": { + "can_color": true, + "children": [ + { + "frame": "pixelart_764_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_764_001.png", + "glow_frame": "pixelart_764_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3265": { + "can_color": true, + "children": [ + { + "frame": "pixelart_765_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_765_001.png", + "glow_frame": "pixelart_765_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3266": { + "can_color": true, + "children": [ + { + "frame": "pixelart_766_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_766_001.png", + "glow_frame": "pixelart_766_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3267": { + "can_color": true, + "children": [ + { + "frame": "pixelart_767_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_767_001.png", + "glow_frame": "pixelart_767_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3268": { + "can_color": true, + "children": [ + { + "frame": "pixelart_768_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_124_001.png", + "glow_frame": "pixelart_124_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3269": { + "can_color": true, + "children": [ + { + "frame": "pixelart_769_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_124_001.png", + "glow_frame": "pixelart_124_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3270": { + "can_color": true, + "children": [ + { + "frame": "pixelart_770_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_770_001.png", + "glow_frame": "pixelart_770_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3271": { + "can_color": true, + "children": [ + { + "frame": "pixelart_771_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_124_001.png", + "glow_frame": "pixelart_124_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3272": { + "can_color": true, + "children": [ + { + "frame": "pixelart_772_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_770_001.png", + "glow_frame": "pixelart_770_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3273": { + "can_color": true, + "children": [ + { + "frame": "pixelart_773_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_773_001.png", + "glow_frame": "pixelart_773_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3274": { + "can_color": true, + "children": [ + { + "frame": "pixelart_774_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_774_001.png", + "glow_frame": "pixelart_774_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3275": { + "can_color": true, + "children": [ + { + "frame": "pixelart_775_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_775_001.png", + "glow_frame": "pixelart_775_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3276": { + "can_color": true, + "children": [ + { + "frame": "pixelart_776_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_776_001.png", + "glow_frame": "pixelart_776_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3277": { + "can_color": true, + "children": [ + { + "frame": "pixelart_777_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_777_001.png", + "glow_frame": "pixelart_777_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3278": { + "can_color": true, + "children": [ + { + "frame": "pixelart_778_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_778_001.png", + "glow_frame": "pixelart_778_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3279": { + "can_color": true, + "children": [ + { + "frame": "pixelart_779_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_779_001.png", + "glow_frame": "pixelart_779_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3280": { + "can_color": true, + "children": [ + { + "frame": "pixelart_780_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_780_001.png", + "glow_frame": "pixelart_780_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3281": { + "can_color": true, + "children": [ + { + "frame": "pixelart_781_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_781_001.png", + "glow_frame": "pixelart_781_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3282": { + "can_color": true, + "children": [ + { + "frame": "pixelart_782_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_782_001.png", + "glow_frame": "pixelart_782_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3283": { + "can_color": true, + "children": [ + { + "frame": "pixelart_783_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_783_001.png", + "glow_frame": "pixelart_783_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3284": { + "can_color": true, + "children": [ + { + "frame": "pixelart_784_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_784_001.png", + "glow_frame": "pixelart_784_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3285": { + "can_color": true, + "children": [ + { + "frame": "pixelart_785_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_785_001.png", + "glow_frame": "pixelart_785_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3286": { + "can_color": true, + "children": [ + { + "frame": "pixelart_786_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_786_001.png", + "glow_frame": "pixelart_786_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3287": { + "can_color": true, + "children": [ + { + "frame": "pixelart_787_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_787_001.png", + "glow_frame": "pixelart_787_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3288": { + "can_color": true, + "children": [ + { + "frame": "pixelart_788_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_788_001.png", + "glow_frame": "pixelart_788_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3289": { + "can_color": true, + "children": [ + { + "frame": "pixelart_789_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_789_001.png", + "glow_frame": "pixelart_789_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3290": { + "can_color": true, + "children": [ + { + "frame": "pixelart_790_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_790_001.png", + "glow_frame": "pixelart_790_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3291": { + "can_color": true, + "children": [ + { + "frame": "pixelart_791_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_790_001.png", + "glow_frame": "pixelart_790_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3292": { + "can_color": true, + "children": [ + { + "frame": "pixelart_792_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_792_001.png", + "glow_frame": "pixelart_792_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3293": { + "can_color": true, + "children": [ + { + "frame": "pixelart_793_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_793_001.png", + "glow_frame": "pixelart_793_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3294": { + "can_color": true, + "children": [ + { + "frame": "pixelart_794_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_794_001.png", + "glow_frame": "pixelart_794_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3295": { + "can_color": true, + "children": [ + { + "frame": "pixelart_795_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_795_001.png", + "glow_frame": "pixelart_795_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3296": { + "can_color": true, + "children": [ + { + "frame": "pixelart_796_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_796_001.png", + "glow_frame": "pixelart_796_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3297": { + "can_color": true, + "children": [ + { + "frame": "pixelart_797_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_797_001.png", + "glow_frame": "pixelart_797_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3298": { + "can_color": true, + "children": [ + { + "frame": "pixelart_798_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_798_001.png", + "glow_frame": "pixelart_798_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3299": { + "can_color": true, + "children": [ + { + "frame": "pixelart_799_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_799_001.png", + "glow_frame": "pixelart_799_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3300": { + "can_color": true, + "children": [ + { + "frame": "pixelart_800_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_800_001.png", + "glow_frame": "pixelart_800_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3301": { + "can_color": true, + "children": [ + { + "frame": "pixelart_801_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_801_001.png", + "glow_frame": "pixelart_801_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3302": { + "can_color": true, + "children": [ + { + "frame": "pixelart_802_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_802_001.png", + "glow_frame": "pixelart_802_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3303": { + "can_color": true, + "children": [ + { + "frame": "pixelart_803_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_803_002.png", + "glow_frame": "pixelart_803_002.png", + "gridH": 0.23333333432674408, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3304": { + "can_color": true, + "children": [ + { + "frame": "pixelart_804_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_804_002.png", + "glow_frame": "pixelart_804_002.png", + "gridH": 0.30000001192092896, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3305": { + "can_color": true, + "children": [ + { + "frame": "pixelart_805_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_805_001.png", + "glow_frame": "pixelart_805_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3306": { + "can_color": true, + "children": [ + { + "frame": "pixelart_806_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_806_001.png", + "glow_frame": "pixelart_806_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3307": { + "can_color": true, + "children": [ + { + "frame": "pixelart_807_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_806_001.png", + "glow_frame": "pixelart_806_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3308": { + "can_color": true, + "children": [ + { + "frame": "pixelart_808_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_808_001.png", + "glow_frame": "pixelart_808_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3309": { + "can_color": true, + "children": [ + { + "frame": "pixelart_809_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_809_001.png", + "glow_frame": "pixelart_809_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3310": { + "can_color": true, + "children": [ + { + "frame": "pixelart_810_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_810_001.png", + "glow_frame": "pixelart_810_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3311": { + "can_color": true, + "children": [ + { + "frame": "pixelart_811_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_811_001.png", + "glow_frame": "pixelart_811_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3312": { + "can_color": true, + "children": [ + { + "frame": "pixelart_812_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_812_001.png", + "glow_frame": "pixelart_812_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3313": { + "can_color": true, + "children": [ + { + "frame": "pixelart_813_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_813_001.png", + "glow_frame": "pixelart_813_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3314": { + "can_color": true, + "children": [ + { + "frame": "pixelart_814_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_814_001.png", + "glow_frame": "pixelart_814_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3315": { + "can_color": true, + "children": [ + { + "frame": "pixelart_815_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_815_001.png", + "glow_frame": "pixelart_815_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3316": { + "can_color": true, + "children": [ + { + "frame": "pixelart_816_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_816_001.png", + "glow_frame": "pixelart_816_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3317": { + "can_color": true, + "children": [ + { + "frame": "pixelart_817_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_817_001.png", + "glow_frame": "pixelart_817_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3318": { + "can_color": true, + "children": [ + { + "frame": "pixelart_818_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_818_001.png", + "glow_frame": "pixelart_818_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3319": { + "can_color": true, + "children": [ + { + "frame": "pixelart_819_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_819_001.png", + "glow_frame": "pixelart_819_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3320": { + "can_color": true, + "children": [ + { + "frame": "pixelart_820_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_820_001.png", + "glow_frame": "pixelart_820_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3321": { + "can_color": true, + "children": [ + { + "frame": "pixelart_821_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_821_001.png", + "glow_frame": "pixelart_821_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3322": { + "can_color": true, + "children": [ + { + "frame": "pixelart_822_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_822_001.png", + "glow_frame": "pixelart_822_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3323": { + "can_color": true, + "children": [ + { + "frame": "pixelart_823_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_823_001.png", + "glow_frame": "pixelart_823_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3324": { + "can_color": true, + "children": [ + { + "frame": "pixelart_824_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_824_001.png", + "glow_frame": "pixelart_824_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3325": { + "can_color": true, + "children": [ + { + "frame": "pixelart_825_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_825_001.png", + "glow_frame": "pixelart_825_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3326": { + "can_color": true, + "children": [ + { + "frame": "pixelart_826_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_826_001.png", + "glow_frame": "pixelart_826_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3327": { + "can_color": true, + "children": [ + { + "frame": "pixelart_827_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_827_001.png", + "glow_frame": "pixelart_827_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3328": { + "can_color": true, + "children": [ + { + "frame": "pixelart_828_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_828_001.png", + "glow_frame": "pixelart_828_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3329": { + "can_color": true, + "children": [ + { + "frame": "pixelart_829_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_829_001.png", + "glow_frame": "pixelart_829_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3330": { + "can_color": true, + "children": [ + { + "frame": "pixelart_830_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_830_001.png", + "glow_frame": "pixelart_830_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3331": { + "can_color": true, + "children": [ + { + "frame": "pixelart_831_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_831_001.png", + "glow_frame": "pixelart_831_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3332": { + "can_color": true, + "children": [ + { + "frame": "pixelart_832_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_832_001.png", + "glow_frame": "pixelart_832_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3333": { + "can_color": true, + "children": [ + { + "frame": "pixelart_833_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_833_001.png", + "glow_frame": "pixelart_833_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3334": { + "can_color": true, + "children": [ + { + "frame": "pixelart_834_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_834_001.png", + "glow_frame": "pixelart_834_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3335": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_835_001.png", + "glow_frame": "pixelart_835_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3336": { + "can_color": true, + "children": [ + { + "frame": "pixelart_836_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_836_001.png", + "glow_frame": "pixelart_836_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3337": { + "can_color": true, + "children": [ + { + "frame": "pixelart_837_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_837_001.png", + "glow_frame": "pixelart_837_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3338": { + "can_color": true, + "children": [ + { + "frame": "pixelart_838_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_838_001.png", + "glow_frame": "pixelart_838_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3339": { + "can_color": true, + "children": [ + { + "frame": "pixelart_839_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_839_001.png", + "glow_frame": "pixelart_839_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3340": { + "can_color": true, + "children": [ + { + "frame": "pixelart_840_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_840_001.png", + "glow_frame": "pixelart_840_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3341": { + "can_color": true, + "children": [ + { + "frame": "pixelart_841_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_841_001.png", + "glow_frame": "pixelart_841_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3342": { + "can_color": true, + "children": [ + { + "frame": "pixelart_842_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_842_001.png", + "glow_frame": "pixelart_842_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3343": { + "can_color": true, + "children": [ + { + "frame": "pixelart_843_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_843_001.png", + "glow_frame": "pixelart_843_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3344": { + "can_color": true, + "children": [ + { + "frame": "pixelart_844_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_844_001.png", + "glow_frame": "pixelart_844_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3345": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1139_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3346": { + "can_color": true, + "children": [ + { + "frame": "pixelart_846_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_846_001.png", + "glow_frame": "pixelart_846_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3347": { + "can_color": true, + "children": [ + { + "frame": "pixelart_847_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_847_001.png", + "glow_frame": "pixelart_847_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3348": { + "can_color": true, + "children": [ + { + "frame": "pixelart_848_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_848_001.png", + "glow_frame": "pixelart_848_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3349": { + "can_color": true, + "children": [ + { + "frame": "pixelart_849_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_849_001.png", + "glow_frame": "pixelart_849_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3350": { + "can_color": true, + "children": [ + { + "frame": "pixelart_850_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_850_001.png", + "glow_frame": "pixelart_850_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3351": { + "can_color": true, + "children": [ + { + "frame": "pixelart_851_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_851_001.png", + "glow_frame": "pixelart_851_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3352": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_852_001.png", + "glow_frame": "pixelart_852_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3353": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_853_001.png", + "glow_frame": "pixelart_853_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3354": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_854_001.png", + "glow_frame": "pixelart_854_glow_001.png", + "gridH": 0.5, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3355": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1206_color_001.png", + "glow_frame": "pixelart_1206_color_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3356": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_856_001.png", + "glow_frame": "pixelart_856_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3357": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_857_001.png", + "glow_frame": "pixelart_857_glow_001.png", + "gridH": 0.5, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3358": { + "can_color": true, + "children": [ + { + "frame": "pixelart_858_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_858_001.png", + "glow_frame": "pixelart_858_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3359": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_859_001.png", + "glow_frame": "pixelart_859_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3360": { + "can_color": true, + "children": [ + { + "frame": "pixelart_860_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_860_001.png", + "glow_frame": "pixelart_860_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3361": { + "can_color": true, + "children": [ + { + "frame": "pixelart_861_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_861_001.png", + "glow_frame": "pixelart_861_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3362": { + "can_color": true, + "children": [ + { + "frame": "pixelart_862_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_862_001.png", + "glow_frame": "pixelart_862_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3363": { + "can_color": true, + "children": [ + { + "frame": "pixelart_863_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_863_001.png", + "glow_frame": "pixelart_863_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3364": { + "can_color": true, + "children": [ + { + "frame": "pixelart_864_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3365": { + "can_color": true, + "children": [ + { + "frame": "pixelart_865_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_865_001.png", + "glow_frame": "pixelart_865_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3366": { + "can_color": true, + "children": [ + { + "frame": "pixelart_866_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_866_001.png", + "glow_frame": "pixelart_866_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3367": { + "can_color": true, + "children": [ + { + "frame": "pixelart_867_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_867_001.png", + "glow_frame": "pixelart_867_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3368": { + "can_color": true, + "children": [ + { + "frame": "pixelart_868_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_868_001.png", + "glow_frame": "pixelart_868_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3369": { + "can_color": true, + "children": [ + { + "frame": "pixelart_869_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_869_001.png", + "glow_frame": "pixelart_869_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3370": { + "can_color": true, + "children": [ + { + "frame": "pixelart_870_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_869_001.png", + "glow_frame": "pixelart_869_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3371": { + "can_color": true, + "children": [ + { + "frame": "pixelart_871_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_871_001.png", + "glow_frame": "pixelart_871_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3372": { + "can_color": true, + "children": [ + { + "frame": "pixelart_872_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_872_001.png", + "glow_frame": "pixelart_872_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3373": { + "can_color": true, + "children": [ + { + "frame": "pixelart_873_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_873_001.png", + "glow_frame": "pixelart_873_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3374": { + "can_color": true, + "children": [ + { + "frame": "pixelart_874_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_874_001.png", + "glow_frame": "pixelart_874_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3375": { + "can_color": true, + "children": [ + { + "frame": "pixelart_875_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_875_001.png", + "glow_frame": "pixelart_875_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3376": { + "can_color": true, + "children": [ + { + "frame": "pixelart_876_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_876_001.png", + "glow_frame": "pixelart_876_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3377": { + "can_color": true, + "children": [ + { + "frame": "pixelart_877_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_877_001.png", + "glow_frame": "pixelart_877_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3378": { + "can_color": true, + "children": [ + { + "frame": "pixelart_878_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_878_001.png", + "glow_frame": "pixelart_878_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3379": { + "can_color": true, + "children": [ + { + "frame": "pixelart_879_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_879_001.png", + "glow_frame": "pixelart_879_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3380": { + "can_color": true, + "children": [ + { + "frame": "pixelart_880_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_880_001.png", + "glow_frame": "pixelart_880_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3381": { + "can_color": true, + "children": [ + { + "frame": "pixelart_881_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_881_001.png", + "glow_frame": "pixelart_881_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3382": { + "can_color": true, + "children": [ + { + "frame": "pixelart_882_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_882_001.png", + "glow_frame": "pixelart_882_glow_001.png", + "gridH": 0.5, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3383": { + "can_color": true, + "children": [ + { + "frame": "pixelart_883_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_883_001.png", + "glow_frame": "pixelart_883_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3384": { + "can_color": true, + "children": [ + { + "frame": "pixelart_884_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_884_001.png", + "glow_frame": "pixelart_884_glow_001.png", + "gridH": 0.5, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3385": { + "can_color": true, + "children": [ + { + "frame": "pixelart_885_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_885_001.png", + "glow_frame": "pixelart_885_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3386": { + "can_color": true, + "children": [ + { + "frame": "pixelart_886_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_886_001.png", + "glow_frame": "pixelart_886_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3387": { + "can_color": true, + "children": [ + { + "frame": "pixelart_887_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_887_001.png", + "glow_frame": "pixelart_887_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3388": { + "can_color": true, + "children": [ + { + "frame": "pixelart_888_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_888_001.png", + "glow_frame": "pixelart_888_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3389": { + "can_color": true, + "children": [ + { + "frame": "pixelart_889_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_889_001.png", + "glow_frame": "pixelart_889_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3390": { + "can_color": true, + "children": [ + { + "frame": "pixelart_890_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_890_001.png", + "glow_frame": "pixelart_890_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.6333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3391": { + "can_color": true, + "children": [ + { + "frame": "pixelart_891_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_891_001.png", + "glow_frame": "pixelart_891_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.6333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3392": { + "can_color": true, + "children": [ + { + "frame": "pixelart_892_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_892_001.png", + "glow_frame": "pixelart_892_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3393": { + "can_color": true, + "children": [ + { + "frame": "pixelart_893_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_893_001.png", + "glow_frame": "pixelart_893_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3394": { + "can_color": true, + "children": [ + { + "frame": "pixelart_894_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_894_001.png", + "glow_frame": "pixelart_894_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3395": { + "can_color": true, + "children": [ + { + "frame": "pixelart_895_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_895_001.png", + "glow_frame": "pixelart_895_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3396": { + "can_color": true, + "children": [ + { + "frame": "pixelart_896_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_896_001.png", + "glow_frame": "pixelart_896_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3397": { + "can_color": true, + "children": [ + { + "frame": "pixelart_897_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_897_001.png", + "glow_frame": "pixelart_897_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3398": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_898_001.png", + "glow_frame": "pixelart_898_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "3399": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1206_color_001.png", + "glow_frame": "pixelart_1206_color_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "3400": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1206_color_001.png", + "glow_frame": "pixelart_1206_color_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "3401": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_901_001.png", + "glow_frame": "pixelart_901_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "3402": { + "can_color": true, + "children": [ + { + "frame": "pixelart_902_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_902_001.png", + "glow_frame": "pixelart_902_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3403": { + "can_color": true, + "children": [ + { + "frame": "pixelart_903_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_903_001.png", + "glow_frame": "pixelart_903_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3404": { + "can_color": true, + "children": [ + { + "frame": "pixelart_904_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_904_001.png", + "glow_frame": "pixelart_904_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3405": { + "can_color": true, + "children": [ + { + "frame": "pixelart_905_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_905_001.png", + "glow_frame": "pixelart_905_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3406": { + "can_color": true, + "children": [ + { + "frame": "pixelart_906_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_906_001.png", + "glow_frame": "pixelart_906_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3407": { + "can_color": true, + "children": [ + { + "frame": "pixelart_907_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_907_001.png", + "glow_frame": "pixelart_907_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3408": { + "can_color": true, + "children": [ + { + "frame": "pixelart_908_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_908_001.png", + "glow_frame": "pixelart_908_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3409": { + "can_color": true, + "children": [ + { + "frame": "pixelart_909_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_909_001.png", + "glow_frame": "pixelart_909_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3410": { + "can_color": true, + "children": [ + { + "frame": "pixelart_910_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_910_001.png", + "glow_frame": "pixelart_910_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3411": { + "can_color": true, + "children": [ + { + "frame": "pixelart_911_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_911_001.png", + "glow_frame": "pixelart_911_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3412": { + "can_color": true, + "children": [ + { + "frame": "pixelart_912_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_912_001.png", + "glow_frame": "pixelart_912_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3413": { + "can_color": true, + "children": [ + { + "frame": "pixelart_913_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_913_001.png", + "glow_frame": "pixelart_913_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3414": { + "can_color": true, + "children": [ + { + "frame": "pixelart_914_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_914_001.png", + "glow_frame": "pixelart_914_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3415": { + "can_color": true, + "children": [ + { + "frame": "pixelart_915_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_915_001.png", + "glow_frame": "pixelart_915_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3416": { + "can_color": true, + "children": [ + { + "frame": "pixelart_916_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_916_001.png", + "glow_frame": "pixelart_916_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3417": { + "can_color": true, + "children": [ + { + "frame": "pixelart_917_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_917_001.png", + "glow_frame": "pixelart_917_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3418": { + "can_color": true, + "children": [ + { + "frame": "pixelart_918_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_918_001.png", + "glow_frame": "pixelart_918_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3419": { + "can_color": true, + "children": [ + { + "frame": "pixelart_919_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_919_001.png", + "glow_frame": "pixelart_919_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3420": { + "can_color": true, + "children": [ + { + "frame": "pixelart_920_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_920_001.png", + "glow_frame": "pixelart_920_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3421": { + "can_color": true, + "children": [ + { + "frame": "pixelart_921_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_921_001.png", + "glow_frame": "pixelart_921_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3422": { + "can_color": true, + "children": [ + { + "frame": "pixelart_922_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_922_001.png", + "glow_frame": "pixelart_922_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3423": { + "can_color": true, + "children": [ + { + "frame": "pixelart_923_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_923_001.png", + "glow_frame": "pixelart_923_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3424": { + "can_color": true, + "children": [ + { + "frame": "pixelart_924_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_924_001.png", + "glow_frame": "pixelart_924_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3425": { + "can_color": true, + "children": [ + { + "frame": "pixelart_925_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_925_001.png", + "glow_frame": "pixelart_925_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3426": { + "can_color": true, + "children": [ + { + "frame": "pixelart_926_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_926_001.png", + "glow_frame": "pixelart_926_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3427": { + "can_color": true, + "children": [ + { + "frame": "pixelart_927_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_927_001.png", + "glow_frame": "pixelart_927_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3428": { + "can_color": true, + "children": [ + { + "frame": "pixelart_928_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_928_001.png", + "glow_frame": "pixelart_928_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3429": { + "can_color": true, + "children": [ + { + "frame": "pixelart_929_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_929_001.png", + "glow_frame": "pixelart_929_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3430": { + "can_color": true, + "children": [ + { + "frame": "pixelart_930_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_930_001.png", + "glow_frame": "pixelart_930_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3431": { + "can_color": true, + "children": [ + { + "frame": "pixelart_931_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_931_001.png", + "glow_frame": "pixelart_931_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3432": { + "can_color": true, + "children": [ + { + "frame": "pixelart_932_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_932_001.png", + "glow_frame": "pixelart_932_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3433": { + "can_color": true, + "children": [ + { + "frame": "pixelart_933_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_933_001.png", + "glow_frame": "pixelart_933_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3434": { + "can_color": true, + "children": [ + { + "frame": "pixelart_934_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_934_001.png", + "glow_frame": "pixelart_934_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3435": { + "can_color": true, + "children": [ + { + "frame": "pixelart_935_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_935_001.png", + "glow_frame": "pixelart_935_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3436": { + "can_color": true, + "children": [ + { + "frame": "pixelart_936_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_936_001.png", + "glow_frame": "pixelart_936_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3437": { + "can_color": true, + "children": [ + { + "frame": "pixelart_937_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_937_001.png", + "glow_frame": "pixelart_937_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3438": { + "can_color": true, + "children": [ + { + "frame": "pixelart_938_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_938_001.png", + "glow_frame": "pixelart_938_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3439": { + "can_color": true, + "children": [ + { + "frame": "pixelart_939_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_939_001.png", + "glow_frame": "pixelart_939_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3440": { + "can_color": true, + "children": [ + { + "frame": "pixelart_940_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_940_001.png", + "glow_frame": "pixelart_940_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3441": { + "can_color": true, + "children": [ + { + "frame": "pixelart_941_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_941_001.png", + "glow_frame": "pixelart_941_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3442": { + "can_color": true, + "children": [ + { + "frame": "pixelart_942_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_942_001.png", + "glow_frame": "pixelart_942_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3443": { + "can_color": true, + "children": [ + { + "frame": "pixelart_943_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_943_001.png", + "glow_frame": "pixelart_943_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3444": { + "can_color": true, + "children": [ + { + "frame": "pixelart_944_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_944_001.png", + "glow_frame": "pixelart_944_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3445": { + "can_color": true, + "children": [ + { + "frame": "pixelart_945_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_945_001.png", + "glow_frame": "pixelart_945_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3446": { + "can_color": true, + "children": [ + { + "frame": "pixelart_946_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_946_001.png", + "glow_frame": "pixelart_946_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3447": { + "can_color": true, + "children": [ + { + "frame": "pixelart_947_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_947_001.png", + "glow_frame": "pixelart_947_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3448": { + "can_color": true, + "children": [ + { + "frame": "pixelart_948_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_948_001.png", + "glow_frame": "pixelart_948_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3449": { + "can_color": true, + "children": [ + { + "frame": "pixelart_949_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_949_001.png", + "glow_frame": "pixelart_949_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3450": { + "can_color": true, + "children": [ + { + "frame": "pixelart_950_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_950_001.png", + "glow_frame": "pixelart_950_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3451": { + "can_color": true, + "children": [ + { + "frame": "pixelart_951_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_951_001.png", + "glow_frame": "pixelart_951_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3452": { + "can_color": true, + "children": [ + { + "frame": "pixelart_952_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_952_001.png", + "glow_frame": "pixelart_952_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3453": { + "can_color": true, + "children": [ + { + "frame": "pixelart_953_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_953_001.png", + "glow_frame": "pixelart_953_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3454": { + "can_color": true, + "children": [ + { + "frame": "pixelart_954_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_954_001.png", + "glow_frame": "pixelart_954_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3455": { + "can_color": true, + "children": [ + { + "frame": "pixelart_955_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_955_001.png", + "glow_frame": "pixelart_955_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3456": { + "can_color": true, + "children": [ + { + "frame": "pixelart_956_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_956_001.png", + "glow_frame": "pixelart_956_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3457": { + "can_color": true, + "children": [ + { + "frame": "pixelart_957_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_957_001.png", + "glow_frame": "pixelart_957_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3458": { + "can_color": true, + "children": [ + { + "frame": "pixelart_958_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_958_001.png", + "glow_frame": "pixelart_958_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3459": { + "can_color": true, + "children": [ + { + "frame": "pixelart_959_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_959_001.png", + "glow_frame": "pixelart_959_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3460": { + "can_color": true, + "children": [ + { + "frame": "pixelart_960_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_960_001.png", + "glow_frame": "pixelart_960_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3461": { + "can_color": true, + "children": [ + { + "frame": "pixelart_961_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_961_001.png", + "glow_frame": "pixelart_961_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3462": { + "can_color": true, + "children": [ + { + "frame": "pixelart_962_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_962_001.png", + "glow_frame": "pixelart_962_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3463": { + "can_color": true, + "children": [ + { + "frame": "pixelart_963_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_963_001.png", + "glow_frame": "pixelart_963_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 1.0333333015441895, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3464": { + "can_color": true, + "children": [ + { + "frame": "pixelart_964_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_964_001.png", + "glow_frame": "pixelart_964_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3465": { + "can_color": true, + "children": [ + { + "frame": "pixelart_965_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_965_001.png", + "glow_frame": "pixelart_965_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3466": { + "can_color": true, + "children": [ + { + "frame": "pixelart_966_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_966_001.png", + "glow_frame": "pixelart_966_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3467": { + "can_color": true, + "children": [ + { + "frame": "pixelart_967_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_967_001.png", + "glow_frame": "pixelart_967_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3468": { + "can_color": true, + "children": [ + { + "frame": "pixelart_968_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_968_001.png", + "glow_frame": "pixelart_968_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3469": { + "can_color": true, + "children": [ + { + "frame": "pixelart_969_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_969_001.png", + "glow_frame": "pixelart_969_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3470": { + "can_color": true, + "children": [ + { + "frame": "pixelart_970_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_970_001.png", + "glow_frame": "pixelart_970_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3471": { + "can_color": true, + "children": [ + { + "frame": "pixelart_971_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_971_001.png", + "glow_frame": "pixelart_971_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3472": { + "can_color": true, + "children": [ + { + "frame": "pixelart_972_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_972_001.png", + "glow_frame": "pixelart_972_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3473": { + "can_color": true, + "children": [ + { + "frame": "pixelart_973_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_973_001.png", + "glow_frame": "pixelart_973_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3474": { + "can_color": true, + "children": [ + { + "frame": "pixelart_974_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_974_001.png", + "glow_frame": "pixelart_974_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3475": { + "can_color": true, + "children": [ + { + "frame": "pixelart_975_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_975_001.png", + "glow_frame": "pixelart_975_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3476": { + "can_color": true, + "children": [ + { + "frame": "pixelart_976_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_976_001.png", + "glow_frame": "pixelart_976_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3477": { + "can_color": true, + "children": [ + { + "frame": "pixelart_976_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_977_001.png", + "glow_frame": "pixelart_977_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3478": { + "can_color": true, + "children": [ + { + "frame": "pixelart_978_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_978_001.png", + "glow_frame": "pixelart_978_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3479": { + "can_color": true, + "children": [ + { + "frame": "pixelart_979_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_979_001.png", + "glow_frame": "pixelart_979_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3480": { + "can_color": true, + "children": [ + { + "frame": "pixelart_980_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_980_001.png", + "glow_frame": "pixelart_980_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3481": { + "can_color": true, + "children": [ + { + "frame": "pixelart_981_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_981_001.png", + "glow_frame": "pixelart_981_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3482": { + "can_color": true, + "children": [ + { + "frame": "pixelart_982_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_982_002.png", + "glow_frame": "pixelart_982_002.png", + "gridH": 0.4000000059604645, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3483": { + "can_color": true, + "children": [ + { + "frame": "pixelart_983_color_005.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_983_005.png", + "glow_frame": "pixelart_983_005.png", + "gridH": 0.8666666746139526, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3484": { + "can_color": true, + "children": [ + { + "frame": "pixelart_984_color_002.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_984_002.png", + "glow_frame": "pixelart_984_002.png", + "gridH": 0.9333333373069763, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3485": { + "can_color": true, + "children": [ + { + "frame": "pixelart_985_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_985_001.png", + "glow_frame": "pixelart_985_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3486": { + "can_color": true, + "children": [ + { + "frame": "pixelart_986_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_986_001.png", + "glow_frame": "pixelart_986_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3487": { + "can_color": true, + "children": [ + { + "frame": "pixelart_987_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_987_001.png", + "glow_frame": "pixelart_987_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3488": { + "can_color": true, + "children": [ + { + "frame": "pixelart_988_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_988_001.png", + "glow_frame": "pixelart_988_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3489": { + "can_color": true, + "children": [ + { + "frame": "pixelart_989_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_989_001.png", + "glow_frame": "pixelart_989_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3490": { + "can_color": true, + "children": [ + { + "frame": "pixelart_990_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_990_001.png", + "glow_frame": "pixelart_990_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3491": { + "can_color": true, + "children": [ + { + "frame": "pixelart_991_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_991_001.png", + "glow_frame": "pixelart_991_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3492": { + "can_color": true, + "children": [ + { + "frame": "pixelart_992_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_992_001.png", + "glow_frame": "pixelart_992_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3493": { + "can_color": true, + "children": [ + { + "frame": "pixelart_993_color_004.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_993_004.png", + "glow_frame": "pixelart_993_004.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3494": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_994_001.png", + "glow_frame": "pixelart_994_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3495": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_995_001.png", + "glow_frame": "pixelart_995_glow_001.png", + "gridH": 0.5, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3496": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_996_001.png", + "glow_frame": "pixelart_996_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3497": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_997_001.png", + "glow_frame": "pixelart_997_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3498": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_998_001.png", + "glow_frame": "pixelart_998_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3499": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_999_001.png", + "glow_frame": "pixelart_999_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3500": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1000_001.png", + "glow_frame": "pixelart_1000_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3501": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1001_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1001_001.png", + "glow_frame": "pixelart_1001_glow_001.png", + "gridH": 1, + "gridW": 1.2999999523162842, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3502": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1002_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1002_001.png", + "glow_frame": "pixelart_1002_glow_001.png", + "gridH": 1.0333333015441895, + "gridW": 1.399999976158142, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3503": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1003_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1003_001.png", + "glow_frame": "pixelart_1003_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3504": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1004_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1004_001.png", + "glow_frame": "pixelart_1004_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3505": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1005_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1005_001.png", + "glow_frame": "pixelart_1005_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3506": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1006_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1006_001.png", + "glow_frame": "pixelart_1006_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3507": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1007_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1007_001.png", + "glow_frame": "pixelart_1007_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3508": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1008_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1008_001.png", + "glow_frame": "pixelart_1008_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3509": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1009_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1009_001.png", + "glow_frame": "pixelart_1009_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3510": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1010_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1010_001.png", + "glow_frame": "pixelart_1010_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3511": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1011_001.png", + "glow_frame": "pixelart_1011_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3512": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1012_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1012_001.png", + "glow_frame": "pixelart_1012_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3513": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1013_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1013_001.png", + "glow_frame": "pixelart_1013_glow_001.png", + "gridH": 0.5, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3514": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1014_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1014_001.png", + "glow_frame": "pixelart_1014_glow_001.png", + "gridH": 0.5, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3515": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1015_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1015_001.png", + "glow_frame": "pixelart_1015_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3516": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1016_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1016_001.png", + "glow_frame": "pixelart_1016_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3517": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1017_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1017_001.png", + "glow_frame": "pixelart_1017_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3518": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1018_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1018_001.png", + "glow_frame": "pixelart_1018_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3519": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1019_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1019_001.png", + "glow_frame": "pixelart_1019_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3520": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1020_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1020_001.png", + "glow_frame": "pixelart_1020_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3521": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1021_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1021_001.png", + "glow_frame": "pixelart_1021_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3522": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1022_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1022_001.png", + "glow_frame": "pixelart_1022_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3523": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1023_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1023_001.png", + "glow_frame": "pixelart_1023_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3524": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1024_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1024_001.png", + "glow_frame": "pixelart_1024_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3525": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1025_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1025_001.png", + "glow_frame": "pixelart_1025_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3526": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1026_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1026_001.png", + "glow_frame": "pixelart_1026_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3527": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1027_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1027_001.png", + "glow_frame": "pixelart_1027_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3528": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1028_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1028_001.png", + "glow_frame": "pixelart_1028_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3529": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1029_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1029_001.png", + "glow_frame": "pixelart_1029_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3530": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1030_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1030_001.png", + "glow_frame": "pixelart_1030_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3531": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1031_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1031_001.png", + "glow_frame": "pixelart_1031_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3532": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1032_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1032_001.png", + "glow_frame": "pixelart_1032_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3533": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1033_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1033_001.png", + "glow_frame": "pixelart_1033_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3534": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1034_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1034_001.png", + "glow_frame": "pixelart_1034_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3535": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1035_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1035_001.png", + "glow_frame": "pixelart_1035_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3536": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1036_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1036_001.png", + "glow_frame": "pixelart_1036_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3537": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1037_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1037_001.png", + "glow_frame": "pixelart_1037_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3538": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1038_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1038_001.png", + "glow_frame": "pixelart_1038_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3539": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1039_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1039_001.png", + "glow_frame": "pixelart_1039_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3540": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1040_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1040_001.png", + "glow_frame": "pixelart_1040_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 1.0666667222976685, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "3541": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1041_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1041_001.png", + "glow_frame": "pixelart_1041_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "3542": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "pixelart_1042_001.png", + "glow_frame": "pixelart_1042_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 11 + }, + "3543": { + "can_color": true, + "default_base_color_channel": 2, + "frame": "pixelart_1043_001.png", + "glow_frame": "pixelart_1043_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 11, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 11 + }, + "3544": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1044_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1044_001.png", + "glow_frame": "pixelart_1044_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3545": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1045_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1045_001.png", + "glow_frame": "pixelart_1045_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3546": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1046_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1046_001.png", + "glow_frame": "pixelart_1046_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.6333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3547": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1047_001.png", + "glow_frame": "pixelart_1047_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3548": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1048_001.png", + "glow_frame": "pixelart_1048_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3549": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1049_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1049_001.png", + "glow_frame": "pixelart_1049_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3550": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1050_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1050_001.png", + "glow_frame": "pixelart_1050_glow_001.png", + "gridH": 0.5, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3551": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1049_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1051_001.png", + "glow_frame": "pixelart_1051_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3552": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1050_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1052_001.png", + "glow_frame": "pixelart_1052_glow_001.png", + "gridH": 0.5, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3553": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1053_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1053_001.png", + "glow_frame": "pixelart_1053_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3554": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1054_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1054_001.png", + "glow_frame": "pixelart_1054_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3555": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1055_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1055_001.png", + "glow_frame": "pixelart_1055_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3556": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1056_001.png", + "glow_frame": "pixelart_1056_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3557": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1057_001.png", + "glow_frame": "pixelart_1057_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3558": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1058_001.png", + "glow_frame": "pixelart_1058_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3559": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1059_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1059_001.png", + "glow_frame": "pixelart_1059_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3560": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1060_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1060_001.png", + "glow_frame": "pixelart_1060_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.6333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3561": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1061_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1061_001.png", + "glow_frame": "pixelart_1061_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.6333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3562": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1062_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1062_001.png", + "glow_frame": "pixelart_1062_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3563": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1063_001.png", + "glow_frame": "pixelart_1063_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3564": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1064_001.png", + "glow_frame": "pixelart_1064_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3565": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1065_001.png", + "glow_frame": "pixelart_1065_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3566": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1066_001.png", + "glow_frame": "pixelart_1066_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3567": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1067_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1067_001.png", + "glow_frame": "pixelart_1067_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3568": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1068_001.png", + "glow_frame": "pixelart_1068_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3569": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1069_001.png", + "glow_frame": "pixelart_1069_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3570": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1070_001.png", + "glow_frame": "pixelart_1070_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3571": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1071_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1071_001.png", + "glow_frame": "pixelart_1071_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3572": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1072_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1072_001.png", + "glow_frame": "pixelart_1072_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3573": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1073_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1073_001.png", + "glow_frame": "pixelart_1073_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3574": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1074_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1074_001.png", + "glow_frame": "pixelart_1074_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3575": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1075_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1075_001.png", + "glow_frame": "pixelart_1075_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3576": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1076_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1076_001.png", + "glow_frame": "pixelart_1076_glow_001.png", + "gridH": 0.800000011920929, + "gridW": 1.0666667222976685, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3577": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1077_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1077_001.png", + "glow_frame": "pixelart_1077_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3578": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1078_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1078_001.png", + "glow_frame": "pixelart_1078_glow_001.png", + "gridH": 0.5, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3579": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1079_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1079_001.png", + "glow_frame": "pixelart_1079_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3580": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1080_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1080_001.png", + "glow_frame": "pixelart_1080_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3581": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1081_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1081_001.png", + "glow_frame": "pixelart_1081_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3582": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1082_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1082_001.png", + "glow_frame": "pixelart_1082_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 1.2999999523162842, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3583": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1083_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1083_001.png", + "glow_frame": "pixelart_1083_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3584": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1084_001.png", + "glow_frame": "pixelart_1084_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3585": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1085_001.png", + "glow_frame": "pixelart_1085_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3586": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1086_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1086_001.png", + "glow_frame": "pixelart_1086_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3587": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1087_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1087_001.png", + "glow_frame": "pixelart_1087_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3588": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1088_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1088_001.png", + "glow_frame": "pixelart_1088_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3589": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1089_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1089_001.png", + "glow_frame": "pixelart_1089_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3590": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1090_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1090_001.png", + "glow_frame": "pixelart_1090_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3591": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1091_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1091_001.png", + "glow_frame": "pixelart_1091_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3592": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1092_001.png", + "glow_frame": "pixelart_1092_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3593": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1093_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1093_001.png", + "glow_frame": "pixelart_1093_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3594": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1094_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1094_001.png", + "glow_frame": "pixelart_1094_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3595": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1095_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1095_001.png", + "glow_frame": "pixelart_1095_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3596": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1096_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1096_001.png", + "glow_frame": "pixelart_1096_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3597": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1097_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1097_001.png", + "glow_frame": "pixelart_1097_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3598": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1098_001.png", + "glow_frame": "pixelart_1098_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3599": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1099_001.png", + "glow_frame": "pixelart_1099_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3600": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3601": { + "can_color": true, + "children": [ + { + "frame": "d_time01_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "d_time01_001.png", + "glow_frame": "d_time01_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.8333333134651184, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "3602": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3603": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3604": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3605": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3606": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3607": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3608": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3609": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3610": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "3611": { + "can_color": true, + "default_base_color_channel": 1011, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 10, + "hitbox_radius": 15, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 10 + }, + "3612": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3613": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3614": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3615": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3617": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3618": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3619": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3620": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3621": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_ball_01_001.png", + "glow_frame": "d_ball_01_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3622": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_ball_02_001.png", + "glow_frame": "d_ball_02_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3623": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_ball_03_001.png", + "glow_frame": "d_ball_03_glow_001.png", + "gridH": 0.8333333134651184, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3624": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_ball_04_001.png", + "glow_frame": "d_ball_04_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3625": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_ball_05_001.png", + "glow_frame": "d_ball_05_glow_001.png", + "gridH": 0.949999988079071, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3626": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_ball_06_001.png", + "glow_frame": "d_ball_06_glow_001.png", + "gridH": 1, + "gridW": 0.9333333373069763, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3627": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_ball_07_001.png", + "glow_frame": "d_ball_07_glow_001.png", + "gridH": 0.9166666865348816, + "gridW": 0.9166666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3628": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_ball_08_001.png", + "glow_frame": "d_ball_08_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3629": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_ball_09_001.png", + "glow_frame": "d_ball_09_glow_001.png", + "gridH": 0.8666666746139526, + "gridW": 1, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3630": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_arrow_01_001.png", + "glow_frame": "d_arrow_01_glow_001.png", + "gridH": 1.1166666746139526, + "gridW": 1.5499999523162842, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3631": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_arrow_02_001.png", + "glow_frame": "d_arrow_02_glow_001.png", + "gridH": 1.4666666984558105, + "gridW": 0.949999988079071, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3632": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_arrow_03_001.png", + "glow_frame": "d_arrow_03_glow_001.png", + "gridH": 1.4666666984558105, + "gridW": 0.7333333492279053, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3633": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_exmark_01_001.png", + "glow_frame": "d_exmark_01_glow_001.png", + "gridH": 1.5499999523162842, + "gridW": 0.46666666865348816, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3634": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_qmark_01_001.png", + "glow_frame": "d_qmark_01_glow_001.png", + "gridH": 1.5666667222976685, + "gridW": 1.1333333253860474, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3635": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_cross_01_001.png", + "glow_frame": "d_cross_01_glow_001.png", + "gridH": 1.4666666984558105, + "gridW": 1.4666666984558105, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3636": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_circle_01_001.png", + "glow_frame": "d_circle_01_glow_001.png", + "gridH": 1.6666666269302368, + "gridW": 1.6666666269302368, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3637": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_circle_02_001.png", + "glow_frame": "d_circle_02_glow_001.png", + "gridH": 1.6666666269302368, + "gridW": 1.6666666269302368, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3638": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_largeSquare_01_001.png", + "glow_frame": "d_largeSquare_01_glow_001.png", + "gridH": 1.3333333730697632, + "gridW": 1.3333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3639": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "d_largeSquare_02_001.png", + "glow_frame": "d_largeSquare_02_glow_001.png", + "gridH": 1.3333333730697632, + "gridW": 1.3333333730697632, + "spritesheet": "GJ_GameSheet-uhd", + "type": "deco", + "z": -5, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": -5 + }, + "3640": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3641": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3642": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3643": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3645": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "hitbox_radius": 15, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3646": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_200_001.png", + "glow_frame": "particle_200_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3647": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_201_001.png", + "glow_frame": "particle_201_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3648": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_202_001.png", + "glow_frame": "particle_202_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3649": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_203_001.png", + "glow_frame": "particle_203_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3650": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_204_001.png", + "glow_frame": "particle_204_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3651": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_205_001.png", + "glow_frame": "particle_205_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3652": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_206_001.png", + "glow_frame": "particle_206_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3653": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_207_001.png", + "glow_frame": "particle_207_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3654": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_208_001.png", + "glow_frame": "particle_208_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3655": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3656": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_209_001.png", + "glow_frame": "particle_209_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3657": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_210_001.png", + "glow_frame": "particle_210_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3658": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_211_001.png", + "glow_frame": "particle_211_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3659": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_212_001.png", + "glow_frame": "particle_212_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3660": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3661": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3662": { + "can_color": false, + "default_base_color_channel": 0, + "frame": null, + "glow_frame": "none", + "gridH": 1, + "gridW": 1, + "spritesheet": "GJ_GameSheet02-uhd", + "type": "trigger", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3700": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1100_001.png", + "glow_frame": "pixelart_1100_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3701": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1101_001.png", + "glow_frame": "pixelart_1101_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3702": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1102_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1102_001.png", + "glow_frame": "pixelart_1102_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3703": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1103_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1087_001.png", + "glow_frame": "pixelart_1087_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3704": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1104_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1088_001.png", + "glow_frame": "pixelart_1088_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3705": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1105_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1105_001.png", + "glow_frame": "pixelart_1105_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3706": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1106_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1090_001.png", + "glow_frame": "pixelart_1090_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3707": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1107_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1107_001.png", + "glow_frame": "pixelart_1107_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3708": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1108_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1108_001.png", + "glow_frame": "pixelart_1108_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3709": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1109_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1109_001.png", + "glow_frame": "pixelart_1109_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3710": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1110_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1110_001.png", + "glow_frame": "pixelart_1110_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3711": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1111_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1096_001.png", + "glow_frame": "pixelart_1096_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3712": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1112_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1112_001.png", + "glow_frame": "pixelart_1112_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3713": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1113_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1113_001.png", + "glow_frame": "pixelart_1113_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3714": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1114_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1114_001.png", + "glow_frame": "pixelart_1114_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3715": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1115_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1087_001.png", + "glow_frame": "pixelart_1087_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3716": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1116_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1088_001.png", + "glow_frame": "pixelart_1088_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3717": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1117_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1117_001.png", + "glow_frame": "pixelart_1117_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3718": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1118_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1090_001.png", + "glow_frame": "pixelart_1090_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3719": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1119_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1119_001.png", + "glow_frame": "pixelart_1119_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3720": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1120_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1120_001.png", + "glow_frame": "pixelart_1120_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3721": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1121_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1121_001.png", + "glow_frame": "pixelart_1121_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3722": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1122_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1122_001.png", + "glow_frame": "pixelart_1122_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3723": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1123_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1096_001.png", + "glow_frame": "pixelart_1096_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3724": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1124_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1124_001.png", + "glow_frame": "pixelart_1124_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3725": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1125_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1125_001.png", + "glow_frame": "pixelart_1125_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3726": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1126_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1126_001.png", + "glow_frame": "pixelart_1126_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3727": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1127_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1127_001.png", + "glow_frame": "pixelart_1127_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3728": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1128_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1128_001.png", + "glow_frame": "pixelart_1128_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3729": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1129_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1129_001.png", + "glow_frame": "pixelart_1129_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3730": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1130_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1130_001.png", + "glow_frame": "pixelart_1130_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3731": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1131_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1131_001.png", + "glow_frame": "pixelart_1131_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3732": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1132_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1132_001.png", + "glow_frame": "pixelart_1132_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3733": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1133_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1133_001.png", + "glow_frame": "pixelart_1133_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3734": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1134_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1134_001.png", + "glow_frame": "pixelart_1134_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3735": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1135_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1135_001.png", + "glow_frame": "pixelart_1135_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3736": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1136_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1136_001.png", + "glow_frame": "pixelart_1136_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3737": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1137_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1137_001.png", + "glow_frame": "pixelart_1137_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3738": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1138_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1138_001.png", + "glow_frame": "pixelart_1138_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3739": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1139_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3740": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1140_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1140_001.png", + "glow_frame": "pixelart_1140_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3741": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1141_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1087_001.png", + "glow_frame": "pixelart_1087_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3742": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1142_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1088_001.png", + "glow_frame": "pixelart_1088_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3743": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1143_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1143_001.png", + "glow_frame": "pixelart_1143_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3744": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1144_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1090_001.png", + "glow_frame": "pixelart_1090_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3745": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1145_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1145_001.png", + "glow_frame": "pixelart_1145_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3746": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1146_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1146_001.png", + "glow_frame": "pixelart_1146_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3747": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1147_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1147_001.png", + "glow_frame": "pixelart_1147_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3748": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1148_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1148_001.png", + "glow_frame": "pixelart_1148_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3749": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1149_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1149_001.png", + "glow_frame": "pixelart_1149_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3750": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1150_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1150_001.png", + "glow_frame": "pixelart_1150_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3751": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1151_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1151_001.png", + "glow_frame": "pixelart_1151_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3752": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1126_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1126_001.png", + "glow_frame": "pixelart_1126_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3753": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1153_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1153_001.png", + "glow_frame": "pixelart_1153_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3754": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1154_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1154_001.png", + "glow_frame": "pixelart_1154_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3755": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1155_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1155_001.png", + "glow_frame": "pixelart_1155_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3756": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1156_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1156_001.png", + "glow_frame": "pixelart_1156_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3757": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1157_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1157_001.png", + "glow_frame": "pixelart_1157_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3758": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1158_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1158_001.png", + "glow_frame": "pixelart_1158_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3759": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1159_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1159_001.png", + "glow_frame": "pixelart_1159_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3760": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1160_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1160_001.png", + "glow_frame": "pixelart_1160_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3761": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1161_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1161_001.png", + "glow_frame": "pixelart_1161_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3762": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1162_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1162_001.png", + "glow_frame": "pixelart_1162_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3763": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1163_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1163_001.png", + "glow_frame": "pixelart_1163_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3764": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1164_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1164_001.png", + "glow_frame": "pixelart_1164_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3765": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1165_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1165_001.png", + "glow_frame": "pixelart_1165_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3766": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1166_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1166_001.png", + "glow_frame": "pixelart_1166_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3767": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1167_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1167_001.png", + "glow_frame": "pixelart_1167_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3768": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1168_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1168_001.png", + "glow_frame": "pixelart_1168_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3769": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1169_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1169_001.png", + "glow_frame": "pixelart_1169_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3770": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1170_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1170_001.png", + "glow_frame": "pixelart_1170_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3771": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1171_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1171_001.png", + "glow_frame": "pixelart_1171_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3772": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1172_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1172_001.png", + "glow_frame": "pixelart_1172_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3773": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1173_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1173_001.png", + "glow_frame": "pixelart_1173_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3774": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1174_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1174_001.png", + "glow_frame": "pixelart_1174_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3775": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1175_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1175_001.png", + "glow_frame": "pixelart_1175_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3776": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1176_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1176_001.png", + "glow_frame": "pixelart_1176_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3777": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1177_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1177_001.png", + "glow_frame": "pixelart_1177_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3778": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1178_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1178_001.png", + "glow_frame": "pixelart_1178_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3779": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1179_001.png", + "glow_frame": "pixelart_1179_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3780": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1180_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1180_001.png", + "glow_frame": "pixelart_1180_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3781": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1181_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1181_001.png", + "glow_frame": "pixelart_1181_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3782": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1182_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1182_001.png", + "glow_frame": "pixelart_1182_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3783": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1183_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1183_001.png", + "glow_frame": "pixelart_1183_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3784": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1184_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1184_001.png", + "glow_frame": "pixelart_1184_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3785": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1185_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1185_001.png", + "glow_frame": "pixelart_1185_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3786": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1186_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1186_001.png", + "glow_frame": "pixelart_1186_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3787": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1187_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1187_001.png", + "glow_frame": "pixelart_1187_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3788": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1188_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1188_001.png", + "glow_frame": "pixelart_1188_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3789": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1189_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1189_001.png", + "glow_frame": "pixelart_1189_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3790": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1190_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1190_001.png", + "glow_frame": "pixelart_1190_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3791": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1191_001.png", + "glow_frame": "pixelart_1191_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3792": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1192_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1192_001.png", + "glow_frame": "pixelart_1192_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3793": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1193_001.png", + "glow_frame": "pixelart_1193_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "3794": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1194_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1194_001.png", + "glow_frame": "pixelart_1194_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3795": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1195_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1195_001.png", + "glow_frame": "pixelart_1195_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3796": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1196_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1196_001.png", + "glow_frame": "pixelart_1196_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3797": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1197_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1197_001.png", + "glow_frame": "pixelart_1197_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3798": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1197_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1198_001.png", + "glow_frame": "pixelart_1198_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3799": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1197_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1199_001.png", + "glow_frame": "pixelart_1199_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3800": { + "can_color": true, + "default_base_color_channel": 1004, + "frame": "particle_00_001.png", + "glow_frame": "particle_00_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "solid", + "z": 2, + "default_detail_color_channel": -1, + "default_z_layer": 5, + "default_z_order": 2 + }, + "3801": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_01_001.png", + "glow_frame": "particle_01_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3802": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_02_001.png", + "glow_frame": "particle_02_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3803": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_03_001.png", + "glow_frame": "particle_03_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3804": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_04_001.png", + "glow_frame": "particle_04_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3805": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_05_001.png", + "glow_frame": "particle_05_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3806": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_06_001.png", + "glow_frame": "particle_06_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3807": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_07_001.png", + "glow_frame": "particle_07_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3808": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_08_001.png", + "glow_frame": "particle_08_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3809": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_09_001.png", + "glow_frame": "particle_09_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3810": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_10_001.png", + "glow_frame": "particle_10_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3811": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_11_001.png", + "glow_frame": "particle_11_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3812": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_12_001.png", + "glow_frame": "particle_12_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3813": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_13_001.png", + "glow_frame": "particle_13_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3814": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_14_001.png", + "glow_frame": "particle_14_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3815": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_15_001.png", + "glow_frame": "particle_15_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3816": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_16_001.png", + "glow_frame": "particle_16_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3817": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_17_001.png", + "glow_frame": "particle_17_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3818": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_18_001.png", + "glow_frame": "particle_18_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3819": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_19_001.png", + "glow_frame": "particle_19_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3820": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_20_001.png", + "glow_frame": "particle_20_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3821": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_21_001.png", + "glow_frame": "particle_21_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3822": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_22_001.png", + "glow_frame": "particle_22_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3823": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_23_001.png", + "glow_frame": "particle_23_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3824": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_24_001.png", + "glow_frame": "particle_24_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3825": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_25_001.png", + "glow_frame": "particle_25_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3826": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_26_001.png", + "glow_frame": "particle_26_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3827": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_27_001.png", + "glow_frame": "particle_27_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3828": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_28_001.png", + "glow_frame": "particle_28_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3829": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_29_001.png", + "glow_frame": "particle_29_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3830": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_30_001.png", + "glow_frame": "particle_30_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3831": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_31_001.png", + "glow_frame": "particle_31_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3832": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_32_001.png", + "glow_frame": "particle_32_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3833": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_33_001.png", + "glow_frame": "particle_33_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3834": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_34_001.png", + "glow_frame": "particle_34_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3835": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_35_001.png", + "glow_frame": "particle_35_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3836": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_36_001.png", + "glow_frame": "particle_36_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3837": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_37_001.png", + "glow_frame": "particle_37_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3838": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_38_001.png", + "glow_frame": "particle_38_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3839": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_39_001.png", + "glow_frame": "particle_39_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3840": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_40_001.png", + "glow_frame": "particle_40_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3841": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_41_001.png", + "glow_frame": "particle_41_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3842": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_42_001.png", + "glow_frame": "particle_42_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3843": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_43_001.png", + "glow_frame": "particle_43_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3844": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_44_001.png", + "glow_frame": "particle_44_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3845": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_45_001.png", + "glow_frame": "particle_45_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3846": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_46_001.png", + "glow_frame": "particle_46_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3847": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_47_001.png", + "glow_frame": "particle_47_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3848": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_48_001.png", + "glow_frame": "particle_48_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3849": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_49_001.png", + "glow_frame": "particle_49_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3850": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_50_001.png", + "glow_frame": "particle_50_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3851": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_51_001.png", + "glow_frame": "particle_51_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3852": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_52_001.png", + "glow_frame": "particle_52_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3853": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_53_001.png", + "glow_frame": "particle_53_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3854": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_54_001.png", + "glow_frame": "particle_54_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3855": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_55_001.png", + "glow_frame": "particle_55_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3856": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_56_001.png", + "glow_frame": "particle_56_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3857": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_57_001.png", + "glow_frame": "particle_57_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3858": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_58_001.png", + "glow_frame": "particle_58_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3859": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_59_001.png", + "glow_frame": "particle_59_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3860": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_60_001.png", + "glow_frame": "particle_60_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3861": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_61_001.png", + "glow_frame": "particle_61_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3862": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_62_001.png", + "glow_frame": "particle_62_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3863": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_63_001.png", + "glow_frame": "particle_63_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3864": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_64_001.png", + "glow_frame": "particle_64_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3865": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_65_001.png", + "glow_frame": "particle_65_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3866": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_66_001.png", + "glow_frame": "particle_66_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3867": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_67_001.png", + "glow_frame": "particle_67_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3868": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_68_001.png", + "glow_frame": "particle_68_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3869": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_69_001.png", + "glow_frame": "particle_69_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3870": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_70_001.png", + "glow_frame": "particle_70_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3871": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_71_001.png", + "glow_frame": "particle_71_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3872": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_72_001.png", + "glow_frame": "particle_72_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3873": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_73_001.png", + "glow_frame": "particle_73_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3874": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_74_001.png", + "glow_frame": "particle_74_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3875": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_75_001.png", + "glow_frame": "particle_75_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3876": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_76_001.png", + "glow_frame": "particle_76_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3877": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_77_001.png", + "glow_frame": "particle_77_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3878": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_78_001.png", + "glow_frame": "particle_78_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3879": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_79_001.png", + "glow_frame": "particle_79_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3880": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_80_001.png", + "glow_frame": "particle_80_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3881": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_81_001.png", + "glow_frame": "particle_81_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3882": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_82_001.png", + "glow_frame": "particle_82_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3883": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_83_001.png", + "glow_frame": "particle_83_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3884": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_84_001.png", + "glow_frame": "particle_84_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3885": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_85_001.png", + "glow_frame": "particle_85_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3886": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_86_001.png", + "glow_frame": "particle_86_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3887": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_87_001.png", + "glow_frame": "particle_87_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3888": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_88_001.png", + "glow_frame": "particle_88_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3889": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_89_001.png", + "glow_frame": "particle_89_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3890": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_90_001.png", + "glow_frame": "particle_90_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3891": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_91_001.png", + "glow_frame": "particle_91_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3892": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_92_001.png", + "glow_frame": "particle_92_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3893": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_93_001.png", + "glow_frame": "particle_93_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3894": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_94_001.png", + "glow_frame": "particle_94_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3895": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_95_001.png", + "glow_frame": "particle_95_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3896": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_96_001.png", + "glow_frame": "particle_96_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3897": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_97_001.png", + "glow_frame": "particle_97_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3898": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_98_001.png", + "glow_frame": "particle_98_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3899": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_99_001.png", + "glow_frame": "particle_99_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3900": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_100_001.png", + "glow_frame": "particle_100_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3901": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_101_001.png", + "glow_frame": "particle_101_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3902": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_102_001.png", + "glow_frame": "particle_102_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3903": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_103_001.png", + "glow_frame": "particle_103_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3904": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_104_001.png", + "glow_frame": "particle_104_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3905": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_105_001.png", + "glow_frame": "particle_105_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3906": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_106_001.png", + "glow_frame": "particle_106_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3907": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_107_001.png", + "glow_frame": "particle_107_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3908": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_108_001.png", + "glow_frame": "particle_108_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3909": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_109_001.png", + "glow_frame": "particle_109_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3910": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_110_001.png", + "glow_frame": "particle_110_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3911": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_111_001.png", + "glow_frame": "particle_111_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3912": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_112_001.png", + "glow_frame": "particle_112_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3913": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_113_001.png", + "glow_frame": "particle_113_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3914": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_114_001.png", + "glow_frame": "particle_114_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3915": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_115_001.png", + "glow_frame": "particle_115_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3916": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_116_001.png", + "glow_frame": "particle_116_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3917": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_117_001.png", + "glow_frame": "particle_117_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3918": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_118_001.png", + "glow_frame": "particle_118_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3919": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_119_001.png", + "glow_frame": "particle_119_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3920": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_120_001.png", + "glow_frame": "particle_120_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3921": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_121_001.png", + "glow_frame": "particle_121_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3922": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_122_001.png", + "glow_frame": "particle_122_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3923": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_123_001.png", + "glow_frame": "particle_123_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3924": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_124_001.png", + "glow_frame": "particle_124_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3925": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_125_001.png", + "glow_frame": "particle_125_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3926": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_126_001.png", + "glow_frame": "particle_126_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3927": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_127_001.png", + "glow_frame": "particle_127_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3928": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_128_001.png", + "glow_frame": "particle_128_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3929": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_129_001.png", + "glow_frame": "particle_129_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3930": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_130_001.png", + "glow_frame": "particle_130_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3931": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_131_001.png", + "glow_frame": "particle_131_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3932": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_132_001.png", + "glow_frame": "particle_132_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3933": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_133_001.png", + "glow_frame": "particle_133_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3934": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_134_001.png", + "glow_frame": "particle_134_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3935": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_135_001.png", + "glow_frame": "particle_135_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3936": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_136_001.png", + "glow_frame": "particle_136_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3937": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_137_001.png", + "glow_frame": "particle_137_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3938": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_138_001.png", + "glow_frame": "particle_138_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3939": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_139_001.png", + "glow_frame": "particle_139_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3940": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_140_001.png", + "glow_frame": "particle_140_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3941": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_141_001.png", + "glow_frame": "particle_141_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3942": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_142_001.png", + "glow_frame": "particle_142_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3943": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_143_001.png", + "glow_frame": "particle_143_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3944": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_144_001.png", + "glow_frame": "particle_144_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3945": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_145_001.png", + "glow_frame": "particle_145_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3946": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_146_001.png", + "glow_frame": "particle_146_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3947": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_147_001.png", + "glow_frame": "particle_147_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3948": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_148_001.png", + "glow_frame": "particle_148_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3949": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_149_001.png", + "glow_frame": "particle_149_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3950": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_150_001.png", + "glow_frame": "particle_150_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3951": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_151_001.png", + "glow_frame": "particle_151_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3952": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_152_001.png", + "glow_frame": "particle_152_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3953": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_153_001.png", + "glow_frame": "particle_153_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3954": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_154_001.png", + "glow_frame": "particle_154_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3955": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_155_001.png", + "glow_frame": "particle_155_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3956": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_156_001.png", + "glow_frame": "particle_156_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3957": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_157_001.png", + "glow_frame": "particle_157_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3958": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_158_001.png", + "glow_frame": "particle_158_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3959": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_159_001.png", + "glow_frame": "particle_159_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3960": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_160_001.png", + "glow_frame": "particle_160_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3961": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_161_001.png", + "glow_frame": "particle_161_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3962": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_162_001.png", + "glow_frame": "particle_162_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3963": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_163_001.png", + "glow_frame": "particle_163_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3964": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_164_001.png", + "glow_frame": "particle_164_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3965": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_165_001.png", + "glow_frame": "particle_165_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3966": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_166_001.png", + "glow_frame": "particle_166_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3967": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_167_001.png", + "glow_frame": "particle_167_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3968": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_168_001.png", + "glow_frame": "particle_168_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3969": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_169_001.png", + "glow_frame": "particle_169_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3970": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_170_001.png", + "glow_frame": "particle_170_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3971": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_171_001.png", + "glow_frame": "particle_171_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3972": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_172_001.png", + "glow_frame": "particle_172_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3973": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_173_001.png", + "glow_frame": "particle_173_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3974": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_174_001.png", + "glow_frame": "particle_174_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3975": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_175_001.png", + "glow_frame": "particle_175_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3976": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_176_001.png", + "glow_frame": "particle_176_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3977": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_177_001.png", + "glow_frame": "particle_177_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3978": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_178_001.png", + "glow_frame": "particle_178_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3979": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_179_001.png", + "glow_frame": "particle_179_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3980": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_180_001.png", + "glow_frame": "particle_180_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3981": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_181_001.png", + "glow_frame": "particle_181_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3982": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_182_001.png", + "glow_frame": "particle_182_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3983": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_183_001.png", + "glow_frame": "particle_183_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3984": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_184_001.png", + "glow_frame": "particle_184_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3985": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_185_001.png", + "glow_frame": "particle_185_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3986": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_186_001.png", + "glow_frame": "particle_186_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3987": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_187_001.png", + "glow_frame": "particle_187_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3988": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_188_001.png", + "glow_frame": "particle_188_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3989": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_189_001.png", + "glow_frame": "particle_189_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3990": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_190_001.png", + "glow_frame": "particle_190_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3991": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_191_001.png", + "glow_frame": "particle_191_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3992": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_192_001.png", + "glow_frame": "particle_192_glow_001.png", + "gridH": 1.0666667222976685, + "gridW": 1.0666667222976685, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3993": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_193_001.png", + "glow_frame": "particle_193_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3994": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_194_001.png", + "glow_frame": "particle_194_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3995": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_195_001.png", + "glow_frame": "particle_195_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3996": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_196_001.png", + "glow_frame": "particle_196_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3997": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_197_001.png", + "glow_frame": "particle_197_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3998": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_198_001.png", + "glow_frame": "particle_198_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "3999": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "particle_199_001.png", + "glow_frame": "particle_199_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "GJ_ParticleSheet-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4000": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1200_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1200_001.png", + "glow_frame": "pixelart_1200_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4001": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1201_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1201_001.png", + "glow_frame": "pixelart_1201_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4002": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1202_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1202_001.png", + "glow_frame": "pixelart_1202_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4003": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1203_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1203_001.png", + "glow_frame": "pixelart_1203_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4004": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1204_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1204_001.png", + "glow_frame": "pixelart_1204_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4005": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1205_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1205_001.png", + "glow_frame": "pixelart_1205_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4006": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1206_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1206_001.png", + "glow_frame": "pixelart_1206_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4007": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1207_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1207_001.png", + "glow_frame": "pixelart_1207_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4008": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1208_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1208_001.png", + "glow_frame": "pixelart_1208_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4009": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1209_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1209_001.png", + "glow_frame": "pixelart_1209_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4010": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1210_001.png", + "glow_frame": "pixelart_1210_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4011": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1211_001.png", + "glow_frame": "pixelart_1211_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4012": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1212_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1212_001.png", + "glow_frame": "pixelart_1212_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4013": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1213_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1213_001.png", + "glow_frame": "pixelart_1213_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4014": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1214_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1214_001.png", + "glow_frame": "pixelart_1214_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4015": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1215_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1215_001.png", + "glow_frame": "pixelart_1215_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4016": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1216_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1216_001.png", + "glow_frame": "pixelart_1216_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4017": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1217_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1217_001.png", + "glow_frame": "pixelart_1217_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4018": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1218_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1218_001.png", + "glow_frame": "pixelart_1218_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4019": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1219_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1219_001.png", + "glow_frame": "pixelart_1219_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4020": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1220_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1220_001.png", + "glow_frame": "pixelart_1220_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4021": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1221_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1221_001.png", + "glow_frame": "pixelart_1221_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4022": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1222_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1222_001.png", + "glow_frame": "pixelart_1222_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4023": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1223_001.png", + "glow_frame": "pixelart_1223_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4024": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1224_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1224_001.png", + "glow_frame": "pixelart_1224_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4025": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1225_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1225_001.png", + "glow_frame": "pixelart_1225_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4026": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1226_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1226_001.png", + "glow_frame": "pixelart_1226_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4027": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1227_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1227_001.png", + "glow_frame": "pixelart_1227_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4028": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1228_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1228_001.png", + "glow_frame": "pixelart_1228_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4029": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1229_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1229_001.png", + "glow_frame": "pixelart_1229_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4030": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1230_001.png", + "glow_frame": "pixelart_1230_glow_001.png", + "gridH": 0.5, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4031": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1231_001.png", + "glow_frame": "pixelart_1231_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4032": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1232_001.png", + "glow_frame": "pixelart_1232_glow_001.png", + "gridH": 0.5, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4033": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1233_001.png", + "glow_frame": "pixelart_1233_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4034": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1234_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1234_001.png", + "glow_frame": "pixelart_1234_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4035": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1235_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1235_001.png", + "glow_frame": "pixelart_1235_glow_001.png", + "gridH": 0.5, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4036": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1236_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1236_001.png", + "glow_frame": "pixelart_1236_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4037": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1237_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1237_001.png", + "glow_frame": "pixelart_1237_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4038": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1238_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1238_001.png", + "glow_frame": "pixelart_1238_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4039": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1239_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1239_001.png", + "glow_frame": "pixelart_1239_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4040": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1240_001.png", + "glow_frame": "pixelart_1240_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4041": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1241_001.png", + "glow_frame": "pixelart_1241_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4042": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1242_001.png", + "glow_frame": "pixelart_1242_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4043": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1243_001.png", + "glow_frame": "pixelart_1243_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4044": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1244_001.png", + "glow_frame": "pixelart_1244_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4045": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1245_001.png", + "glow_frame": "pixelart_1245_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4046": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1246_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1246_001.png", + "glow_frame": "pixelart_1246_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4047": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1247_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1247_001.png", + "glow_frame": "pixelart_1247_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4048": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1248_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1248_001.png", + "glow_frame": "pixelart_1248_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4049": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1249_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1249_001.png", + "glow_frame": "pixelart_1249_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4050": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1250_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1250_001.png", + "glow_frame": "pixelart_1250_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4051": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1251_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1251_001.png", + "glow_frame": "pixelart_1251_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4052": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1252_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1252_001.png", + "glow_frame": "pixelart_1252_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4053": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1253_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1253_001.png", + "glow_frame": "pixelart_1253_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4054": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1254_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1254_001.png", + "glow_frame": "pixelart_1254_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4055": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1255_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1255_001.png", + "glow_frame": "pixelart_1255_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4056": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1256_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1256_001.png", + "glow_frame": "pixelart_1256_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4057": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1257_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1257_001.png", + "glow_frame": "pixelart_1257_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4058": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1258_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1258_001.png", + "glow_frame": "pixelart_1258_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4059": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1259_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1259_001.png", + "glow_frame": "pixelart_1259_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4060": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1260_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1260_001.png", + "glow_frame": "pixelart_1260_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4061": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1261_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1261_001.png", + "glow_frame": "pixelart_1261_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4062": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1262_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1262_001.png", + "glow_frame": "pixelart_1262_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4063": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1263_001.png", + "glow_frame": "pixelart_1263_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4064": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1264_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1264_001.png", + "glow_frame": "pixelart_1264_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4065": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1265_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1265_001.png", + "glow_frame": "pixelart_1265_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4066": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1266_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1266_001.png", + "glow_frame": "pixelart_1266_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4067": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1267_001.png", + "glow_frame": "pixelart_1267_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4068": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1268_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1268_001.png", + "glow_frame": "pixelart_1268_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4069": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1269_001.png", + "glow_frame": "pixelart_1269_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4070": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1270_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1270_001.png", + "glow_frame": "pixelart_1270_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4071": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1271_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1271_001.png", + "glow_frame": "pixelart_1271_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4072": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1272_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1272_001.png", + "glow_frame": "pixelart_1272_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4073": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1273_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1273_001.png", + "glow_frame": "pixelart_1273_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4074": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1274_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1274_001.png", + "glow_frame": "pixelart_1274_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4075": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1275_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1275_001.png", + "glow_frame": "pixelart_1275_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4076": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1276_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1276_001.png", + "glow_frame": "pixelart_1276_glow_001.png", + "gridH": 0.7666666507720947, + "gridW": 0.6333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4077": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1277_001.png", + "glow_frame": "pixelart_1277_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4078": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1278_001.png", + "glow_frame": "pixelart_1278_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4079": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1279_001.png", + "glow_frame": "pixelart_1279_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4080": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1280_001.png", + "glow_frame": "pixelart_1280_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4081": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1281_001.png", + "glow_frame": "pixelart_1281_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4082": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1282_001.png", + "glow_frame": "pixelart_1282_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4083": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1283_001.png", + "glow_frame": "pixelart_1283_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4084": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1284_001.png", + "glow_frame": "pixelart_1284_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4085": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1285_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1285_001.png", + "glow_frame": "pixelart_1285_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4086": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1286_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1286_001.png", + "glow_frame": "pixelart_1286_glow_001.png", + "gridH": 0.5, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4087": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1287_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1287_001.png", + "glow_frame": "pixelart_1287_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4088": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1288_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1288_001.png", + "glow_frame": "pixelart_1288_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4089": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1289_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1289_001.png", + "glow_frame": "pixelart_1289_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4090": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1290_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1290_001.png", + "glow_frame": "pixelart_1290_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4091": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1291_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1291_001.png", + "glow_frame": "pixelart_1291_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4092": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1292_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1292_001.png", + "glow_frame": "pixelart_1292_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4093": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1293_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1293_001.png", + "glow_frame": "pixelart_1293_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4094": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1294_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1294_001.png", + "glow_frame": "pixelart_1294_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4095": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1295_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1295_001.png", + "glow_frame": "pixelart_1295_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4096": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1296_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1296_001.png", + "glow_frame": "pixelart_1296_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4097": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1297_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1297_001.png", + "glow_frame": "pixelart_1297_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4098": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1298_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1298_001.png", + "glow_frame": "pixelart_1298_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4099": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1299_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1299_001.png", + "glow_frame": "pixelart_1299_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4100": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1300_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1300_001.png", + "glow_frame": "pixelart_1300_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4101": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1301_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1301_001.png", + "glow_frame": "pixelart_1301_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4102": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1302_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1302_001.png", + "glow_frame": "pixelart_1302_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4103": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1303_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1303_001.png", + "glow_frame": "pixelart_1303_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4104": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1304_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1304_001.png", + "glow_frame": "pixelart_1304_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4105": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1305_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1305_001.png", + "glow_frame": "pixelart_1305_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4106": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1305_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1306_001.png", + "glow_frame": "pixelart_1306_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4107": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1307_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1307_001.png", + "glow_frame": "pixelart_1307_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4108": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1308_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1308_001.png", + "glow_frame": "pixelart_1308_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4109": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1309_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1309_001.png", + "glow_frame": "pixelart_1309_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4110": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1310_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1310_001.png", + "glow_frame": "pixelart_1310_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4111": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1311_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1311_001.png", + "glow_frame": "pixelart_1311_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4112": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1312_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1312_001.png", + "glow_frame": "pixelart_1312_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4113": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1313_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1313_001.png", + "glow_frame": "pixelart_1313_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4114": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1314_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1314_001.png", + "glow_frame": "pixelart_1314_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4115": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1315_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1315_001.png", + "glow_frame": "pixelart_1315_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4116": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1316_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1316_001.png", + "glow_frame": "pixelart_1316_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4117": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1317_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1317_001.png", + "glow_frame": "pixelart_1317_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4118": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1318_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1318_001.png", + "glow_frame": "pixelart_1318_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4119": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1319_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1319_001.png", + "glow_frame": "pixelart_1319_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4120": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1320_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1320_001.png", + "glow_frame": "pixelart_1320_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4121": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1321_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1321_001.png", + "glow_frame": "pixelart_1321_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4122": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1255_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1322_001.png", + "glow_frame": "pixelart_1322_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4123": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1323_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1323_001.png", + "glow_frame": "pixelart_1323_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4124": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1324_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1324_001.png", + "glow_frame": "pixelart_1324_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4125": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1325_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1325_001.png", + "glow_frame": "pixelart_1325_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4126": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1326_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1326_001.png", + "glow_frame": "pixelart_1326_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4127": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1327_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1327_001.png", + "glow_frame": "pixelart_1327_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4128": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1327_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1328_001.png", + "glow_frame": "pixelart_1328_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4129": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1329_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1329_001.png", + "glow_frame": "pixelart_1329_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4130": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1330_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1330_001.png", + "glow_frame": "pixelart_1330_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4131": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1331_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1331_001.png", + "glow_frame": "pixelart_1331_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4132": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1332_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1332_001.png", + "glow_frame": "pixelart_1332_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4133": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1333_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1333_001.png", + "glow_frame": "pixelart_1333_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4134": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1334_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1334_001.png", + "glow_frame": "pixelart_1334_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4135": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1335_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1335_001.png", + "glow_frame": "pixelart_1335_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4136": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1336_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1336_001.png", + "glow_frame": "pixelart_1336_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4137": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1337_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1337_001.png", + "glow_frame": "pixelart_1337_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4138": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1338_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1338_001.png", + "glow_frame": "pixelart_1338_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4139": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1339_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1339_001.png", + "glow_frame": "pixelart_1339_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4140": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1340_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1340_001.png", + "glow_frame": "pixelart_1340_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4141": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1341_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1341_001.png", + "glow_frame": "pixelart_1341_glow_001.png", + "gridH": 0.5, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4142": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1342_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1342_001.png", + "glow_frame": "pixelart_1342_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.699999988079071, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4143": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1343_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1343_001.png", + "glow_frame": "pixelart_1343_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4144": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1344_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1344_001.png", + "glow_frame": "pixelart_1344_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4145": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1345_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1345_001.png", + "glow_frame": "pixelart_1345_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4146": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1346_001.png", + "glow_frame": "pixelart_1346_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4147": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1347_001.png", + "glow_frame": "pixelart_1347_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4148": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1348_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1348_001.png", + "glow_frame": "pixelart_1348_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4149": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1349_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1349_001.png", + "glow_frame": "pixelart_1349_glow_001.png", + "gridH": 0.5, + "gridW": 0.6333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4150": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1350_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1350_001.png", + "glow_frame": "pixelart_1350_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4151": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1351_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1351_001.png", + "glow_frame": "pixelart_1351_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.699999988079071, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4152": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1352_001.png", + "glow_frame": "pixelart_1352_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4153": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1353_001.png", + "glow_frame": "pixelart_1353_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4154": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1354_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1354_001.png", + "glow_frame": "pixelart_1354_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4155": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1355_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1355_001.png", + "glow_frame": "pixelart_1355_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4156": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1356_001.png", + "glow_frame": "pixelart_1356_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.6333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4157": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1357_001.png", + "glow_frame": "pixelart_1357_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4158": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1358_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1358_001.png", + "glow_frame": "pixelart_1358_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.9333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4159": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1359_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1359_001.png", + "glow_frame": "pixelart_1359_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4160": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1360_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1360_001.png", + "glow_frame": "pixelart_1360_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4161": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1361_001.png", + "glow_frame": "pixelart_1361_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4162": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1362_001.png", + "glow_frame": "pixelart_1362_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4163": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1363_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1363_001.png", + "glow_frame": "pixelart_1363_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4164": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1364_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1364_001.png", + "glow_frame": "pixelart_1364_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4165": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1365_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1365_001.png", + "glow_frame": "pixelart_1365_glow_001.png", + "gridH": 0.5, + "gridW": 1.0666667222976685, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4166": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1366_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1366_001.png", + "glow_frame": "pixelart_1366_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.800000011920929, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4167": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1367_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1367_001.png", + "glow_frame": "pixelart_1367_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4168": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1368_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1368_001.png", + "glow_frame": "pixelart_1368_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4169": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1369_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1369_001.png", + "glow_frame": "pixelart_1369_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4170": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1370_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1370_001.png", + "glow_frame": "pixelart_1370_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.7666666507720947, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4171": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1371_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1371_001.png", + "glow_frame": "pixelart_1371_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4172": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1372_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1372_001.png", + "glow_frame": "pixelart_1372_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.7666666507720947, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4173": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1373_001.png", + "glow_frame": "pixelart_1373_glow_001.png", + "gridH": 0.6666666865348816, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4174": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1374_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1374_001.png", + "glow_frame": "pixelart_1374_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4175": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1375_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1375_001.png", + "glow_frame": "pixelart_1375_glow_001.png", + "gridH": 0.9333333373069763, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4176": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1376_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1376_001.png", + "glow_frame": "pixelart_1376_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.800000011920929, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4177": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1377_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1377_001.png", + "glow_frame": "pixelart_1377_glow_001.png", + "gridH": 0.699999988079071, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4178": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1258_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1378_001.png", + "glow_frame": "pixelart_1378_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4179": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1379_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1379_001.png", + "glow_frame": "pixelart_1379_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4180": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1380_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1380_001.png", + "glow_frame": "pixelart_1380_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5666666626930237, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4181": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1381_001.png", + "glow_frame": "pixelart_1381_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4182": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1382_001.png", + "glow_frame": "pixelart_1382_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4183": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1383_001.png", + "glow_frame": "pixelart_1383_glow_001.png", + "gridH": 0.5, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4184": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1384_001.png", + "glow_frame": "pixelart_1384_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4185": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1385_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1385_001.png", + "glow_frame": "pixelart_1385_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.699999988079071, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4186": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1386_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1386_001.png", + "glow_frame": "pixelart_1386_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 1.2666666507720947, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4187": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1387_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1387_001.png", + "glow_frame": "pixelart_1387_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4188": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1388_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1388_001.png", + "glow_frame": "pixelart_1388_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4189": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1389_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1389_001.png", + "glow_frame": "pixelart_1389_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4190": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1390_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1390_001.png", + "glow_frame": "pixelart_1390_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4191": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1391_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1391_001.png", + "glow_frame": "pixelart_1391_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4192": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1392_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1392_001.png", + "glow_frame": "pixelart_1392_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4193": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1392_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1393_001.png", + "glow_frame": "pixelart_1393_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4194": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1394_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1394_001.png", + "glow_frame": "pixelart_1394_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4195": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1395_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1395_001.png", + "glow_frame": "pixelart_1395_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4196": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1396_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1396_001.png", + "glow_frame": "pixelart_1396_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4197": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1397_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1397_001.png", + "glow_frame": "pixelart_1397_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4198": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1398_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1398_001.png", + "glow_frame": "pixelart_1398_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4199": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1399_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1399_001.png", + "glow_frame": "pixelart_1399_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4200": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1258_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1400_001.png", + "glow_frame": "pixelart_1400_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4201": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1401_001.png", + "glow_frame": "pixelart_1401_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4202": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1402_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1402_001.png", + "glow_frame": "pixelart_1402_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4203": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1403_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1403_001.png", + "glow_frame": "pixelart_1403_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4204": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1404_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1404_001.png", + "glow_frame": "pixelart_1404_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4205": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1405_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1405_001.png", + "glow_frame": "pixelart_1405_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4206": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1406_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1406_001.png", + "glow_frame": "pixelart_1406_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4207": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1407_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1407_001.png", + "glow_frame": "pixelart_1407_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4208": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1408_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1408_001.png", + "glow_frame": "pixelart_1408_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4209": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1409_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1409_001.png", + "glow_frame": "pixelart_1409_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4210": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1410_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1410_001.png", + "glow_frame": "pixelart_1410_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4211": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1411_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1411_001.png", + "glow_frame": "pixelart_1411_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4212": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1412_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1412_001.png", + "glow_frame": "pixelart_1412_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4213": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1413_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1413_001.png", + "glow_frame": "pixelart_1413_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4214": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1414_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1414_001.png", + "glow_frame": "pixelart_1414_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4215": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1415_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1415_001.png", + "glow_frame": "pixelart_1415_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4216": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1416_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1416_001.png", + "glow_frame": "pixelart_1416_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4217": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1417_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1417_001.png", + "glow_frame": "pixelart_1417_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4218": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1418_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1418_001.png", + "glow_frame": "pixelart_1418_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4219": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1419_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1419_001.png", + "glow_frame": "pixelart_1419_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4220": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1420_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1420_001.png", + "glow_frame": "pixelart_1420_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4221": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1421_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1421_001.png", + "glow_frame": "pixelart_1421_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4222": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1422_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1422_001.png", + "glow_frame": "pixelart_1422_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4223": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1423_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1423_001.png", + "glow_frame": "pixelart_1423_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4224": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1424_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1424_001.png", + "glow_frame": "pixelart_1424_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4225": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1425_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1425_001.png", + "glow_frame": "pixelart_1425_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4226": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1426_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1426_001.png", + "glow_frame": "pixelart_1426_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4227": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1427_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1427_001.png", + "glow_frame": "pixelart_1427_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4228": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1428_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1428_001.png", + "glow_frame": "pixelart_1428_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4229": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1429_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1330_001.png", + "glow_frame": "pixelart_1330_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4230": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1430_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1430_001.png", + "glow_frame": "pixelart_1430_glow_001.png", + "gridH": 0.5, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4231": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1431_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1431_001.png", + "glow_frame": "pixelart_1431_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4232": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1432_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1432_001.png", + "glow_frame": "pixelart_1432_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4233": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1433_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1433_001.png", + "glow_frame": "pixelart_1433_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4234": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1434_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1434_001.png", + "glow_frame": "pixelart_1434_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4235": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1435_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1435_001.png", + "glow_frame": "pixelart_1435_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4236": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1436_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1436_001.png", + "glow_frame": "pixelart_1436_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4237": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1437_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1437_001.png", + "glow_frame": "pixelart_1437_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4238": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1438_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1438_001.png", + "glow_frame": "pixelart_1438_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4239": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1439_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1439_001.png", + "glow_frame": "pixelart_1439_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4240": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1440_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1440_001.png", + "glow_frame": "pixelart_1440_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4241": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1441_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1441_001.png", + "glow_frame": "pixelart_1441_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4242": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1442_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1442_001.png", + "glow_frame": "pixelart_1442_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4243": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1443_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1443_001.png", + "glow_frame": "pixelart_1443_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4244": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1444_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1444_001.png", + "glow_frame": "pixelart_1444_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4245": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1445_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1445_001.png", + "glow_frame": "pixelart_1445_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4246": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1446_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1446_001.png", + "glow_frame": "pixelart_1446_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4247": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1447_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1447_001.png", + "glow_frame": "pixelart_1447_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4248": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1448_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1448_001.png", + "glow_frame": "pixelart_1448_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4249": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1449_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1449_001.png", + "glow_frame": "pixelart_1449_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 0.8999999761581421, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4250": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1450_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1450_001.png", + "glow_frame": "pixelart_1450_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4251": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1451_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1451_001.png", + "glow_frame": "pixelart_1451_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4252": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1452_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1452_001.png", + "glow_frame": "pixelart_1452_glow_001.png", + "gridH": 0.5666666626930237, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4253": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1453_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1453_001.png", + "glow_frame": "pixelart_1453_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.6666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4254": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1454_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1454_001.png", + "glow_frame": "pixelart_1454_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4255": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1455_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1455_001.png", + "glow_frame": "pixelart_1455_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4256": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1456_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1456_001.png", + "glow_frame": "pixelart_1456_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4257": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1457_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1457_001.png", + "glow_frame": "pixelart_1457_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4258": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1458_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1458_001.png", + "glow_frame": "pixelart_1458_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4259": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1459_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1459_001.png", + "glow_frame": "pixelart_1459_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4260": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1460_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1460_001.png", + "glow_frame": "pixelart_1460_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4261": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1461_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1461_001.png", + "glow_frame": "pixelart_1461_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4262": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1462_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1462_001.png", + "glow_frame": "pixelart_1462_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4263": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1463_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1463_001.png", + "glow_frame": "pixelart_1463_glow_001.png", + "gridH": 0.5, + "gridW": 0.6000000238418579, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4264": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1464_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1464_001.png", + "glow_frame": "pixelart_1464_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4265": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1465_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1465_001.png", + "glow_frame": "pixelart_1465_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4266": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1466_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1466_001.png", + "glow_frame": "pixelart_1466_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4267": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1467_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1467_001.png", + "glow_frame": "pixelart_1467_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4268": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1468_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1468_001.png", + "glow_frame": "pixelart_1468_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4269": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1469_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1469_001.png", + "glow_frame": "pixelart_1469_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4270": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1470_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1470_001.png", + "glow_frame": "pixelart_1470_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4271": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1471_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1471_001.png", + "glow_frame": "pixelart_1471_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4272": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1472_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1472_001.png", + "glow_frame": "pixelart_1472_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4273": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1468_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1473_001.png", + "glow_frame": "pixelart_1473_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4274": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1474_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1474_001.png", + "glow_frame": "pixelart_1474_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4275": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1475_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1475_001.png", + "glow_frame": "pixelart_1475_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4276": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1476_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1476_001.png", + "glow_frame": "pixelart_1476_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4277": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1477_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1477_001.png", + "glow_frame": "pixelart_1477_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4278": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1478_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1478_001.png", + "glow_frame": "pixelart_1478_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4279": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1479_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1479_001.png", + "glow_frame": "pixelart_1479_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4280": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1480_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1480_001.png", + "glow_frame": "pixelart_1480_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4281": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1481_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1481_001.png", + "glow_frame": "pixelart_1481_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4282": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1482_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1482_001.png", + "glow_frame": "pixelart_1482_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4283": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1483_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1483_001.png", + "glow_frame": "pixelart_1483_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4284": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1484_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1484_001.png", + "glow_frame": "pixelart_1484_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4285": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1485_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1485_001.png", + "glow_frame": "pixelart_1485_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4286": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1486_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1486_001.png", + "glow_frame": "pixelart_1486_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4287": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1487_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1487_001.png", + "glow_frame": "pixelart_1487_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4288": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1488_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1488_001.png", + "glow_frame": "pixelart_1488_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4289": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1489_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1489_001.png", + "glow_frame": "pixelart_1489_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4290": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1490_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1490_001.png", + "glow_frame": "pixelart_1490_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4291": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1491_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1491_001.png", + "glow_frame": "pixelart_1491_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4292": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1492_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1492_001.png", + "glow_frame": "pixelart_1492_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4293": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1493_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1493_001.png", + "glow_frame": "pixelart_1493_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4294": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1494_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1494_001.png", + "glow_frame": "pixelart_1494_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4295": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1495_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1495_001.png", + "glow_frame": "pixelart_1495_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4296": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1496_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1496_001.png", + "glow_frame": "pixelart_1496_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4297": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1497_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1497_001.png", + "glow_frame": "pixelart_1497_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4298": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1498_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1498_001.png", + "glow_frame": "pixelart_1498_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4299": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1499_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1499_001.png", + "glow_frame": "pixelart_1499_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4300": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1500_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1500_001.png", + "glow_frame": "pixelart_1500_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.800000011920929, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4301": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1501_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1501_001.png", + "glow_frame": "pixelart_1501_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4302": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1502_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1502_001.png", + "glow_frame": "pixelart_1502_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4303": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1503_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1503_001.png", + "glow_frame": "pixelart_1503_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4304": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1504_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1504_001.png", + "glow_frame": "pixelart_1504_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4305": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1505_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1505_001.png", + "glow_frame": "pixelart_1505_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4306": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1506_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1506_001.png", + "glow_frame": "pixelart_1506_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4307": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1507_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1507_001.png", + "glow_frame": "pixelart_1507_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4308": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1508_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1508_001.png", + "glow_frame": "pixelart_1508_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4309": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1509_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1509_001.png", + "glow_frame": "pixelart_1509_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4310": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1510_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1510_001.png", + "glow_frame": "pixelart_1510_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4311": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1511_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1511_001.png", + "glow_frame": "pixelart_1511_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4312": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1512_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1512_001.png", + "glow_frame": "pixelart_1512_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4313": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1513_001.png", + "glow_frame": "pixelart_1513_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4314": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1126_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1139_001.png", + "glow_frame": "pixelart_1139_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.03333333507180214, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4315": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1515_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1515_001.png", + "glow_frame": "pixelart_1515_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4316": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1516_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1516_001.png", + "glow_frame": "pixelart_1516_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4317": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1517_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1517_001.png", + "glow_frame": "pixelart_1517_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4318": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1518_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1518_001.png", + "glow_frame": "pixelart_1518_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4319": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1519_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1519_001.png", + "glow_frame": "pixelart_1519_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4320": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1520_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1520_001.png", + "glow_frame": "pixelart_1520_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4321": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1521_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1521_001.png", + "glow_frame": "pixelart_1521_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4322": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1522_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1522_001.png", + "glow_frame": "pixelart_1522_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4323": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1523_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1523_001.png", + "glow_frame": "pixelart_1523_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4324": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1524_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1524_001.png", + "glow_frame": "pixelart_1524_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4325": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1525_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1525_001.png", + "glow_frame": "pixelart_1525_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4326": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1526_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1526_001.png", + "glow_frame": "pixelart_1526_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4327": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1527_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1527_001.png", + "glow_frame": "pixelart_1527_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4328": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1528_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1528_001.png", + "glow_frame": "pixelart_1528_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4329": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1529_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1529_001.png", + "glow_frame": "pixelart_1529_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4330": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1529_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1530_001.png", + "glow_frame": "pixelart_1530_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4331": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1531_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1531_001.png", + "glow_frame": "pixelart_1531_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4332": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1532_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1532_001.png", + "glow_frame": "pixelart_1532_glow_001.png", + "gridH": 0.5, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4333": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1533_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1533_001.png", + "glow_frame": "pixelart_1533_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4334": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1534_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1534_001.png", + "glow_frame": "pixelart_1534_glow_001.png", + "gridH": 0.5, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4335": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1535_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1535_001.png", + "glow_frame": "pixelart_1535_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4336": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1536_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1536_001.png", + "glow_frame": "pixelart_1536_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4337": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1537_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1537_001.png", + "glow_frame": "pixelart_1537_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4338": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1538_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1538_001.png", + "glow_frame": "pixelart_1538_glow_001.png", + "gridH": 0.6000000238418579, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4339": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1539_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1539_001.png", + "glow_frame": "pixelart_1539_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4340": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1540_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1540_001.png", + "glow_frame": "pixelart_1540_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4341": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1541_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1541_001.png", + "glow_frame": "pixelart_1541_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4342": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1542_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1542_001.png", + "glow_frame": "pixelart_1542_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4343": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1543_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1403_001.png", + "glow_frame": "pixelart_1403_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4344": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1544_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1544_001.png", + "glow_frame": "pixelart_1544_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4345": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1545_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1545_001.png", + "glow_frame": "pixelart_1545_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4346": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1546_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1546_001.png", + "glow_frame": "pixelart_1546_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4347": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1547_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1547_001.png", + "glow_frame": "pixelart_1547_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.10000000149011612, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4348": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1548_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1548_001.png", + "glow_frame": "pixelart_1548_glow_001.png", + "gridH": 0.5, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4349": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1549_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1549_001.png", + "glow_frame": "pixelart_1549_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4350": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1550_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1550_001.png", + "glow_frame": "pixelart_1550_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4351": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1551_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1551_001.png", + "glow_frame": "pixelart_1551_glow_001.png", + "gridH": 0.2666666805744171, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4352": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1552_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1552_001.png", + "glow_frame": "pixelart_1552_glow_001.png", + "gridH": 0.4000000059604645, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4353": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1553_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1553_001.png", + "glow_frame": "pixelart_1553_glow_001.png", + "gridH": 0.8999999761581421, + "gridW": 0.8999999761581421, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4354": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1554_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1554_001.png", + "glow_frame": "pixelart_1554_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4355": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1555_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1555_001.png", + "glow_frame": "pixelart_1555_glow_001.png", + "gridH": 0.30000001192092896, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4356": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1556_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1556_001.png", + "glow_frame": "pixelart_1556_glow_001.png", + "gridH": 0.36666667461395264, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4357": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1557_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1557_001.png", + "glow_frame": "pixelart_1557_glow_001.png", + "gridH": 0.3333333432674408, + "gridW": 0.23333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4358": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1558_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1558_001.png", + "glow_frame": "pixelart_1558_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4359": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1559_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1559_001.png", + "glow_frame": "pixelart_1559_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4360": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1560_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1560_001.png", + "glow_frame": "pixelart_1560_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.4000000059604645, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4361": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1561_001.png", + "glow_frame": "pixelart_1561_glow_001.png", + "gridH": 0.03333333507180214, + "gridW": 0.3333333432674408, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4362": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1562_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1562_001.png", + "glow_frame": "pixelart_1562_glow_001.png", + "gridH": 0.4333333373069763, + "gridW": 0.30000001192092896, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4363": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1563_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1563_001.png", + "glow_frame": "pixelart_1563_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.7333333492279053, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4364": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1564_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1564_001.png", + "glow_frame": "pixelart_1564_glow_001.png", + "gridH": 0.13333334028720856, + "gridW": 0.2666666805744171, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4365": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1565_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1565_001.png", + "glow_frame": "pixelart_1565_glow_001.png", + "gridH": 0.1666666716337204, + "gridW": 0.6333333253860474, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4366": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1566_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1566_001.png", + "glow_frame": "pixelart_1566_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.699999988079071, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4367": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1567_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1567_001.png", + "glow_frame": "pixelart_1567_glow_001.png", + "gridH": 0.23333333432674408, + "gridW": 0.36666667461395264, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4368": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1568_001.png", + "glow_frame": "pixelart_1568_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4369": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1569_001.png", + "glow_frame": "pixelart_1569_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4370": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1570_001.png", + "glow_frame": "pixelart_1570_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4371": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1571_001.png", + "glow_frame": "pixelart_1571_glow_001.png", + "gridH": 0.5, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4372": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1572_001.png", + "glow_frame": "pixelart_1572_glow_001.png", + "gridH": 0.5, + "gridW": 0.13333334028720856, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4373": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1573_001.png", + "glow_frame": "pixelart_1573_glow_001.png", + "gridH": 0.5, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4374": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1574_001.png", + "glow_frame": "pixelart_1574_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4375": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1575_001.png", + "glow_frame": "pixelart_1575_glow_001.png", + "gridH": 0.46666666865348816, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4376": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1576_001.png", + "glow_frame": "pixelart_1576_glow_001.png", + "gridH": 0.5, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4377": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1577_001.png", + "glow_frame": "pixelart_1577_glow_001.png", + "gridH": 0.06666667014360428, + "gridW": 0.06666667014360428, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4378": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1578_001.png", + "glow_frame": "pixelart_1578_glow_001.png", + "gridH": 0.5, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4379": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1579_001.png", + "glow_frame": "pixelart_1579_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.1666666716337204, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4380": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1580_001.png", + "glow_frame": "pixelart_1580_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.4333333373069763, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4381": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1581_001.png", + "glow_frame": "pixelart_1581_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.46666666865348816, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4382": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1582_001.png", + "glow_frame": "pixelart_1582_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4383": { + "can_color": true, + "default_base_color_channel": 1, + "frame": "pixelart_1583_001.png", + "glow_frame": "pixelart_1583_glow_001.png", + "gridH": 0.10000000149011612, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 10, + "default_detail_color_channel": -1, + "default_z_layer": 3, + "default_z_order": 10 + }, + "4384": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1584_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1584_001.png", + "glow_frame": "pixelart_1584_glow_001.png", + "gridH": 0.5333333611488342, + "gridW": 0.5333333611488342, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4385": { + "can_color": true, + "children": [ + { + "frame": "pixelart_1585_color_001.png", + "localDy": 0, + "tint": 52224, + "z": 100 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 2, + "frame": "pixelart_1585_001.png", + "glow_frame": "pixelart_1585_glow_001.png", + "gridH": 0.20000000298023224, + "gridW": 0.20000000298023224, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 3, + "default_z_order": 9 + }, + "4401": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_001_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_001_001.png", + "glow_frame": "pixelitem_001_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4402": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_002_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_002_001.png", + "glow_frame": "pixelitem_002_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4403": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_003_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_003_001.png", + "glow_frame": "pixelitem_003_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4404": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_004_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_004_001.png", + "glow_frame": "pixelitem_004_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4405": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_005_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_005_001.png", + "glow_frame": "pixelitem_005_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4406": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_006_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_006_001.png", + "glow_frame": "pixelitem_006_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4407": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_007_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_007_001.png", + "glow_frame": "pixelitem_007_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4408": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_008_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_008_001.png", + "glow_frame": "pixelitem_008_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4409": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_009_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_009_001.png", + "glow_frame": "pixelitem_009_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4410": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_010_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_010_001.png", + "glow_frame": "pixelitem_010_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4411": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_011_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_011_001.png", + "glow_frame": "pixelitem_011_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4412": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_012_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_012_001.png", + "glow_frame": "pixelitem_012_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4413": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_013_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_013_001.png", + "glow_frame": "pixelitem_013_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4414": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_014_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_014_001.png", + "glow_frame": "pixelitem_014_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4415": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_015_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_015_001.png", + "glow_frame": "pixelitem_015_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4416": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_016_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_016_001.png", + "glow_frame": "pixelitem_016_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4417": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_017_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_017_001.png", + "glow_frame": "pixelitem_017_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4418": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_018_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_018_001.png", + "glow_frame": "pixelitem_018_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4419": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_019_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_019_001.png", + "glow_frame": "pixelitem_019_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4420": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_020_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_020_001.png", + "glow_frame": "pixelitem_020_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4421": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_021_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_021_001.png", + "glow_frame": "pixelitem_021_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4422": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_022_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_022_001.png", + "glow_frame": "pixelitem_022_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4423": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_023_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_023_001.png", + "glow_frame": "pixelitem_023_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4424": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_024_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_024_001.png", + "glow_frame": "pixelitem_024_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4425": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_025_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_025_001.png", + "glow_frame": "pixelitem_025_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4426": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_026_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_026_001.png", + "glow_frame": "pixelitem_026_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4427": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_027_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_027_001.png", + "glow_frame": "pixelitem_027_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4428": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_028_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_028_001.png", + "glow_frame": "pixelitem_028_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4429": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_029_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_029_001.png", + "glow_frame": "pixelitem_029_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4430": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_030_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_030_001.png", + "glow_frame": "pixelitem_030_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4431": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_031_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_031_001.png", + "glow_frame": "pixelitem_031_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4432": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_032_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_032_001.png", + "glow_frame": "pixelitem_032_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4433": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_033_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_033_001.png", + "glow_frame": "pixelitem_033_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4434": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_034_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_034_001.png", + "glow_frame": "pixelitem_034_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4435": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_035_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_035_001.png", + "glow_frame": "pixelitem_035_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4436": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_036_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_036_001.png", + "glow_frame": "pixelitem_036_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4437": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_037_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_037_001.png", + "glow_frame": "pixelitem_037_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4438": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_038_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_038_001.png", + "glow_frame": "pixelitem_038_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4439": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_039_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_039_001.png", + "glow_frame": "pixelitem_039_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4440": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_040_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_040_001.png", + "glow_frame": "pixelitem_040_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4441": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_041_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_041_001.png", + "glow_frame": "pixelitem_041_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4442": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_042_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_042_001.png", + "glow_frame": "pixelitem_042_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4443": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_043_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_043_001.png", + "glow_frame": "pixelitem_043_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4444": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_044_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_044_001.png", + "glow_frame": "pixelitem_044_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4445": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_045_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_045_001.png", + "glow_frame": "pixelitem_045_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4446": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_046_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_046_001.png", + "glow_frame": "pixelitem_046_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4447": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_047_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_047_001.png", + "glow_frame": "pixelitem_047_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4448": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_048_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_048_001.png", + "glow_frame": "pixelitem_048_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4449": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_049_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_049_001.png", + "glow_frame": "pixelitem_049_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4450": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_050_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_050_001.png", + "glow_frame": "pixelitem_050_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4451": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_051_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_051_001.png", + "glow_frame": "pixelitem_051_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4452": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_052_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_052_001.png", + "glow_frame": "pixelitem_052_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4453": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_053_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_053_001.png", + "glow_frame": "pixelitem_053_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4454": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_054_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_054_001.png", + "glow_frame": "pixelitem_054_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4455": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_055_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_055_001.png", + "glow_frame": "pixelitem_055_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4456": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_056_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_056_001.png", + "glow_frame": "pixelitem_056_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4457": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_057_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_057_001.png", + "glow_frame": "pixelitem_057_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4458": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_058_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_058_001.png", + "glow_frame": "pixelitem_058_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4459": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_059_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_059_001.png", + "glow_frame": "pixelitem_059_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4460": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_060_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_060_001.png", + "glow_frame": "pixelitem_060_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4461": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_061_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_061_001.png", + "glow_frame": "pixelitem_061_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4462": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_062_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_062_001.png", + "glow_frame": "pixelitem_062_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4463": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_063_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_063_001.png", + "glow_frame": "pixelitem_063_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4464": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_064_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_064_001.png", + "glow_frame": "pixelitem_064_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4465": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_065_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_065_001.png", + "glow_frame": "pixelitem_065_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4466": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_066_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_066_001.png", + "glow_frame": "pixelitem_066_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4467": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_067_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_067_001.png", + "glow_frame": "pixelitem_067_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4468": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_068_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_068_001.png", + "glow_frame": "pixelitem_068_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4469": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_069_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_069_001.png", + "glow_frame": "pixelitem_069_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4470": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_070_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_070_001.png", + "glow_frame": "pixelitem_070_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4471": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_071_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_071_001.png", + "glow_frame": "pixelitem_071_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4472": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_072_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_072_001.png", + "glow_frame": "pixelitem_072_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4473": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_073_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_073_001.png", + "glow_frame": "pixelitem_073_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4474": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_074_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_074_001.png", + "glow_frame": "pixelitem_074_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4475": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_075_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_075_001.png", + "glow_frame": "pixelitem_075_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4476": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_076_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_076_001.png", + "glow_frame": "pixelitem_076_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4477": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_077_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_077_001.png", + "glow_frame": "pixelitem_077_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4478": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_078_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_078_001.png", + "glow_frame": "pixelitem_078_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4479": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_079_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_079_001.png", + "glow_frame": "pixelitem_079_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4480": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_080_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_080_001.png", + "glow_frame": "pixelitem_080_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4481": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_081_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_081_001.png", + "glow_frame": "pixelitem_081_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4482": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_082_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_082_001.png", + "glow_frame": "pixelitem_082_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4483": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_083_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_083_001.png", + "glow_frame": "pixelitem_083_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4484": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_084_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_084_001.png", + "glow_frame": "pixelitem_084_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4485": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_085_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_085_001.png", + "glow_frame": "pixelitem_085_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4486": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_086_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_086_001.png", + "glow_frame": "pixelitem_086_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4487": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_087_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_087_001.png", + "glow_frame": "pixelitem_087_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4488": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_088_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_088_001.png", + "glow_frame": "pixelitem_088_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4489": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_089_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_089_001.png", + "glow_frame": "pixelitem_089_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4490": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_090_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_090_001.png", + "glow_frame": "pixelitem_090_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4491": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_091_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_091_001.png", + "glow_frame": "pixelitem_091_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4492": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_092_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_092_001.png", + "glow_frame": "pixelitem_092_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4493": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_093_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_093_001.png", + "glow_frame": "pixelitem_093_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4494": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_094_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_094_001.png", + "glow_frame": "pixelitem_094_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4495": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_095_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_095_001.png", + "glow_frame": "pixelitem_095_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4496": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_096_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_096_001.png", + "glow_frame": "pixelitem_096_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4497": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_097_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_097_001.png", + "glow_frame": "pixelitem_097_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4498": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_098_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_098_001.png", + "glow_frame": "pixelitem_098_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4499": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_099_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_099_001.png", + "glow_frame": "pixelitem_099_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4500": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_100_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_100_001.png", + "glow_frame": "pixelitem_100_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4501": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_101_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_101_001.png", + "glow_frame": "pixelitem_101_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4502": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_102_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_102_001.png", + "glow_frame": "pixelitem_102_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4503": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_103_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_103_001.png", + "glow_frame": "pixelitem_103_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4504": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_104_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_104_001.png", + "glow_frame": "pixelitem_104_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4505": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_105_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_105_001.png", + "glow_frame": "pixelitem_105_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4506": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_106_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_106_001.png", + "glow_frame": "pixelitem_106_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4507": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_107_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_107_001.png", + "glow_frame": "pixelitem_107_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4508": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_108_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_108_001.png", + "glow_frame": "pixelitem_108_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4509": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_109_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_109_001.png", + "glow_frame": "pixelitem_109_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4510": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_110_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_110_001.png", + "glow_frame": "pixelitem_110_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4511": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_111_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_111_001.png", + "glow_frame": "pixelitem_111_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4512": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_112_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_112_001.png", + "glow_frame": "pixelitem_112_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4513": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_113_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_113_001.png", + "glow_frame": "pixelitem_113_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4514": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_114_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_114_001.png", + "glow_frame": "pixelitem_114_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4515": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_115_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_115_001.png", + "glow_frame": "pixelitem_115_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4516": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_116_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_116_001.png", + "glow_frame": "pixelitem_116_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4517": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_117_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_117_001.png", + "glow_frame": "pixelitem_117_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4518": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_118_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_118_001.png", + "glow_frame": "pixelitem_118_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4519": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_119_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_119_001.png", + "glow_frame": "pixelitem_119_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4520": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_120_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_120_001.png", + "glow_frame": "pixelitem_120_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4521": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_121_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_121_001.png", + "glow_frame": "pixelitem_121_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4522": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_122_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_122_001.png", + "glow_frame": "pixelitem_122_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4523": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_123_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_123_001.png", + "glow_frame": "pixelitem_123_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4524": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_124_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_124_001.png", + "glow_frame": "pixelitem_124_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4525": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_125_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_125_001.png", + "glow_frame": "pixelitem_125_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4526": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_126_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_126_001.png", + "glow_frame": "pixelitem_126_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4527": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_127_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_127_001.png", + "glow_frame": "pixelitem_127_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4528": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_128_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_128_001.png", + "glow_frame": "pixelitem_128_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4529": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_129_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_129_001.png", + "glow_frame": "pixelitem_129_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4530": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_130_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_130_001.png", + "glow_frame": "pixelitem_130_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4531": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_131_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_131_001.png", + "glow_frame": "pixelitem_131_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4532": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_132_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_132_001.png", + "glow_frame": "pixelitem_132_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4533": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_133_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_133_001.png", + "glow_frame": "pixelitem_133_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4534": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_134_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_134_001.png", + "glow_frame": "pixelitem_134_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4535": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_135_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_135_001.png", + "glow_frame": "pixelitem_135_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4536": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_136_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_136_001.png", + "glow_frame": "pixelitem_136_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4537": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_137_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_137_001.png", + "glow_frame": "pixelitem_137_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4538": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_138_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_138_001.png", + "glow_frame": "pixelitem_138_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + }, + "4539": { + "can_color": true, + "children": [ + { + "frame": "pixelitem_139_001.png", + "localDy": 0, + "tint": 65280, + "z": -1 + } + ], + "default_base_color_channel": 1, + "default_detail_color_channel": 1011, + "frame": "pixelitem_139_001.png", + "glow_frame": "pixelitem_139_glow_001.png", + "gridH": 1, + "gridW": 1, + "spritesheet": "PixelSheet_01-uhd", + "type": "deco", + "z": 9, + "default_z_layer": 5, + "default_z_order": 9 + } +}; +}