diff --git a/assets/FirstScene/loadBg.jpg b/assets/FirstScene/loadBg.jpg index 0eefe97..f57e8cd 100644 Binary files a/assets/FirstScene/loadBg.jpg and b/assets/FirstScene/loadBg.jpg differ diff --git a/assets/Scene/GameScene.fire b/assets/Scene/GameScene.fire index c8545c4..b987405 100644 --- a/assets/Scene/GameScene.fire +++ b/assets/Scene/GameScene.fire @@ -3291,7 +3291,7 @@ "__id__": 15 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { "__id__": 65 @@ -5540,6 +5540,9 @@ }, { "__uuid__": "a3280e0e-15d7-441c-881f-4477b3741f73" + }, + { + "__uuid__": "795893b9-5913-43d1-a93f-c6c5751d131d" } ], "MapBlockPrefab": { @@ -56791,7 +56794,7 @@ "__id__": 1076 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { "__id__": 1198 diff --git a/assets/Scene/HomeScene.fire b/assets/Scene/HomeScene.fire index 9ef448d..e018af9 100644 --- a/assets/Scene/HomeScene.fire +++ b/assets/Scene/HomeScene.fire @@ -25589,8 +25589,8 @@ ], "_srcBlendFactor": 770, "_dstBlendFactor": 771, - "_string": "请稍后", - "_N$string": "请稍后", + "_string": "请稍后1", + "_N$string": "请稍后1", "_fontSize": 45, "_lineHeight": 45, "_enableWrapText": true, diff --git a/assets/Script/Block.ts b/assets/Script/Block.ts index a1052d8..8b3727c 100644 --- a/assets/Script/Block.ts +++ b/assets/Script/Block.ts @@ -45,6 +45,8 @@ export enum BlockType { "三连粘合块" = 19, /*变色快*/ "变色块" = 20, + /*加时间块*/ + "加时间块" = 21, } export enum BlockColor { @@ -184,6 +186,7 @@ export default class Block extends cc.Component { private scheduleCallback2: any = null; private scheduleCallback3: any = null; isEliminatedByHammer: boolean = false; // 标记是否被锤子消除过 + colorArray: any[]; //变色块存储变色顺序 onLoad() { @@ -193,6 +196,7 @@ export default class Block extends cc.Component { this.floorOffset = []; this.adhesiveNode = []; this.teamBlocks = []; + this.colorArray = []; this.moveFloorPd = false; this.collider = this.node.getComponent(cc.PolygonCollider); this.over = false; @@ -218,10 +222,13 @@ export default class Block extends cc.Component { // else // this.changeColor = 0; this.blockId = block_Info.id; - + if (this.block_Info.colorArray) { + this.block_Info.colorArray = this.block_Info.colorArray.toString(); + this.colorArray = this.block_Info.colorArray.split('').map(char => parseInt(char) + 1); + } // console.log("方块层级",this.node.zIndex); - this.initColor(); + this.initColor(false); this.initType(); this.initBlocks(); if (this.type != BlockType.叠加块上) { @@ -321,6 +328,13 @@ export default class Block extends cc.Component { if (MapConroler && MapConroler._instance) { let posConfig = cc.fx.GameConfig.PROP_INFO[this.block_Info.block]; switch (this.type) { + case BlockType.加时间块: + let addTime = cc.instantiate(MapConroler._instance.Block_Prop[16]); + addTime.parent = this.node; + addTime.setPosition(posConfig.pos1.x, posConfig.pos1.y); + if (this.block_Info?.addTime) + addTime.getComponent("AddTime").init(this.block_Info.addTime); + break; case BlockType.炸弹块: let boom = cc.instantiate(MapConroler._instance.Block_Prop[this.type]); boom.parent = this.node; @@ -462,7 +476,7 @@ export default class Block extends cc.Component { } //初始化方块颜色 - initColor() { + initColor(change) { let name = this.color + "color" + this.block_Info.block; let number = Math.floor((this.color - 1) / 2); @@ -474,11 +488,41 @@ export default class Block extends cc.Component { else if (this.type == BlockType.问号块) { return; } + // else if (this.color > 11 && this.color < 22) { // let color = this.color - 11; // name = color + "color" + this.block_Info.block; // number = Math.floor((color - 1) / 2); // } + if (this.type == BlockType.变色块) { + if (change == true) { + // cc.tween(this.node.getChildByName("change_color").getChildByName("zhuan")) + // .to(0.3, { angle: 360 }) + // .call(() => { + // this.node.getChildByName("change_color").getChildByName("zhuan").angle = 0; + // }) + // .start(); + } + this.color = this.colorArray[0]; + name = this.color + "color" + this.block_Info.block; + number = Math.floor((this.color - 1) / 2); + //特殊方块,可移动不可消除类型 + if (this.color == 11) { + name = "0color" + this.block_Info.block; + number = 5; + } + console.log("本身颜色", name); + let change_color = this.colorArray[0]; + if (this.colorArray.length > 1) + change_color = this.colorArray[1]; + let number2 = Math.floor((change_color - 1) / 2); + let name2 = change_color + "color" + this.block_Info.block; + this.node.getChildByName("change_color").active = true; + let nextSpriteFrame = MapConroler._instance.Block_Color[number2]._spriteFrames; + var spriteFrame2 = nextSpriteFrame[name2]; + console.log("下一个颜色", name2); + this.node.getChildByName("change_color").getComponent(cc.Sprite).spriteFrame = spriteFrame2; + } if (MapConroler && MapConroler._instance) { let blockSpriteFrame = MapConroler._instance.Block_Color[number]._spriteFrames; var spriteFrame = blockSpriteFrame[name]; @@ -486,10 +530,21 @@ export default class Block extends cc.Component { // name = "ice_"+this.block_Info.block; // spriteFrame = this.ice_SpriteFrame._spriteFrames[name]; // } + this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; } } + changeBlockColor() { + if (this.colorArray && this.colorArray.length > 0) { + // 取出第一项 + const firstItem = this.colorArray.shift(); + // 将第一项添加到数组末尾 + this.colorArray.push(firstItem); + } + this.initColor(true); + } + //创建粘合快连接处 createAdhesive() { MapConroler._instance.adhesiveBlock.push(this); @@ -573,6 +628,9 @@ export default class Block extends cc.Component { } reduceAdhesive() { + if (this.block_Info.floor && this.block_Info.floorTime) { + return; + } if (this.adhesiveNode.length > 0 && this.type == 9) { for (let i = 0; i < this.adhesiveNode.length; i++) { let adhesive = this.adhesiveNode[i]; @@ -655,6 +713,7 @@ export default class Block extends cc.Component { let jg = MapConroler._instance.checkPass(this.node, this.allBlocks); if (jg >= 0) { + console.log("_________准备消除"); // MapConroler._instance.changeRevolvingWall(); this.over = true; this.removeBoxCollider(); @@ -732,6 +791,9 @@ export default class Block extends cc.Component { else if (this.type == BlockType.钥匙块) { cc.fx.AudioManager._instance.playEffect("lockBlock2", null); } + else if (this.type == BlockType.加时间块 && this.block_Info.addTime) { + MapConroler._instance.addTime(this.block_Info.addTime); + } else { } setTimeout(() => { @@ -985,12 +1047,13 @@ export default class Block extends cc.Component { this.isTouch = false; this.node.zIndex = this.level; this.hit.active = false; + let otherBlocks = null; if (this.type == 9) { if (this.block_Info.node) { - if (this.block_Info.node.getComponent("Block")) { - this.block_Info.node.getComponent("Block").hit.active = false; - MapConroler._instance.changeRiseFall(this.block_Info.node.getComponent("Block").color, false); - } + otherBlocks = this.block_Info.node; + otherBlocks.getComponent("Block").hit.active = false; + MapConroler._instance.changeRiseFall(otherBlocks.getComponent("Block").color, false); + } } @@ -998,18 +1061,18 @@ export default class Block extends cc.Component { let local = cc.v2(this.node.x - 50, this.node.y + 50); if (this.type != 10) { //@ts-ignore - + this.blockFall(local, true); if (this.type == 9) { console.log("——+————————需要执行他的粘合块恢复位置", this.block_Info.block); - if (this.block_Info.node) { - if (this.block_Info.node.getComponent("Block")) { - let localTemp = cc.v2(this.block_Info.node.x - 50, this.block_Info.node.y + 50); - this.block_Info.node.getComponent("Block").blockFall(localTemp, false); + if (otherBlocks) { + if (otherBlocks.getComponent("Block")) { + let localTemp = cc.v2(otherBlocks.x - 50, otherBlocks.y + 50); + otherBlocks.getComponent("Block").blockFall(localTemp, false); // MapConroler._instance.changeRiseFall(this.block_Info.node.getComponent("Block").color, false); } } } - this.blockFall(local, true); + } this.moveLeft = this.moveRight = this.moveUp = this.moveDown = true; if (this.teamBlocks.length > 0) { @@ -1115,12 +1178,12 @@ export default class Block extends cc.Component { if (MapConroler._instance.ismagic) { this.scheduleCallback = setTimeout(() => { this.createLabelsForBlocksWithCustomDelay(0.2) - if (this.type == BlockType.冻结块) { + if (this.type == BlockType.冻结块 && this.node) { this.node.getChildByName("freeze").getComponent("Freeze").reduce(2); MapConroler._instance.ismagic = false; return; } - else if (this.type == BlockType.上锁块) { + else if (this.type == BlockType.上锁块 && this.node) { MapConroler._instance.ismagic = false; this.node.getChildByName("lock").getComponent("Lock").reduce(); return; @@ -1151,6 +1214,9 @@ export default class Block extends cc.Component { else if (self.type == BlockType.消除炸弹块) { this.node.getChildByName("boom2").getComponent("Boom").stopBoom(); } + else if (this.type == BlockType.加时间块 && this.block_Info.addTime) { + MapConroler._instance.addTime(this.block_Info.addTime); + } this.scheduleCallback2 = setTimeout(() => { MapConroler._instance.blockNum -= 1; MapConroler._instance.special_Treatment(this.node, type, false); @@ -1176,7 +1242,8 @@ export default class Block extends cc.Component { .start(); } else if (self.type == BlockType.炸弹块) { - this.node.getChildByName("boom").getComponent("Boom").destroyBoom(false); + if (this.node) + this.node.getChildByName("boom").getComponent("Boom").destroyBoom(false); } else if (this.type == BlockType.叠加块下) { cc.fx.AudioManager._instance.playEffect("stacking", null); @@ -1282,7 +1349,8 @@ export default class Block extends cc.Component { MapConroler._instance.ishammer = false; if (MapConroler._instance.hammer == true) MapConroler._instance.hammer = false; setTimeout(() => { - this.node.getChildByName("lock").getComponent("Lock").reduce(); + if (this.node) + this.node.getChildByName("lock").getComponent("Lock").reduce(); for (let i = 0; i < this.node.children.length; i++) { if (this.node.children[i].name == "floor" || this.node.children[i].name == "moveFloor") { this.node.children[i].getComponent("Floor").reduce(); @@ -1316,6 +1384,9 @@ export default class Block extends cc.Component { else if (self.type == BlockType.消除炸弹块) { this.node.getChildByName("boom2").getComponent("Boom").stopBoom(); } + else if (this.type == BlockType.加时间块 && this.block_Info.addTime) { + MapConroler._instance.addTime(this.block_Info.addTime); + } this.scheduleCallback2 = setTimeout(() => { //如果方块可以消除 @@ -1334,10 +1405,12 @@ export default class Block extends cc.Component { .start(); } else if (self.type == BlockType.炸弹块) { - this.node.getChildByName("boom").getComponent("Boom").destroyBoom(false); + if (this.node) + this.node.getChildByName("boom").getComponent("Boom").destroyBoom(false); } else if (self.type == BlockType.消除炸弹块) { - this.node.getChildByName("boom2").getComponent("Boom").destroyBoom(false); + if (this.node) + this.node.getChildByName("boom2").getComponent("Boom").destroyBoom(false); } else if (this.type == BlockType.叠加块下) { cc.fx.AudioManager._instance.playEffect("stacking", null); @@ -1558,14 +1631,14 @@ export default class Block extends cc.Component { } } if (this.type == BlockType.叠加块上) { - this.initColor(); + this.initColor(false); } } //问号状态恢复成普通颜色 resetQuestionColor() { this.type = 0; - this.initColor(); + this.initColor(false); } changeSwitch() { @@ -2188,6 +2261,7 @@ export default class Block extends cc.Component { if (this.block_Info.floorMove != undefined) { if (this.block_Info.floorMove == true) { floor = cc.instantiate(MapConroler._instance.Block_Prop[15]); + floor.getComponent("Floor").setSpriteFrame(2); } } floor.parent = this.node; diff --git a/assets/Script/JiaZai.ts b/assets/Script/JiaZai.ts index 4dc06de..df38234 100644 --- a/assets/Script/JiaZai.ts +++ b/assets/Script/JiaZai.ts @@ -97,6 +97,8 @@ export default class JiaZai extends cc.Component { dailyQuestsShow: boolean = false; // 每日任务加载 winStreakShow: boolean = false; // 连胜活动是否展示 careerRank: any; + shareIng: boolean = false; //正在分享 + shareTime: number = 0; // 分享时间 // //月卡 // @property(cc.Node) // monthCardBtn: cc.Node = null; @@ -139,6 +141,8 @@ export default class JiaZai extends cc.Component { initProvinceLocator(); // this.RankNode = null; this.isShow = true; + this.shareIng = false; + this.shareTime = 0; this.node.getChildByName("Snow").active = false; this.node.getChildByName("Snow").zIndex = 999; console.log("最新版本___________"); @@ -354,6 +358,8 @@ export default class JiaZai extends cc.Component { this.popUpPassCheck(); this.onGames(); + + } //监听后台 onGames() { @@ -391,6 +397,16 @@ export default class JiaZai extends cc.Component { onGameShow() { console.log("执行开始游戏gameshow"); + if (this.shareIng == true) { + let nowTime = Math.floor(Date.now() / 1000); + if (nowTime - this.shareTime >= 2) { + this.getShareReward(); + } + else { + MiniGameSdk.API.showToast("请分享给爱玩游戏的群和朋友,谢谢~"); + } + } + cc.fx.GameTool.getHealth((data) => { if (this.level) { NumberToImage.numberToImageNodesShop((cc.fx.GameConfig.GM_INFO.level + 1), 43, 15, "custom", this.level, true); @@ -1235,7 +1251,31 @@ export default class JiaZai extends cc.Component { } - openDailyQuests(event?: cc.Event, customEventData?: string) { + getShareReward() { + this.shareIng = false; + if (cc.fx.GameConfig.GM_INFO.tasks.share.value < cc.fx.GameConfig.GM_INFO.tasks.share.target) { + cc.fx.GameConfig.GM_INFO.tasks.share.value += 1; + cc.fx.GameTool.setDailyQuestInfo((data) => { + if (data.code == 1) { + console.log("网络正常"); + cc.fx.GameTool.setUserPowerTime(900); + this.openDailyQuests(null, null, true); + if (cc.fx.GameConfig.GM_INFO.tasks.share.value == cc.fx.GameConfig.GM_INFO.tasks.share.target) { + let data = { + id: 1, + status: "complete" + } + cc.fx.GameTool.shushu_Track("daily_task", data); + } + } + else { + MiniGameSdk.API.showToast("网络异常,请分享后重新领取"); + } + }); + } + } + + openDailyQuests(event?: cc.Event, customEventData?: string, share?: boolean) { let eventName = ""; let btnName = "" if (customEventData !== undefined) { @@ -1258,7 +1298,6 @@ export default class JiaZai extends cc.Component { this.dailyQuestsShow = true; cc.fx.GameTool.getDailyQuestsInfo((data) => { this.dailyQuestsShow = false; - console.log("处理结果:", data); this.closeLoad(); if (data.code != 1) { @@ -1283,10 +1322,16 @@ export default class JiaZai extends cc.Component { this.dailyQuestsNode = cc.instantiate(JiaZai.cachedDailyQuestsPrefab); this.node.addChild(this.dailyQuestsNode); this.dailyQuestsNode.getComponent("DailyQuests").init(data.data.task); + if (share) { + this.dailyQuestsNode.getComponent("DailyQuests").getReward(null, "share"); + } } else { // 非第一次使用,直接激活节点 this.dailyQuestsNode.active = true; this.dailyQuestsNode.getComponent("DailyQuests").init(data.data.task); + if (share) { + this.dailyQuestsNode.getComponent("DailyQuests").getReward(null, "share"); + } } }); }); @@ -1299,10 +1344,16 @@ export default class JiaZai extends cc.Component { this.node.addChild(this.dailyQuestsNode); this.dailyQuestsNode.active = true; this.dailyQuestsNode.getComponent("DailyQuests").init(data.data.task); + if (share) { + this.dailyQuestsNode.getComponent("DailyQuests").getReward(null, "share"); + } } else { // 非第一次使用,直接激活节点 this.dailyQuestsNode.active = true; this.dailyQuestsNode.getComponent("DailyQuests").init(data.data.task); + if (share) { + this.dailyQuestsNode.getComponent("DailyQuests").getReward(null, "share"); + } } }) } @@ -1547,6 +1598,9 @@ export default class JiaZai extends cc.Component { closeLoad() { this.node.getChildByName("Loading").active = false; } + closeLoad2() { + this.node.getChildByName("Loading").active = false; + } updatePower() { if (cc.fx.GameConfig.GM_INFO.userPowerTime != 0) { let nowTime = Math.floor(Date.now() / 1000); @@ -1721,6 +1775,7 @@ export default class JiaZai extends cc.Component { } openShare() { + console.log("打开加载2"); this.openLoad(); let otherNickName = null; let otherAvatarUrl = null; @@ -3036,28 +3091,16 @@ export default class JiaZai extends cc.Component { } setRankData() { - if (cc.fx.GameConfig.GM_INFO.addLevel > 4) { - this.addSelfToRank(this.careerRank.rankData); - } - if (this.careerRank.rankData) { - for (let i = 0; i < this.careerRank.rankData.length; i++) { - this.careerRank.rankData[i].rank = i + 1; + if (this.careerRank) { + if (this.careerRank.rankData) { + if (cc.fx.GameConfig.GM_INFO.addLevel > 4) { + this.addSelfToRank(this.careerRank.rankData); + } + for (let i = 0; i < this.careerRank.rankData.length; i++) { + this.careerRank.rankData[i].rank = i + 1; + } } - } - if (this.RankNode != null && this.RankNode != undefined) { - this.RankNode.opacity = 0; - this.RankNode.zIndex = 3; - this.RankNode.getComponent("CareerManager").init(this.careerRank.rankData, this.careerRank.topData); - cc.tween(this.RankNode) - .to(0.2, { opacity: 255 }) - .delay(0.2) - .call(() => { - console.log("_________________________渲染完成"); - this.node.getChildByName("Snow").active = true; - }) - .start() - } else { - this.LoadCareer(() => { + if (this.RankNode != null && this.RankNode != undefined) { this.RankNode.opacity = 0; this.RankNode.zIndex = 3; this.RankNode.getComponent("CareerManager").init(this.careerRank.rankData, this.careerRank.topData); @@ -3069,8 +3112,23 @@ export default class JiaZai extends cc.Component { this.node.getChildByName("Snow").active = true; }) .start() - }, true) + } else { + this.LoadCareer(() => { + this.RankNode.opacity = 0; + this.RankNode.zIndex = 3; + this.RankNode.getComponent("CareerManager").init(this.careerRank.rankData, this.careerRank.topData); + cc.tween(this.RankNode) + .to(0.2, { opacity: 255 }) + .delay(0.2) + .call(() => { + console.log("_________________________渲染完成"); + this.node.getChildByName("Snow").active = true; + }) + .start() + }, true) + } } + // console.log("rankData更新!!!!!!!!", this.careerRank.rankData); } diff --git a/assets/Script/Map.ts b/assets/Script/Map.ts index 1f082d5..f258280 100644 --- a/assets/Script/Map.ts +++ b/assets/Script/Map.ts @@ -1683,9 +1683,11 @@ export default class MapConroler extends cc.Component { changeState(type) { if (type) { this.changeLockWall(); + this.changeBlockColor(); } //粘合块解锁状态变化 this.changeAdhesive(); + console.log("粘合块处理完毕"); } changeFreeze() { @@ -1730,6 +1732,21 @@ export default class MapConroler extends cc.Component { } } + changeBlockColor() { + let colorBlock = this.node.children.filter(child => { + if (child.getComponent("Block")) { + if (child.getComponent("Block").type == 20) + return child + } + }); + if (colorBlock.length > 0) { + for (let i = 0; i < colorBlock.length; i++) { + if (colorBlock[i]) + colorBlock[i].getComponent("Block").changeBlockColor(); + } + } + } + changeLockWall() { setTimeout(() => { if (this) { @@ -1816,6 +1833,12 @@ export default class MapConroler extends cc.Component { } } + addTime(time) { + if (this.gameOver == true || this.timeNumber <= 0) return; + this.timeNumber += time; + NumberToImage.getTimeMargi3(this.timeNumber, 45, "company_", this.timeLabel) + } + //检测是否可以通过门 passWall(jg, wallArray, node) { let colorArray = []; @@ -2082,17 +2105,6 @@ export default class MapConroler extends cc.Component { //特殊处理,方块带道具或者需要消除冰块 special_Treatment(node, type, prop) { - // let switchsBlock = this.node.children.filter(child => { - // if (child.getComponent("Block")) { - // if (child.getComponent("Block").type == 15) - // return child - // } - // }); - // if (switchsBlock.length > 0) { - // for (let i = 0; i < switchsBlock.length; i++) { - // switchsBlock[i].getChildByName("switchs").getComponent("Switchs").change(); - // } - // } let freezeBlock = this.node.children.filter(child => { if (child.getComponent("Block")) { if (child.getComponent("Block").type == 4) @@ -2101,7 +2113,8 @@ export default class MapConroler extends cc.Component { }); if (freezeBlock.length > 0) { for (let i = 0; i < freezeBlock.length; i++) { - freezeBlock[i].getChildByName("freeze").getComponent("Freeze").reduce(1); + if (freezeBlock[i]) + freezeBlock[i].getChildByName("freeze").getComponent("Freeze").reduce(1); } } @@ -2132,7 +2145,8 @@ export default class MapConroler extends cc.Component { }); if (questionBlock.length > 0) { for (let i = 0; i < questionBlock.length; i++) { - questionBlock[i].getChildByName("question").getComponent("Question").reduce(1); + if (questionBlock[i]) + questionBlock[i].getChildByName("question").getComponent("Question").reduce(1); } } @@ -2152,7 +2166,8 @@ export default class MapConroler extends cc.Component { }); if (lockBlock.length > 0) { for (let i = 0; i < lockBlock.length; i++) { - lockBlock[i].getChildByName("switchs").getComponent("Switchs").change(); + if (lockBlock[i]) + lockBlock[i].getChildByName("switchs").getComponent("Switchs").change(); } } @@ -2167,7 +2182,8 @@ export default class MapConroler extends cc.Component { }); if (lockBlock.length > 0) for (let i = 0; i < lockBlock.length; i++) { - lockBlock[i].getChildByName("lock").getComponent("Lock").reduce(); + if (lockBlock[i]) + lockBlock[i].getChildByName("lock").getComponent("Lock").reduce(); } } //第二钥匙块 @@ -2180,7 +2196,8 @@ export default class MapConroler extends cc.Component { }); if (lockBlock2.length > 0) for (let i = 0; i < lockBlock2.length; i++) { - lockBlock2[i].getChildByName("lock").getComponent("Lock").reduce(); + if (lockBlock2[i]) + lockBlock2[i].getChildByName("lock").getComponent("Lock").reduce(); } } //门钥匙块,消除门的 @@ -2193,9 +2210,11 @@ export default class MapConroler extends cc.Component { this.blocks.splice(i, 1); } } + + console.log("准备改变状态"); this.changeFreeze(); this.changeState(type); - // console.log("特殊处理——————————————", type); + console.log("特殊处理——————————————", type); if (type == true) { this.changeRevolvingWall(); this.changeLongAndShortWall(); diff --git a/assets/Script/module/Tool/GameTool.ts b/assets/Script/module/Tool/GameTool.ts index d4873e5..5afa533 100644 --- a/assets/Script/module/Tool/GameTool.ts +++ b/assets/Script/module/Tool/GameTool.ts @@ -437,13 +437,14 @@ var GameTool = { } }, isWuxian) + }, //关卡上限 maxLevel() { let jg = false; - if (cc.fx.GameConfig.GM_INFO.level > 979) { - cc.fx.GameConfig.GM_INFO.level = 980; + if (cc.fx.GameConfig.GM_INFO.level > 1049) { + cc.fx.GameConfig.GM_INFO.level = 1050; jg = true; } return jg; diff --git a/assets/Script/prop/AddTime.ts b/assets/Script/prop/AddTime.ts new file mode 100644 index 0000000..58609e4 --- /dev/null +++ b/assets/Script/prop/AddTime.ts @@ -0,0 +1,64 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "../Map"; +import NumberToImage from "../NumberToImage"; + +const { ccclass, property } = cc._decorator; + + + +@ccclass +export default class AddTime extends cc.Component { + static _instance: any; + time: number = 60; + over: boolean = false; + + // mapInfo: number[][] = []; + + onLoad() { + this.over = false; + } + + start() { + this.over = false; + } + + init(time) { + if (time) this.time = time; + this.node.getChildByName("time").active = true; + NumberToImage.numberToImageNodes(this.time, 20, 8, "lock_", this.node.getChildByName("time"), false); + // if (this.node.name == "boom") { + // NumberToImage.numberToImageNodes(this.time, 20, 8, "lock_", this.node.getChildByName("time"), false); + // } + // else if (this.node.name == "boom2") { + // NumberToImage.numberToImageNodes(this.time, 26, 8, "half_black_", this.node.getChildByName("time"), false); + // if (this.node.getChildByName("time").children.length > 1) { + // this.node.getChildByName("time").children[0].scale = 0.7; + // this.node.getChildByName("time").children[1].scale = 0.7; + // this.node.getChildByName("time").children[0].x -= 2; + // this.node.getChildByName("time").children[0].x -= 3; + // } + // } + // this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + } + + + + + + + + + + + + + + + // update (dt) {} +} diff --git a/assets/Script/prop/AddTime.ts.meta b/assets/Script/prop/AddTime.ts.meta new file mode 100644 index 0000000..537b3ea --- /dev/null +++ b/assets/Script/prop/AddTime.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "0937dc38-d7f0-47b5-a8e4-94ece609f8e7", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/prop/Lock.ts b/assets/Script/prop/Lock.ts index 4cfea93..06e7961 100644 --- a/assets/Script/prop/Lock.ts +++ b/assets/Script/prop/Lock.ts @@ -133,6 +133,13 @@ export default class Lock extends cc.Component { } reduce() { + if (this.type == "block") { + if (this.node.parent) { + if (this.node.parent.getComponent("Block").floor) { + return; + } + } + } this.time -= 1; NumberToImage.numberToImageNodes(this.time, 20, 8, "lock_", this.node.getChildByName("icon").getChildByName("time"), false); cc.fx.GameTool.numberScaleAction(this.node.getChildByName("icon").getChildByName("time")); diff --git a/assets/Script/ranking.ts b/assets/Script/ranking.ts index b32175d..3b3d35c 100644 --- a/assets/Script/ranking.ts +++ b/assets/Script/ranking.ts @@ -65,19 +65,21 @@ export default class ranking extends cc.Component { cc.fx.GameConfig.GM_INFO.username = user_Info.username; cc.fx.GameConfig.GM_INFO.useravatar = user_Info.useravatar; setTimeout(() => { - if (!this.node.getChildByName("friend").active) { - this.onRanksBtnClicked(); - this.node.getChildByName("friend").active = false; - this.node.getChildByName("word").active = true; - this.node.getChildByName("word_rank").active = true; - this.closeFriend(); + if (this.node) { + if (!this.node.getChildByName("friend").active) { + this.onRanksBtnClicked(); + this.node.getChildByName("friend").active = false; + this.node.getChildByName("word").active = true; + this.node.getChildByName("word_rank").active = true; + this.closeFriend(); + } + else { + this._touchCancle = true; + this.openFriend(); + this.closeWord(); + } } - else { - this._touchCancle = true; - this.openFriend(); - this.closeWord(); - } }, 0); } else { diff --git a/assets/TextureBlock/block/jumpDoor.png b/assets/TextureBlock/block/jumpDoor.png new file mode 100644 index 0000000..33e6c79 Binary files /dev/null and b/assets/TextureBlock/block/jumpDoor.png differ diff --git a/assets/TextureBlock/block/jumpDoor.png.meta b/assets/TextureBlock/block/jumpDoor.png.meta new file mode 100644 index 0000000..fdf2b1f --- /dev/null +++ b/assets/TextureBlock/block/jumpDoor.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "b373a346-f08c-4918-8a79-6ed7915845fc", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 123, + "height": 54, + "platformSettings": {}, + "subMetas": { + "jumpDoor": { + "ver": "1.0.6", + "uuid": "f8b05fd9-f842-4fc5-97f0-ba3ff3827a98", + "importer": "sprite-frame", + "rawTextureUuid": "b373a346-f08c-4918-8a79-6ed7915845fc", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 123, + "height": 54, + "rawWidth": 123, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle.meta b/assets/action_bundle.meta index 8606695..515296d 100644 --- a/assets/action_bundle.meta +++ b/assets/action_bundle.meta @@ -4,7 +4,7 @@ "importer": "folder", "isBundle": true, "bundleName": "", - "priority": 2, + "priority": 3, "compressionType": { "wechatgame": "subpackage", "bytedance": "subpackage" diff --git a/assets/action_bundle/script/DailyQuests.ts b/assets/action_bundle/script/DailyQuests.ts index 959d77a..f73ac98 100644 --- a/assets/action_bundle/script/DailyQuests.ts +++ b/assets/action_bundle/script/DailyQuests.ts @@ -246,10 +246,10 @@ export default class DailyQuests extends cc.Component { if (shuju.coin > 0) { cc.fx.GameTool.changeCoin(shuju.coin); } - if (name == "share") { - // console.log("_______获得无限体力时间:", shuju.infinite_health, name); - cc.fx.GameTool.setUserPowerTime(900); - } + // if (name == "share") { + // // console.log("_______获得无限体力时间:", shuju.infinite_health, name); + // cc.fx.GameTool.setUserPowerTime(900); + // } const canvasTemp = cc.find("Canvas"); // 假设 Canvas 节点 if (canvasTemp) { @@ -277,11 +277,13 @@ export default class DailyQuests extends cc.Component { const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 const jiazaiComp = jiazaiNode.getComponent(JiaZai); if (jiazaiComp) { + jiazaiComp.shareIng = false; jiazaiComp.checkTasks(); } } openLoad() { + console.log("每日任务打开加载"); this.node.getChildByName("Loading").active = true; this.node.getChildByName("Loading").getChildByName("load").stopAllActions(); this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); @@ -296,6 +298,7 @@ export default class DailyQuests extends cc.Component { } closeLoad() { + console.log("每日任务关闭加载"); this.node.getChildByName("Loading").active = false; } @@ -327,33 +330,16 @@ export default class DailyQuests extends cc.Component { }; // 调用微信分享 API if (cc.sys.platform === cc.sys.WECHAT_GAME) { - //@ts-ignore - wx.shareAppMessage(shareParams); - setTimeout(() => { - this.closeDailyQuests(); - }, 500); const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 const jiazaiComp = jiazaiNode.getComponent(JiaZai); - console.log("分享出去了"); - if (cc.fx.GameConfig.GM_INFO.tasks.share.value < cc.fx.GameConfig.GM_INFO.tasks.share.target) { - cc.fx.GameConfig.GM_INFO.tasks.share.value += 1; - cc.fx.GameTool.setDailyQuestInfo((data) => { - if (data.code == 1) { - if (jiazaiComp) { - setTimeout(() => { - jiazaiComp.openDailyQuests(); - }, 1000); - } - } - }); - if (cc.fx.GameConfig.GM_INFO.tasks.share.value == cc.fx.GameConfig.GM_INFO.tasks.share.target) { - let data = { - id: 1, - status: "complete" - } - cc.fx.GameTool.shushu_Track("daily_task", data); - } + this.closeDailyQuests(); + if (jiazaiComp) { + jiazaiComp.shareIng = true; + jiazaiComp.shareTime = Math.floor(Date.now() / 1000); } + //@ts-ignore + wx.shareAppMessage(shareParams); + } } } @@ -366,10 +352,13 @@ export default class DailyQuests extends cc.Component { this.reward = true; let shuju = [data]; this.openLoad(); + console.log("领取奖励", data); + let self = this; Utils.getDailyQuestReward(shuju, (res) => { this.touchStart = true; this.reward = false; - this.closeLoad(); + self.closeLoad(); + console.log("领取结果:", res.code); if (res.code == 1) { let dataNode = null; for (let i = 0; i < this.content.children.length; i++) { @@ -394,16 +383,19 @@ export default class DailyQuests extends cc.Component { MiniGameSdk.API.showToast("网络异常,领取奖励失败"); } }) - setTimeout(() => { - if (this.node) { - this.node.getChildByName("Loading").active = true - if (this.reward == true && this.touchStart == false && this.node.getChildByName("Loading").active == true) { - this.touchStart = true; - this.closeLoad(); - MiniGameSdk.API.showToast("网络异常,领取奖励失败"); + if (data != "share") { + setTimeout(() => { + if (this.node) { + this.node.getChildByName("Loading").active = true + if (this.reward == true && this.touchStart == false && this.node.getChildByName("Loading").active == true) { + this.touchStart = true; + this.closeLoad(); + MiniGameSdk.API.showToast("网络异常,领取奖励失败"); + } } - } - }, 5000); + }, 5000); + } + } getAllReward() { diff --git a/assets/custom/Json/level1011.json b/assets/custom/Json/level1011.json index fc77000..190460e 100644 --- a/assets/custom/Json/level1011.json +++ b/assets/custom/Json/level1011.json @@ -128,6 +128,9 @@ "z": 0 }, "adhesiveTime": 1, + "floor": 1, + "floorTime": 5, + "floorMove": true, "id": 280 }, { diff --git a/assets/custom/Json/level1021.json b/assets/custom/Json/level1021.json new file mode 100644 index 0000000..94ce51d --- /dev/null +++ b/assets/custom/Json/level1021.json @@ -0,0 +1,479 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1021", + "map": [ + 10, + 10 + ], + "time": 150, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "lock": true, + "id": 390 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "lockTime": 3, + "id": 400 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "floor": 1, + "floorTime": 6, + "floorMove": true, + "id": 410 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 6, + "floorMove": true, + "id": 420 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "floor": 1, + "floorTime": 6, + "floorMove": true, + "id": 430 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "floor": 2, + "floorTime": 7, + "floorMove": true, + "lock": true, + "id": 440 + }, + { + "block": 0, + "color": 6, + "type": 7, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "floor": 3, + "floorTime": 7, + "floorMove": false, + "id": 450 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "floor": 3, + "floorTime": 7, + "floorMove": false, + "id": 460 + }, + { + "block": 2, + "color": 2, + "type": 16, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "questionTime": 9, + "id": 470 + }, + { + "block": 2, + "color": 4, + "type": 16, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "questionTime": 10, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1022, + "num": 2, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 1023, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 1024, + "num": 31, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 1025, + "num": 27, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 1026, + "num": 28, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 1027, + "num": 29, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 1028, + "num": 26, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 1029, + "num": 7, + "color": 3, + "special": 0, + "length": 2, + "colorArray": "2333" + }, + { + "id": 1030, + "num": 11, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "2333" + }, + { + "id": 1031, + "num": 17, + "color": 2, + "special": 0, + "length": 3, + "colorArray": "1141" + }, + { + "id": 1032, + "num": 19, + "color": 2, + "special": 0, + "length": 0, + "colorArray": "1141" + }, + { + "id": 1033, + "num": 21, + "color": 2, + "special": 0, + "length": 0, + "colorArray": "1141" + }, + { + "id": 1034, + "num": 16, + "color": 1, + "special": 0, + "length": 2, + "colorArray": "08" + }, + { + "id": 1035, + "num": 18, + "color": 1, + "special": 0, + "length": 0, + "colorArray": "08" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1021.json.meta b/assets/custom/Json/level1021.json.meta new file mode 100644 index 0000000..1bf7e97 --- /dev/null +++ b/assets/custom/Json/level1021.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6f1e231d-ab42-4acd-8e5e-425e17141a65", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1022.json b/assets/custom/Json/level1022.json new file mode 100644 index 0000000..910388c --- /dev/null +++ b/assets/custom/Json/level1022.json @@ -0,0 +1,387 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1022", + "map": [ + 10, + 8 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 18, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 17, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "boomTime": 1, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 280 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 22, + "color": 10, + "type": 14, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 7, + "type": 14, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 1, + "type": 7, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 8, + "type": 14, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "lock": true, + "id": 360 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "lock": true, + "id": 370 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "lock": true, + "id": 380 + }, + { + "block": 0, + "color": 10, + "type": 16, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "questionTime": 5, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1023, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1024, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1025, + "num": 19, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 1026, + "num": 21, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1027, + "num": 25, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 1028, + "num": 26, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 1029, + "num": 22, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 1030, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 1031, + "num": 8, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 1032, + "num": 10, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 1033, + "num": 0, + "color": 1, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 1034, + "num": 1, + "color": 1, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 1035, + "num": 14, + "color": 8, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 1036, + "num": 16, + "color": 8, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 1037, + "num": 9, + "color": 5, + "special": 6, + "length": 3, + "lockTime": 3 + }, + { + "id": 1038, + "num": 11, + "color": 5, + "special": 6, + "length": 0, + "lockTime": 3 + }, + { + "id": 1039, + "num": 13, + "color": 5, + "special": 6, + "length": 0, + "lockTime": 3 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1022.json.meta b/assets/custom/Json/level1022.json.meta new file mode 100644 index 0000000..a575605 --- /dev/null +++ b/assets/custom/Json/level1022.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4cf26cc6-830f-40b8-acfd-623175e84ffb", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1023.json b/assets/custom/Json/level1023.json new file mode 100644 index 0000000..3987e40 --- /dev/null +++ b/assets/custom/Json/level1023.json @@ -0,0 +1,407 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1023", + "map": [ + 9, + 8 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 10, + "type": 5, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 19, + "color": 10, + "type": 5, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 1, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "stacking": 6, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 1, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "stacking": 10, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "stacking": 1, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 1, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "stacking": 8, + "floor": 1, + "floorTime": 3, + "floorMove": true, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "floor": 2, + "floorTime": 10, + "floorMove": true, + "id": 350 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 1, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "stacking": 2, + "floor": 3, + "floorTime": 11, + "floorMove": true, + "id": 370 + }, + { + "block": 1, + "color": 6, + "type": 1, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "stacking": 3, + "floor": 4, + "floorTime": 12, + "floorMove": true, + "id": 380 + }, + { + "block": 1, + "color": 2, + "type": 16, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "questionTime": 9, + "id": 390 + }, + { + "block": 1, + "color": 9, + "type": 16, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "questionTime": 5, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "freezeTime": 6, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1024, + "num": 1, + "color": 10, + "special": 1, + "length": 2 + }, + { + "id": 1025, + "num": 2, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 1026, + "num": 16, + "color": 4, + "special": 3, + "length": 1, + "freeze": 13 + }, + { + "id": 1027, + "num": 11, + "color": 3, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 1028, + "num": 13, + "color": 3, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 1029, + "num": 4, + "color": 9, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 1030, + "num": 5, + "color": 9, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 1031, + "num": 12, + "color": 2, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 1032, + "num": 14, + "color": 2, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 1033, + "num": 15, + "color": 10, + "special": 0, + "length": 3, + "longAndShort": 13, + "order": false + }, + { + "id": 1034, + "num": 17, + "color": 10, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + }, + { + "id": 1035, + "num": 19, + "color": 10, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + }, + { + "id": 1036, + "num": 6, + "color": 5, + "special": 0, + "length": 2, + "colorArray": "45" + }, + { + "id": 1037, + "num": 8, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "45" + }, + { + "id": 1038, + "num": 24, + "color": 1, + "special": 0, + "length": 2, + "colorArray": "070" + }, + { + "id": 1039, + "num": 25, + "color": 1, + "special": 0, + "length": 0, + "colorArray": "070" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1023.json.meta b/assets/custom/Json/level1023.json.meta new file mode 100644 index 0000000..ed7b24e --- /dev/null +++ b/assets/custom/Json/level1023.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ae080ec3-12c5-4fba-9c75-448db9dad33c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1024.json b/assets/custom/Json/level1024.json new file mode 100644 index 0000000..899e474 --- /dev/null +++ b/assets/custom/Json/level1024.json @@ -0,0 +1,401 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1024", + "map": [ + 9, + 8 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 17, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "boomTime": 2, + "id": 280 + }, + { + "block": 1, + "color": 9, + "type": 14, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 14, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 2, + "type": 14, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 4, + "floorMove": true, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 14, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "floor": 2, + "floorTime": 5, + "floorMove": true, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 17, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "boomTime": 1, + "floor": 3, + "floorTime": 6, + "floorMove": true, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 17, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "boomTime": 1, + "floor": 4, + "floorTime": 8, + "floorMove": true, + "id": 340 + }, + { + "block": 2, + "color": 9, + "type": 16, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "questionTime": 6, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 16, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "questionTime": 8, + "id": 360 + }, + { + "block": 2, + "color": 3, + "type": 16, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "questionTime": 11, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 16, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "questionTime": 12, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 16, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "questionTime": 14, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 14, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "floor": 5, + "floorTime": 11, + "floorMove": false, + "id": 400 + }, + { + "block": 2, + "color": 1, + "type": 14, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "floor": 6, + "floorTime": 7, + "floorMove": false, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1025, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 1026, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1027, + "num": 3, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1028, + "num": 4, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1029, + "num": 7, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 1030, + "num": 19, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 1031, + "num": 23, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 1032, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 1033, + "num": 20, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 1034, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 1035, + "num": 16, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 1036, + "num": 18, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 1037, + "num": 6, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1038, + "num": 8, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 1039, + "num": 11, + "color": 7, + "special": 6, + "length": 3, + "lockTime": 6 + }, + { + "id": 1040, + "num": 13, + "color": 7, + "special": 6, + "length": 0, + "lockTime": 6 + }, + { + "id": 1041, + "num": 15, + "color": 7, + "special": 6, + "length": 0, + "lockTime": 6 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1024.json.meta b/assets/custom/Json/level1024.json.meta new file mode 100644 index 0000000..bd90d49 --- /dev/null +++ b/assets/custom/Json/level1024.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4e8c7284-8e21-41b1-bf31-804e94537ce9", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1025.json b/assets/custom/Json/level1025.json new file mode 100644 index 0000000..4e20d31 --- /dev/null +++ b/assets/custom/Json/level1025.json @@ -0,0 +1,364 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1025", + "map": [ + 9, + 8 + ], + "time": 130, + "gap": [ + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 3, + "y": 6, + "z": 0 + }, + { + "x": 4, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 9, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 1, + "color": 4, + "type": 9, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 7, + "floorMove": false, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 17, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "boomTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 17, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "boomTime": 1, + "id": 360 + }, + { + "block": 1, + "color": 10, + "type": 16, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "questionTime": 4, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 16, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "questionTime": 11, + "id": 380 + }, + { + "block": 19, + "color": 3, + "type": 16, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "questionTime": 12, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1026, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 1027, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 1028, + "num": 7, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 1029, + "num": 25, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 1030, + "num": 26, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 1031, + "num": 22, + "color": 1, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 1032, + "num": 23, + "color": 1, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 1033, + "num": 17, + "color": 6, + "special": 0, + "length": 3, + "colorArray": "533" + }, + { + "id": 1034, + "num": 19, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "533" + }, + { + "id": 1035, + "num": 21, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "533" + }, + { + "id": 1036, + "num": 6, + "color": 7, + "special": 0, + "length": 2, + "colorArray": "646" + }, + { + "id": 1037, + "num": 8, + "color": 7, + "special": 0, + "length": 0, + "colorArray": "646" + }, + { + "id": 1038, + "num": 18, + "color": 10, + "special": 0, + "length": 2, + "colorArray": "992" + }, + { + "id": 1039, + "num": 20, + "color": 10, + "special": 0, + "length": 0, + "colorArray": "992" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1025.json.meta b/assets/custom/Json/level1025.json.meta new file mode 100644 index 0000000..45c81f3 --- /dev/null +++ b/assets/custom/Json/level1025.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9a749048-ba88-4297-8232-9657f7b8dc94", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1026.json b/assets/custom/Json/level1026.json new file mode 100644 index 0000000..70df8b2 --- /dev/null +++ b/assets/custom/Json/level1026.json @@ -0,0 +1,350 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 5, + "y": 4, + "color": "4" + }, + { + "x": 6, + "y": 4, + "color": "4" + } + ], + "id": "1026", + "map": [ + 8, + 9 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 17, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "boomTime": 1, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 17, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "boomTime": 2, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 17, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "boomTime": 3, + "id": 350 + }, + { + "block": 1, + "color": 6, + "type": 17, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "boomTime": 4, + "id": 360 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "floor": 1, + "floorTime": 3, + "floorMove": true, + "lock": true, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 16, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "questionTime": 9, + "id": 380 + }, + { + "block": 1, + "color": 6, + "type": 16, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "questionTime": 11, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1027, + "num": 0, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 1028, + "num": 4, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 1029, + "num": 5, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1030, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 1031, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 1032, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 1033, + "num": 8, + "color": 6, + "special": 0, + "length": 2, + "colorArray": "585" + }, + { + "id": 1034, + "num": 10, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "585" + }, + { + "id": 1035, + "num": 20, + "color": 4, + "special": 0, + "length": 3, + "colorArray": "3933" + }, + { + "id": 1036, + "num": 21, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "3933" + }, + { + "id": 1037, + "num": 22, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "3933" + }, + { + "id": 1038, + "num": 7, + "color": 8, + "special": 0, + "length": 2, + "colorArray": "72" + }, + { + "id": 1039, + "num": 9, + "color": 8, + "special": 0, + "length": 0, + "colorArray": "72" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1026.json.meta b/assets/custom/Json/level1026.json.meta new file mode 100644 index 0000000..57864dd --- /dev/null +++ b/assets/custom/Json/level1026.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f407a997-33a8-4fa3-9cf9-65ea02abb31f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1027.json b/assets/custom/Json/level1027.json new file mode 100644 index 0000000..b4eb1b9 --- /dev/null +++ b/assets/custom/Json/level1027.json @@ -0,0 +1,395 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1027", + "map": [ + 10, + 8 + ], + "time": 130, + "gap": [ + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 0, + "color": 7, + "type": 7, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "lock": true, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "lock": true, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "lock": true, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "lock": true, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 16, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "questionTime": 10, + "id": 370 + }, + { + "block": 5, + "color": 9, + "type": 16, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "questionTime": 11, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 16, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "questionTime": 6, + "id": 390 + }, + { + "block": 1, + "color": 8, + "type": 17, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "boomTime": 1, + "floor": 1, + "floorTime": 2, + "floorMove": true, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 4, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "freezeTime": 9, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1028, + "num": 1, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 1029, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 1030, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 1031, + "num": 5, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 1032, + "num": 10, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1033, + "num": 13, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1034, + "num": 17, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 1035, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 1036, + "num": 27, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 1037, + "num": 28, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 1038, + "num": 25, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 1039, + "num": 23, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 1040, + "num": 6, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 1041, + "num": 14, + "color": 2, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 1042, + "num": 16, + "color": 2, + "special": 3, + "length": 0, + "freeze": 7 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1027.json.meta b/assets/custom/Json/level1027.json.meta new file mode 100644 index 0000000..f9038af --- /dev/null +++ b/assets/custom/Json/level1027.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e4771795-52b0-4a1d-b4b8-448db59056e2", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1028.json b/assets/custom/Json/level1028.json new file mode 100644 index 0000000..29a0b0b --- /dev/null +++ b/assets/custom/Json/level1028.json @@ -0,0 +1,279 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1028", + "map": [ + 8, + 8 + ], + "time": 90, + "gap": [ + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 17, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "boomTime": 3, + "id": 260 + }, + { + "block": 20, + "color": 8, + "type": 17, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "boomTime": 2, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 16, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "questionTime": 5, + "id": 280 + }, + { + "block": 2, + "color": 4, + "type": 16, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "questionTime": 6, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 14, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 7, + "floorMove": true, + "lock": true, + "id": 310 + }, + { + "block": 2, + "color": 6, + "type": 16, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "questionTime": 8, + "id": 320 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "floor": 2, + "floorTime": 10, + "floorMove": true, + "lock": true, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1029, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 1030, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1031, + "num": 11, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 1032, + "num": 13, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 1033, + "num": 15, + "color": 8, + "special": 0, + "length": 2, + "colorArray": "71" + }, + { + "id": 1034, + "num": 17, + "color": 8, + "special": 0, + "length": 0, + "colorArray": "71" + }, + { + "id": 1035, + "num": 14, + "color": 5, + "special": 0, + "length": 1, + "colorArray": "45" + }, + { + "id": 1036, + "num": 23, + "color": 4, + "special": 0, + "length": 2, + "colorArray": "30" + }, + { + "id": 1037, + "num": 24, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "30" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1028.json.meta b/assets/custom/Json/level1028.json.meta new file mode 100644 index 0000000..0d2e202 --- /dev/null +++ b/assets/custom/Json/level1028.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2163aac6-c678-4971-a87e-0302dcc874bf", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1029.json b/assets/custom/Json/level1029.json new file mode 100644 index 0000000..3a05dee --- /dev/null +++ b/assets/custom/Json/level1029.json @@ -0,0 +1,337 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1029", + "map": [ + 8, + 9 + ], + "time": 90, + "gap": [ + { + "x": 6, + "y": 5, + "z": 0 + }, + { + "x": 6, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 9, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 17, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "boomTime": 1, + "id": 270 + }, + { + "block": 2, + "color": 1, + "type": 17, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "boomTime": 3, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "lock": true, + "id": 290 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "lock": true, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "floor": 1, + "floorTime": 9, + "floorMove": true, + "lock": true, + "id": 330 + }, + { + "block": 2, + "color": 10, + "type": 16, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "questionTime": 6, + "id": 340 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "lockTime": 9, + "id": 330 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "lockTime": 9, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1030, + "num": 7, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 1031, + "num": 0, + "color": 5, + "special": 3, + "length": 3, + "freeze": 7 + }, + { + "id": 1032, + "num": 1, + "color": 5, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 1033, + "num": 2, + "color": 5, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 1034, + "num": 13, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1035, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1036, + "num": 10, + "color": 9, + "special": 0, + "length": 3, + "longAndShort": 13, + "order": true + }, + { + "id": 1037, + "num": 12, + "color": 9, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": true + }, + { + "id": 1038, + "num": 14, + "color": 9, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": true + }, + { + "id": 1039, + "num": 9, + "color": 7, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": false + }, + { + "id": 1040, + "num": 11, + "color": 7, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": false + }, + { + "id": 1041, + "num": 26, + "color": 1, + "special": 0, + "length": 2, + "colorArray": "02" + }, + { + "id": 1042, + "num": 27, + "color": 1, + "special": 0, + "length": 0, + "colorArray": "02" + }, + { + "id": 1043, + "num": 24, + "color": 10, + "special": 0, + "length": 2, + "colorArray": "959" + }, + { + "id": 1044, + "num": 25, + "color": 10, + "special": 0, + "length": 0, + "colorArray": "959" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1029.json.meta b/assets/custom/Json/level1029.json.meta new file mode 100644 index 0000000..cddd5bc --- /dev/null +++ b/assets/custom/Json/level1029.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "eca9cbd7-9bd9-4794-b919-9540f2319778", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1030.json b/assets/custom/Json/level1030.json new file mode 100644 index 0000000..e1f7739 --- /dev/null +++ b/assets/custom/Json/level1030.json @@ -0,0 +1,381 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1030", + "map": [ + 9, + 9 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 22, + "color": 8, + "type": 3, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "lockTime": 4, + "id": 320 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 16, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "questionTime": 12, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "floor": 1, + "floorTime": 8, + "floorMove": true, + "id": 350 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "floor": 1, + "floorTime": 8, + "floorMove": true, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 16, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "questionTime": 5, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 16, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "questionTime": 9, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 390 + }, + { + "block": 4, + "color": 10, + "type": 2, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1031, + "num": 1, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 1032, + "num": 2, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1033, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1034, + "num": 12, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 1035, + "num": 18, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 1036, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 1037, + "num": 24, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 1038, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 1039, + "num": 22, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1040, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1041, + "num": 17, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 1042, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 1043, + "num": 13, + "color": 3, + "special": 3, + "length": 1, + "freeze": 10 + }, + { + "id": 1044, + "num": 5, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 1045, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1030.json.meta b/assets/custom/Json/level1030.json.meta new file mode 100644 index 0000000..6ec90c6 --- /dev/null +++ b/assets/custom/Json/level1030.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "744c6f03-c18e-48ef-a6df-3a8c6b6f831f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1031.json b/assets/custom/Json/level1031.json new file mode 100644 index 0000000..45e7319 --- /dev/null +++ b/assets/custom/Json/level1031.json @@ -0,0 +1,313 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1031", + "map": [ + 8, + 8 + ], + "time": 140, + "gap": [ + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 7, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 7, + "type": 17, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "boomTime": 1, + "id": 230 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "stacking": 6, + "id": 240 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "stacking": 3, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "floor": 1, + "floorTime": 8, + "floorMove": true, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "floor": 1, + "floorTime": 8, + "floorMove": true, + "id": 280 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "floor": 2, + "floorTime": 12, + "floorMove": true, + "lock": true, + "id": 290 + }, + { + "block": 1, + "color": 9, + "type": 16, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "questionTime": 13, + "id": 300 + }, + { + "block": 1, + "color": 4, + "type": 16, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "questionTime": 10, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 16, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "questionTime": 7, + "id": 320 + }, + { + "block": 16, + "color": 6, + "type": 16, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "questionTime": 6, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 16, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "questionTime": 3, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1032, + "num": 11, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 1033, + "num": 13, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 1034, + "num": 10, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 1035, + "num": 12, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 1036, + "num": 4, + "color": 7, + "special": 0, + "length": 1, + "colorArray": "6660" + }, + { + "id": 1037, + "num": 16, + "color": 10, + "special": 0, + "length": 1, + "colorArray": "93" + }, + { + "id": 1038, + "num": 1, + "color": 2, + "special": 0, + "length": 3, + "colorArray": "155" + }, + { + "id": 1039, + "num": 2, + "color": 2, + "special": 0, + "length": 0, + "colorArray": "155" + }, + { + "id": 1040, + "num": 3, + "color": 2, + "special": 0, + "length": 0, + "colorArray": "155" + }, + { + "id": 1041, + "num": 21, + "color": 3, + "special": 0, + "length": 3, + "colorArray": "2828" + }, + { + "id": 1042, + "num": 22, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "2828" + }, + { + "id": 1043, + "num": 23, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "2828" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1031.json.meta b/assets/custom/Json/level1031.json.meta new file mode 100644 index 0000000..d94dad6 --- /dev/null +++ b/assets/custom/Json/level1031.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "508e7f3d-6929-448e-aba2-090b27888a16", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1032.json b/assets/custom/Json/level1032.json new file mode 100644 index 0000000..8b45888 --- /dev/null +++ b/assets/custom/Json/level1032.json @@ -0,0 +1,397 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1032", + "map": [ + 9, + 9 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 6, + "y": 3, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 14, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 1, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "stacking": 6, + "id": 260 + }, + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "stacking": 6, + "id": 270 + }, + { + "block": 1, + "color": 6, + "type": 1, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "stacking": 1, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 1, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "stacking": 10, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 1, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "stacking": 3, + "id": 300 + }, + { + "block": 0, + "color": 11, + "type": 8, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 16, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "questionTime": 5, + "id": 320 + }, + { + "block": 2, + "color": 10, + "type": 16, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "questionTime": 7, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 4, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "freezeTime": 8, + "id": 340 + }, + { + "block": 0, + "color": 2, + "type": 16, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "questionTime": 9, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 4, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "freezeTime": 10, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1033, + "num": 0, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 1034, + "num": 1, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 1035, + "num": 14, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 1036, + "num": 25, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 1037, + "num": 26, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 1038, + "num": 13, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 1039, + "num": 6, + "color": 9, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": false + }, + { + "id": 1040, + "num": 7, + "color": 9, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": false + }, + { + "id": 1041, + "num": 21, + "color": 1, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": false + }, + { + "id": 1042, + "num": 24, + "color": 1, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": false + }, + { + "id": 1043, + "num": 17, + "color": 2, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 1044, + "num": 18, + "color": 2, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 1045, + "num": 5, + "color": 6, + "special": 0, + "length": 2, + "longAndShort": 21, + "order": false + }, + { + "id": 1046, + "num": 10, + "color": 6, + "special": 0, + "length": 0, + "longAndShort": 21, + "order": false + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1032.json.meta b/assets/custom/Json/level1032.json.meta new file mode 100644 index 0000000..4536a79 --- /dev/null +++ b/assets/custom/Json/level1032.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c59a4855-ab7b-4d75-a354-b531e39dcfc0", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1033.json b/assets/custom/Json/level1033.json new file mode 100644 index 0000000..d2a9c76 --- /dev/null +++ b/assets/custom/Json/level1033.json @@ -0,0 +1,398 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1033", + "map": [ + 8, + 10 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 17, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "boomTime": 2, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 7, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 2, + "type": 14, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 14, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 14, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 16, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "questionTime": 5, + "id": 380 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "floor": 1, + "floorTime": 6, + "floorMove": true, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 14, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 6, + "floorMove": true, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 14, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "floor": 2, + "floorTime": 8, + "floorMove": true, + "id": 410 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "floor": 2, + "floorTime": 8, + "floorMove": true, + "id": 420 + }, + { + "block": 1, + "color": 7, + "type": 16, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "questionTime": 11, + "id": 430 + }, + { + "block": 4, + "color": 5, + "type": 16, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "questionTime": 13, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1034, + "num": 8, + "color": 2, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 1035, + "num": 12, + "color": 7, + "special": 6, + "length": 2, + "lockTime": 5 + }, + { + "id": 1036, + "num": 14, + "color": 7, + "special": 6, + "length": 0, + "lockTime": 5 + }, + { + "id": 1037, + "num": 18, + "color": 6, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 1038, + "num": 3, + "color": 5, + "special": 0, + "length": 3, + "colorArray": "4244" + }, + { + "id": 1039, + "num": 4, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "4244" + }, + { + "id": 1040, + "num": 5, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "4244" + }, + { + "id": 1041, + "num": 13, + "color": 9, + "special": 0, + "length": 2, + "colorArray": "887" + }, + { + "id": 1042, + "num": 15, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "887" + }, + { + "id": 1043, + "num": 23, + "color": 10, + "special": 0, + "length": 3, + "colorArray": "90" + }, + { + "id": 1044, + "num": 24, + "color": 10, + "special": 0, + "length": 0, + "colorArray": "90" + }, + { + "id": 1045, + "num": 25, + "color": 10, + "special": 0, + "length": 0, + "colorArray": "90" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1033.json.meta b/assets/custom/Json/level1033.json.meta new file mode 100644 index 0000000..01bc944 --- /dev/null +++ b/assets/custom/Json/level1033.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "fdf1f27d-1e5c-4a54-b391-90dcd76dfa07", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1034.json b/assets/custom/Json/level1034.json new file mode 100644 index 0000000..968ea44 --- /dev/null +++ b/assets/custom/Json/level1034.json @@ -0,0 +1,331 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 5, + "y": 5, + "color": "4" + }, + { + "x": 5, + "y": 4, + "color": "4" + } + ], + "id": "1034", + "map": [ + 8, + 8 + ], + "time": 110, + "gap": [ + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "lock": true, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "lock": true, + "id": 290 + }, + { + "block": 1, + "color": 9, + "type": 16, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "questionTime": 8, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 16, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "questionTime": 7, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 16, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "questionTime": 5, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 2, + "type": 17, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "boomTime": 3, + "id": 340 + }, + { + "block": 1, + "color": 6, + "type": 16, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "questionTime": 4, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1035, + "num": 1, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 1036, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 1037, + "num": 3, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 1038, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1039, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 1040, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 1041, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 1042, + "num": 23, + "color": 4, + "special": 3, + "length": 3, + "freeze": 10 + }, + { + "id": 1043, + "num": 24, + "color": 4, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 1044, + "num": 25, + "color": 4, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 1045, + "num": 20, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 1046, + "num": 21, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1047, + "num": 14, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 1048, + "num": 16, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 1049, + "num": 10, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 1050, + "num": 12, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1034.json.meta b/assets/custom/Json/level1034.json.meta new file mode 100644 index 0000000..dc80ac7 --- /dev/null +++ b/assets/custom/Json/level1034.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2b9e86fa-6170-4127-98a9-8d4243d94dfc", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1035.json b/assets/custom/Json/level1035.json new file mode 100644 index 0000000..68e5741 --- /dev/null +++ b/assets/custom/Json/level1035.json @@ -0,0 +1,348 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1035", + "map": [ + 8, + 8 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 3, + "color": 8, + "type": 9, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "lockTime": 11, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "lockTime": 11, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 17, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "boomTime": 2, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 16, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "questionTime": 5, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "lockTime": 11, + "floor": 1, + "floorTime": 7, + "floorMove": true, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "lockTime": 11, + "floor": 1, + "floorTime": 7, + "floorMove": true, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1036, + "num": 0, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1037, + "num": 1, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1038, + "num": 4, + "color": 8, + "special": 3, + "length": 3, + "freeze": 11 + }, + { + "id": 1039, + "num": 8, + "color": 8, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 1040, + "num": 10, + "color": 8, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 1041, + "num": 12, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 1042, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 1043, + "num": 18, + "color": 3, + "special": 0, + "length": 1, + "colorArray": "2929" + }, + { + "id": 1044, + "num": 2, + "color": 9, + "special": 0, + "length": 2, + "colorArray": "81" + }, + { + "id": 1045, + "num": 3, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "81" + }, + { + "id": 1046, + "num": 11, + "color": 5, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": false + }, + { + "id": 1047, + "num": 13, + "color": 5, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": false + }, + { + "id": 1048, + "num": 22, + "color": 7, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 1049, + "num": 23, + "color": 7, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1035.json.meta b/assets/custom/Json/level1035.json.meta new file mode 100644 index 0000000..b1e625b --- /dev/null +++ b/assets/custom/Json/level1035.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4d5f9046-2bd7-4f86-82f6-ed362738bf9d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1036.json b/assets/custom/Json/level1036.json new file mode 100644 index 0000000..8c6ba8e --- /dev/null +++ b/assets/custom/Json/level1036.json @@ -0,0 +1,393 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1036", + "map": [ + 10, + 10 + ], + "time": 140, + "gap": [ + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 2, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 14, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 11, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -360, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 17, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "boomTime": 1, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "floor": 1, + "floorTime": 5, + "floorMove": false, + "id": 350 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "freezeTime": 5, + "floor": 1, + "floorTime": 5, + "floorMove": false, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 16, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "questionTime": 7, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1037, + "num": 1, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 1038, + "num": 4, + "color": 2, + "special": 0, + "length": 2, + "colorArray": "188" + }, + { + "id": 1039, + "num": 5, + "color": 2, + "special": 0, + "length": 0, + "colorArray": "188" + }, + { + "id": 1040, + "num": 30, + "color": 3, + "special": 0, + "length": 2, + "colorArray": "200" + }, + { + "id": 1041, + "num": 31, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "200" + }, + { + "id": 1042, + "num": 19, + "color": 8, + "special": 0, + "length": 3, + "colorArray": "779" + }, + { + "id": 1043, + "num": 21, + "color": 8, + "special": 0, + "length": 0, + "colorArray": "779" + }, + { + "id": 1044, + "num": 23, + "color": 8, + "special": 0, + "length": 0, + "colorArray": "779" + }, + { + "id": 1045, + "num": 6, + "color": 4, + "special": 0, + "length": 3, + "colorArray": "36" + }, + { + "id": 1046, + "num": 8, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "36" + }, + { + "id": 1047, + "num": 10, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "36" + }, + { + "id": 1048, + "num": 27, + "color": 6, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1036.json.meta b/assets/custom/Json/level1036.json.meta new file mode 100644 index 0000000..b42bd73 --- /dev/null +++ b/assets/custom/Json/level1036.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "20c6bbfa-63c5-4420-9ca9-d3f974b44d53", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1037.json b/assets/custom/Json/level1037.json new file mode 100644 index 0000000..c3653c5 --- /dev/null +++ b/assets/custom/Json/level1037.json @@ -0,0 +1,343 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1037", + "map": [ + 9, + 9 + ], + "time": 120, + "gap": [ + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 18, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 17, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "boomTime": 2, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 17, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "boomTime": 1, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 16, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "questionTime": 10, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 16, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "questionTime": 12, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 16, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "questionTime": 13, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1038, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1039, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 1040, + "num": 14, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 1041, + "num": 16, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 1042, + "num": 12, + "color": 10, + "special": 3, + "length": 1, + "freeze": 7 + }, + { + "id": 1043, + "num": 9, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 1044, + "num": 11, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 1045, + "num": 13, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 1046, + "num": 25, + "color": 1, + "special": 0, + "length": 2, + "colorArray": "01" + }, + { + "id": 1047, + "num": 26, + "color": 1, + "special": 0, + "length": 0, + "colorArray": "01" + }, + { + "id": 1048, + "num": 21, + "color": 6, + "special": 0, + "length": 1, + "colorArray": "575" + }, + { + "id": 1049, + "num": 1, + "color": 9, + "special": 0, + "length": 2, + "colorArray": "83" + }, + { + "id": 1050, + "num": 2, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "83" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1037.json.meta b/assets/custom/Json/level1037.json.meta new file mode 100644 index 0000000..e7eeaf0 --- /dev/null +++ b/assets/custom/Json/level1037.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d331f9b5-fbfd-4ef4-b93d-e5e51ed1b2e1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1038.json b/assets/custom/Json/level1038.json new file mode 100644 index 0000000..c6375f3 --- /dev/null +++ b/assets/custom/Json/level1038.json @@ -0,0 +1,365 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1038", + "map": [ + 9, + 9 + ], + "time": 125, + "gap": [ + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 3, + "z": 0 + }, + { + "x": 6, + "y": 3, + "z": 0 + }, + { + "x": 5, + "y": 3, + "z": 0 + }, + { + "x": 5, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 6, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 14, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 14, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 14, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 16, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "questionTime": 6, + "id": 330 + }, + { + "block": 5, + "color": 3, + "type": 16, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "questionTime": 7, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 4, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "freezeTime": 9, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 14, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "floorMove": true, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1039, + "num": 0, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 1040, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1041, + "num": 2, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1042, + "num": 5, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1043, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 1044, + "num": 10, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 1045, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 1046, + "num": 22, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 1047, + "num": 24, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 1048, + "num": 26, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1049, + "num": 27, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1050, + "num": 13, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 1051, + "num": 7, + "color": 8, + "special": 6, + "length": 2, + "lockTime": 4 + }, + { + "id": 1052, + "num": 9, + "color": 8, + "special": 6, + "length": 0, + "lockTime": 4 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1038.json.meta b/assets/custom/Json/level1038.json.meta new file mode 100644 index 0000000..b289ee5 --- /dev/null +++ b/assets/custom/Json/level1038.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4a1d8bbd-db44-464e-bca5-f160d350e099", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1039.json b/assets/custom/Json/level1039.json new file mode 100644 index 0000000..e114257 --- /dev/null +++ b/assets/custom/Json/level1039.json @@ -0,0 +1,279 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1039", + "map": [ + 9, + 8 + ], + "time": 110, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 3, + "y": 5, + "z": 0 + }, + { + "x": 3, + "y": 6, + "z": 0 + }, + { + "x": 5, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 5, + "z": 0 + }, + { + "x": 5, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 3, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "lockTime": 3, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 17, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "boomTime": 2, + "id": 320 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1040, + "num": 10, + "color": 4, + "special": 3, + "length": 3, + "freeze": 8 + }, + { + "id": 1041, + "num": 14, + "color": 4, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 1042, + "num": 16, + "color": 4, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 1043, + "num": 1, + "color": 8, + "special": 0, + "length": 2, + "colorArray": "76" + }, + { + "id": 1044, + "num": 2, + "color": 8, + "special": 0, + "length": 0, + "colorArray": "76" + }, + { + "id": 1045, + "num": 6, + "color": 2, + "special": 0, + "length": 1, + "colorArray": "144" + }, + { + "id": 1046, + "num": 24, + "color": 9, + "special": 0, + "length": 1, + "colorArray": "82" + }, + { + "id": 1047, + "num": 26, + "color": 10, + "special": 0, + "length": 2, + "colorArray": "95" + }, + { + "id": 1048, + "num": 27, + "color": 10, + "special": 0, + "length": 0, + "colorArray": "95" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1039.json.meta b/assets/custom/Json/level1039.json.meta new file mode 100644 index 0000000..e7bad96 --- /dev/null +++ b/assets/custom/Json/level1039.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f625822b-3831-420e-be01-e0c0814fb45b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1040.json b/assets/custom/Json/level1040.json new file mode 100644 index 0000000..48aa978 --- /dev/null +++ b/assets/custom/Json/level1040.json @@ -0,0 +1,311 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1040", + "map": [ + 8, + 8 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 4, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "freezeTime": 6, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 16, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "questionTime": 9, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 17, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "boomTime": 1, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 17, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "boomTime": 2, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "lock": false, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1041, + "num": 0, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1042, + "num": 1, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1043, + "num": 16, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 1044, + "num": 18, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 1045, + "num": 2, + "color": 1, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": false + }, + { + "id": 1046, + "num": 3, + "color": 1, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": false + }, + { + "id": 1047, + "num": 15, + "color": 3, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": false + }, + { + "id": 1048, + "num": 17, + "color": 3, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": false + }, + { + "id": 1049, + "num": 25, + "color": 5, + "special": 0, + "length": 3, + "colorArray": "499" + }, + { + "id": 1050, + "num": 26, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "499" + }, + { + "id": 1051, + "num": 27, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "499" + }, + { + "id": 1052, + "num": 22, + "color": 2, + "special": 0, + "length": 1, + "colorArray": "117" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1040.json.meta b/assets/custom/Json/level1040.json.meta new file mode 100644 index 0000000..f4317e3 --- /dev/null +++ b/assets/custom/Json/level1040.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4ba0f480-76f4-4cb0-9ecf-04315839bd46", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1041.json b/assets/custom/Json/level1041.json new file mode 100644 index 0000000..d27a7e8 --- /dev/null +++ b/assets/custom/Json/level1041.json @@ -0,0 +1,273 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1041", + "map": [ + 8, + 8 + ], + "time": 120, + "gap": [ + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 7, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 9, + "type": 17, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "boomTime": 1, + "floor": 1, + "floorTime": 4, + "floorMove": false, + "id": 310 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "freezeTime": 6, + "id": 320 + }, + { + "block": 19, + "color": 6, + "type": 16, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "questionTime": 8, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 16, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "questionTime": 10, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1042, + "num": 9, + "color": 9, + "special": 0, + "length": 2, + "colorArray": "8808" + }, + { + "id": 1043, + "num": 11, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "8808" + }, + { + "id": 1044, + "num": 1, + "color": 4, + "special": 0, + "length": 2, + "colorArray": "3939" + }, + { + "id": 1045, + "num": 2, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "3939" + }, + { + "id": 1046, + "num": 21, + "color": 3, + "special": 0, + "length": 3, + "colorArray": "27" + }, + { + "id": 1047, + "num": 22, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "27" + }, + { + "id": 1048, + "num": 23, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "27" + }, + { + "id": 1049, + "num": 10, + "color": 5, + "special": 0, + "length": 2, + "colorArray": "45" + }, + { + "id": 1050, + "num": 12, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "45" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1041.json.meta b/assets/custom/Json/level1041.json.meta new file mode 100644 index 0000000..86de764 --- /dev/null +++ b/assets/custom/Json/level1041.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "75f0108e-87b9-4dfd-9aab-3d780d1183b0", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1042.json b/assets/custom/Json/level1042.json new file mode 100644 index 0000000..12843e4 --- /dev/null +++ b/assets/custom/Json/level1042.json @@ -0,0 +1,321 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1042", + "map": [ + 8, + 8 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 19, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 1, + "color": 6, + "type": 17, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "boomTime": 2, + "id": 270 + }, + { + "block": 2, + "color": 1, + "type": 6, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "boomTime": 30, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 16, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "questionTime": 10, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 16, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "questionTime": 8, + "id": 300 + }, + { + "block": 1, + "color": 1, + "type": 16, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "questionTime": 6, + "id": 310 + }, + { + "block": 2, + "color": 3, + "type": 16, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "questionTime": 5, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "floor": 1, + "floorTime": 5, + "floorMove": true, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "floor": 1, + "floorTime": 5, + "floorMove": true, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1043, + "num": 12, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 1044, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 1045, + "num": 11, + "color": 1, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": false + }, + { + "id": 1046, + "num": 13, + "color": 1, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": false + }, + { + "id": 1047, + "num": 19, + "color": 3, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 1048, + "num": 20, + "color": 3, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 1049, + "num": 22, + "color": 9, + "special": 0, + "length": 2, + "longAndShort": 21, + "order": true + }, + { + "id": 1050, + "num": 23, + "color": 9, + "special": 0, + "length": 0, + "longAndShort": 21, + "order": true + }, + { + "id": 1051, + "num": 0, + "color": 10, + "special": 3, + "length": 1, + "freeze": 10 + }, + { + "id": 1052, + "num": 1, + "color": 5, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 1053, + "num": 2, + "color": 5, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 1054, + "num": 8, + "color": 4, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 1055, + "num": 10, + "color": 4, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1042.json.meta b/assets/custom/Json/level1042.json.meta new file mode 100644 index 0000000..036a7e4 --- /dev/null +++ b/assets/custom/Json/level1042.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "75d3b84a-700b-49da-983e-4d437630e8e2", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1043.json b/assets/custom/Json/level1043.json new file mode 100644 index 0000000..0d46ecd --- /dev/null +++ b/assets/custom/Json/level1043.json @@ -0,0 +1,296 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1043", + "map": [ + 8, + 8 + ], + "time": 110, + "gap": [ + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 7, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 7, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 1, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "stacking": 5, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 1, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "stacking": 5, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "stacking": 1, + "id": 280 + }, + { + "block": 19, + "color": 9, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 1, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 16, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "questionTime": 10, + "id": 300 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "lock": true, + "id": 310 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "lock": true, + "id": 320 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1044, + "num": 0, + "color": 6, + "special": 3, + "length": 1, + "freeze": 6 + }, + { + "id": 1045, + "num": 19, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 1046, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 1047, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 1048, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1049, + "num": 22, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 1050, + "num": 23, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 1051, + "num": 18, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 1052, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 1053, + "num": 1, + "color": 2, + "special": 3, + "length": 1, + "freeze": 10 + }, + { + "id": 1054, + "num": 13, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 1055, + "num": 15, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 1056, + "num": 8, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 1057, + "num": 14, + "color": 1, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1043.json.meta b/assets/custom/Json/level1043.json.meta new file mode 100644 index 0000000..cdbb67e --- /dev/null +++ b/assets/custom/Json/level1043.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d501f859-a1ca-45d1-8ef5-9a5e60200ada", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1044.json b/assets/custom/Json/level1044.json new file mode 100644 index 0000000..b40cf40 --- /dev/null +++ b/assets/custom/Json/level1044.json @@ -0,0 +1,377 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1044", + "map": [ + 9, + 9 + ], + "time": 110, + "gap": [ + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 8, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 4, + "type": 17, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "boomTime": 1, + "id": 310 + }, + { + "block": 2, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "lockTime": 4, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 17, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "boomTime": 1, + "floor": 1, + "floorTime": 3, + "floorMove": true, + "id": 330 + }, + { + "block": 4, + "color": 9, + "type": 16, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "questionTime": 4, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "floor": 2, + "floorTime": 4, + "floorMove": true, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "floor": 3, + "floorTime": 6, + "floorMove": true, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "floor": 4, + "floorTime": 7, + "floorMove": true, + "id": 370 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "floor": 4, + "floorTime": 7, + "floorMove": true, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "floor": 4, + "floorTime": 7, + "floorMove": true, + "id": 390 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "floor": 4, + "floorTime": 7, + "floorMove": true, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1045, + "num": 7, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1046, + "num": 9, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 1047, + "num": 13, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 1048, + "num": 20, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 1049, + "num": 22, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 1050, + "num": 24, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 1051, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 1052, + "num": 10, + "color": 4, + "special": 0, + "length": 2, + "colorArray": "393955" + }, + { + "id": 1053, + "num": 12, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "393955" + }, + { + "id": 1054, + "num": 3, + "color": 9, + "special": 0, + "length": 3, + "colorArray": "866" + }, + { + "id": 1055, + "num": 4, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "866" + }, + { + "id": 1056, + "num": 5, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "866" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1044.json.meta b/assets/custom/Json/level1044.json.meta new file mode 100644 index 0000000..b5a3ff2 --- /dev/null +++ b/assets/custom/Json/level1044.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d883d628-11a2-4cd1-ba4f-cfb6e9ae0327", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1045.json b/assets/custom/Json/level1045.json new file mode 100644 index 0000000..5864e2d --- /dev/null +++ b/assets/custom/Json/level1045.json @@ -0,0 +1,459 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1045", + "map": [ + 10, + 10 + ], + "time": 90, + "gap": [ + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 3, + "y": 6, + "z": 0 + }, + { + "x": 4, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 20, + "color": 7, + "type": 3, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "lockTime": 4, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "floor": 1, + "floorTime": 7, + "floorMove": false, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "floor": 1, + "floorTime": 7, + "floorMove": false, + "id": 310 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "floor": 1, + "floorTime": 7, + "floorMove": false, + "id": 320 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "lock": true, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "lock": true, + "id": 340 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "lock": false, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 16, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "questionTime": 9, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 16, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "questionTime": 11, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 16, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "questionTime": 13, + "id": 380 + }, + { + "block": 2, + "color": 6, + "type": 16, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "questionTime": 6, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1046, + "num": 1, + "color": 9, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 1047, + "num": 2, + "color": 9, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 1048, + "num": 4, + "color": 6, + "special": 4, + "length": 2 + }, + { + "id": 1049, + "num": 5, + "color": 6, + "special": 4, + "length": 0 + }, + { + "id": 1050, + "num": 7, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 1051, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 1052, + "num": 19, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1053, + "num": 21, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 1054, + "num": 29, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 1055, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 1056, + "num": 32, + "color": 1, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 1057, + "num": 33, + "color": 1, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 1058, + "num": 20, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1059, + "num": 22, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1060, + "num": 6, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 1061, + "num": 8, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 1062, + "num": 10, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1045.json.meta b/assets/custom/Json/level1045.json.meta new file mode 100644 index 0000000..cce9df7 --- /dev/null +++ b/assets/custom/Json/level1045.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9f247a73-dd84-434c-b7d2-0af06bc4195c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1046.json b/assets/custom/Json/level1046.json new file mode 100644 index 0000000..a28f6a3 --- /dev/null +++ b/assets/custom/Json/level1046.json @@ -0,0 +1,389 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1046", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [ + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 3, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "freezeTime": 10, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 4, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "freezeTime": 4, + "id": 380 + }, + { + "block": 2, + "color": 2, + "type": 16, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "questionTime": 6, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 16, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "questionTime": 7, + "id": 400 + }, + { + "block": 2, + "color": 3, + "type": 16, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "questionTime": 8, + "id": 410 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "lock": true, + "id": 420 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "lock": true, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1047, + "num": 2, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1048, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1049, + "num": 27, + "color": 5, + "special": 3, + "length": 3, + "freeze": 16 + }, + { + "id": 1050, + "num": 28, + "color": 5, + "special": 3, + "length": 0, + "freeze": 16 + }, + { + "id": 1051, + "num": 29, + "color": 5, + "special": 3, + "length": 0, + "freeze": 16 + }, + { + "id": 1052, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 1053, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 1054, + "num": 9, + "color": 7, + "special": 0, + "length": 1, + "colorArray": "68" + }, + { + "id": 1055, + "num": 22, + "color": 10, + "special": 0, + "length": 1, + "colorArray": "9119" + }, + { + "id": 1056, + "num": 21, + "color": 6, + "special": 0, + "length": 2, + "colorArray": "522" + }, + { + "id": 1057, + "num": 23, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "522" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1046.json.meta b/assets/custom/Json/level1046.json.meta new file mode 100644 index 0000000..7a4c157 --- /dev/null +++ b/assets/custom/Json/level1046.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7b3518f5-e69e-468a-afce-a0ff59f09a59", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1047.json b/assets/custom/Json/level1047.json new file mode 100644 index 0000000..abee893 --- /dev/null +++ b/assets/custom/Json/level1047.json @@ -0,0 +1,382 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1047", + "map": [ + 9, + 9 + ], + "time": 100, + "gap": [ + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 6, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "lock": false, + "id": 340 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "floor": 1, + "floorTime": 2, + "floorMove": true, + "lock": true, + "id": 350 + }, + { + "block": 1, + "color": 8, + "type": 16, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "questionTime": 12, + "floor": 1, + "floorTime": 2, + "floorMove": true, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "freezeTime": 6, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1048, + "num": 2, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 1049, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 1050, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 1051, + "num": 32, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 1052, + "num": 15, + "color": 10, + "special": 3, + "length": 1, + "freeze": 4 + }, + { + "id": 1053, + "num": 35, + "color": 1, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 1054, + "num": 36, + "color": 1, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 1055, + "num": 31, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 1056, + "num": 8, + "color": 8, + "special": 0, + "length": 2, + "colorArray": "7477" + }, + { + "id": 1057, + "num": 14, + "color": 8, + "special": 0, + "length": 0, + "colorArray": "7477" + }, + { + "id": 1058, + "num": 16, + "color": 9, + "special": 0, + "length": 2, + "colorArray": "886" + }, + { + "id": 1059, + "num": 20, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "886" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1047.json.meta b/assets/custom/Json/level1047.json.meta new file mode 100644 index 0000000..5ff0248 --- /dev/null +++ b/assets/custom/Json/level1047.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "04562ab1-cdc5-4592-aa61-fe7d830713d4", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1048.json b/assets/custom/Json/level1048.json new file mode 100644 index 0000000..756c805 --- /dev/null +++ b/assets/custom/Json/level1048.json @@ -0,0 +1,396 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1048", + "map": [ + 9, + 9 + ], + "time": 100, + "gap": [ + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 6, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "floor": 1, + "floorTime": 7, + "floorMove": true, + "lock": true, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "lockTime": 9, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "lockTime": 9, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 5, + "type": 16, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "questionTime": 15, + "id": 390 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1049, + "num": 0, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 1050, + "num": 1, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 1051, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 1052, + "num": 5, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 1053, + "num": 6, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 1054, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1055, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 1056, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 1057, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 1058, + "num": 28, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 1059, + "num": 29, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 1060, + "num": 25, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1061, + "num": 26, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1062, + "num": 14, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 1063, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 1064, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1048.json.meta b/assets/custom/Json/level1048.json.meta new file mode 100644 index 0000000..daf7123 --- /dev/null +++ b/assets/custom/Json/level1048.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2ebfaf9a-eba7-45df-a42d-acc3d806a3b6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1049.json b/assets/custom/Json/level1049.json new file mode 100644 index 0000000..4e04980 --- /dev/null +++ b/assets/custom/Json/level1049.json @@ -0,0 +1,280 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1049", + "map": [ + 8, + 8 + ], + "time": 120, + "gap": [ + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 2, + "type": 8, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 5, + "color": 7, + "type": 16, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "questionTime": 6, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1050, + "num": 24, + "color": 3, + "special": 0, + "length": 2, + "colorArray": "27" + }, + { + "id": 1051, + "num": 25, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "27" + }, + { + "id": 1052, + "num": 20, + "color": 6, + "special": 0, + "length": 2, + "colorArray": "53" + }, + { + "id": 1053, + "num": 21, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "53" + }, + { + "id": 1054, + "num": 4, + "color": 1, + "special": 0, + "length": 2, + "colorArray": "08" + }, + { + "id": 1055, + "num": 5, + "color": 1, + "special": 0, + "length": 0, + "colorArray": "08" + }, + { + "id": 1056, + "num": 12, + "color": 2, + "special": 0, + "length": 2, + "colorArray": "16" + }, + { + "id": 1057, + "num": 14, + "color": 2, + "special": 0, + "length": 0, + "colorArray": "16" + }, + { + "id": 1058, + "num": 0, + "color": 10, + "special": 0, + "length": 2, + "colorArray": "944" + }, + { + "id": 1059, + "num": 1, + "color": 10, + "special": 0, + "length": 0, + "colorArray": "944" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1049.json.meta b/assets/custom/Json/level1049.json.meta new file mode 100644 index 0000000..190a234 --- /dev/null +++ b/assets/custom/Json/level1049.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5438d587-69af-428e-a57b-46fa2932d096", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1050.json b/assets/custom/Json/level1050.json new file mode 100644 index 0000000..879266d --- /dev/null +++ b/assets/custom/Json/level1050.json @@ -0,0 +1,371 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1050", + "map": [ + 8, + 9 + ], + "time": 90, + "gap": [ + { + "x": 6, + "y": 5, + "z": 0 + }, + { + "x": 6, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 300 + }, + { + "block": 2, + "color": 8, + "type": 17, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "boomTime": 1, + "id": 310 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "lock": true, + "id": 350 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "lock": true, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 16, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "questionTime": 11, + "id": 380 + }, + { + "block": 4, + "color": 9, + "type": 17, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "boomTime": 4, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1051, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 1052, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 1053, + "num": 26, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1054, + "num": 27, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 1055, + "num": 5, + "color": 10, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 1056, + "num": 6, + "color": 10, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 1057, + "num": 24, + "color": 3, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 1058, + "num": 25, + "color": 3, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 1059, + "num": 15, + "color": 7, + "special": 3, + "length": 1, + "freeze": 6 + }, + { + "id": 1060, + "num": 2, + "color": 2, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 1061, + "num": 3, + "color": 2, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 1062, + "num": 9, + "color": 9, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 1063, + "num": 11, + "color": 9, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 1064, + "num": 10, + "color": 5, + "special": 0, + "length": 3, + "longAndShort": 13, + "order": false + }, + { + "id": 1065, + "num": 12, + "color": 5, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + }, + { + "id": 1066, + "num": 14, + "color": 5, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1050.json.meta b/assets/custom/Json/level1050.json.meta new file mode 100644 index 0000000..5410de7 --- /dev/null +++ b/assets/custom/Json/level1050.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e4b4741b-4dd7-4dbc-b651-cd18da72e90c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/addTime.prefab b/assets/prefab/prop/addTime.prefab new file mode 100644 index 0000000..21cfe93 --- /dev/null +++ b/assets/prefab/prop/addTime.prefab @@ -0,0 +1,315 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "AddTime", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [ + { + "__id__": 7 + }, + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 95 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.33 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -64.62538, + 91.92769, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 0.76923 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 68, + "height": 68 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0.614, + 15.971, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ff4bcb85-1f40-44e2-9be2-60f766db6413" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4ahWLpW2tD8LfIbT5i2bbo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 6 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8.993, + -3.378, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "61sOm1ZBJDAqXHwke7rNX0", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "0937dw41/BHtajklOzmCfjn", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/addTime.prefab.meta b/assets/prefab/prop/addTime.prefab.meta new file mode 100644 index 0000000..4f53ed1 --- /dev/null +++ b/assets/prefab/prop/addTime.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "795893b9-5913-43d1-a93f-c6c5751d131d", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block0.prefab b/assets/resources/prefab/block/block0.prefab index acc5c53..b56eb23 100644 --- a/assets/resources/prefab/block/block0.prefab +++ b/assets/resources/prefab/block/block0.prefab @@ -1387,8 +1387,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 120, - "height": 120 + "width": 122, + "height": 129 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1399,8 +1399,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 26.161, + -2.643, 0, 0, 0, @@ -1463,8 +1463,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -6.342, + 11.627, 0, 0, 0, diff --git a/assets/resources/prefab/block/block1.prefab b/assets/resources/prefab/block/block1.prefab index efafea3..486f82f 100644 --- a/assets/resources/prefab/block/block1.prefab +++ b/assets/resources/prefab/block/block1.prefab @@ -1387,8 +1387,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 120 + "width": 244, + "height": 130 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1463,8 +1463,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -8.706, + 16.54, 0, 0, 0, diff --git a/assets/resources/prefab/block/block10.prefab b/assets/resources/prefab/block/block10.prefab index 6a28020..e87bbe6 100644 --- a/assets/resources/prefab/block/block10.prefab +++ b/assets/resources/prefab/block/block10.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 360 + "width": 244, + "height": 371 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -38.247, + 61.924, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -61.924, + 12.142, 0, 0, 0, diff --git a/assets/resources/prefab/block/block11.prefab b/assets/resources/prefab/block/block11.prefab index 3553c3e..ecaa3d1 100644 --- a/assets/resources/prefab/block/block11.prefab +++ b/assets/resources/prefab/block/block11.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 360, - "height": 240 + "width": 366, + "height": 254 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -63.138, + 28.534, 0, 0, 0, @@ -1902,7 +1902,7 @@ "ctor": "Float64Array", "array": [ 0, - 0, + 78.923, 0, 0, 0, diff --git a/assets/resources/prefab/block/block12.prefab b/assets/resources/prefab/block/block12.prefab index 8dd050c..39091d4 100644 --- a/assets/resources/prefab/block/block12.prefab +++ b/assets/resources/prefab/block/block12.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 360 + "width": 246, + "height": 370 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 29.748, + -58.281, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 53.424, + 13.356, 0, 0, 0, diff --git a/assets/resources/prefab/block/block13.prefab b/assets/resources/prefab/block/block13.prefab index 66d4ef6..b0afd5b 100644 --- a/assets/resources/prefab/block/block13.prefab +++ b/assets/resources/prefab/block/block13.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 360, - "height": 240 + "width": 363, + "height": 249 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -62.531, + -28.534, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -1.214, + -46.139, 0, 0, 0, diff --git a/assets/resources/prefab/block/block14.prefab b/assets/resources/prefab/block/block14.prefab index 7af125f..8c10559 100644 --- a/assets/resources/prefab/block/block14.prefab +++ b/assets/resources/prefab/block/block14.prefab @@ -2117,8 +2117,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 360, - "height": 240 + "width": 364, + "height": 251 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2129,8 +2129,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -1.214, + 40.676, 0, 0, 0, @@ -2193,8 +2193,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 1.214, + 76.495, 0, 0, 0, diff --git a/assets/resources/prefab/block/block15.prefab b/assets/resources/prefab/block/block15.prefab index 6f09384..9170961 100644 --- a/assets/resources/prefab/block/block15.prefab +++ b/assets/resources/prefab/block/block15.prefab @@ -2117,8 +2117,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 360, - "height": 240 + "width": 364, + "height": 252 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2130,7 +2130,7 @@ "ctor": "Float64Array", "array": [ 0, - 0, + -28.273, 0, 0, 0, @@ -2193,8 +2193,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -3.084, + -39.068, 0, 0, 0, diff --git a/assets/resources/prefab/block/block16.prefab b/assets/resources/prefab/block/block16.prefab index 66773c2..4f062f6 100644 --- a/assets/resources/prefab/block/block16.prefab +++ b/assets/resources/prefab/block/block16.prefab @@ -2117,8 +2117,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 360 + "width": 243, + "height": 368 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2129,7 +2129,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, + -32.386, 0, 0, 0, @@ -2193,8 +2193,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -55.518, + 12.337, 0, 0, 0, diff --git a/assets/resources/prefab/block/block17.prefab b/assets/resources/prefab/block/block17.prefab index d91eaca..c385b69 100644 --- a/assets/resources/prefab/block/block17.prefab +++ b/assets/resources/prefab/block/block17.prefab @@ -2117,8 +2117,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 360 + "width": 242, + "height": 369 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2129,7 +2129,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, + 29.301, 0, 0, 0, @@ -2193,8 +2193,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 59.631, + 13.365, 0, 0, 0, diff --git a/assets/resources/prefab/block/block18.prefab b/assets/resources/prefab/block/block18.prefab index dd386b0..0a3dbfb 100644 --- a/assets/resources/prefab/block/block18.prefab +++ b/assets/resources/prefab/block/block18.prefab @@ -2555,8 +2555,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 360, - "height": 360 + "width": 364, + "height": 374 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2567,8 +2567,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 119.018, + 2.868, 0, 0, 0, @@ -2631,8 +2631,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -5.141, + 21.59, 0, 0, 0, diff --git a/assets/resources/prefab/block/block19.prefab b/assets/resources/prefab/block/block19.prefab index edacc86..105763a 100644 --- a/assets/resources/prefab/block/block19.prefab +++ b/assets/resources/prefab/block/block19.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 240 + "width": 246, + "height": 248 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 27.643, + -31.697, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 50.862, + -46.439, 0, 0, 0, diff --git a/assets/resources/prefab/block/block2.prefab b/assets/resources/prefab/block/block2.prefab index 36ae7ef..cd237d3 100644 --- a/assets/resources/prefab/block/block2.prefab +++ b/assets/resources/prefab/block/block2.prefab @@ -1387,8 +1387,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 120, - "height": 240 + "width": 127, + "height": 254 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1399,7 +1399,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, + -2.612, 0, 0, 0, @@ -1463,8 +1463,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -11.317, + 16.54, 0, 0, 0, diff --git a/assets/resources/prefab/block/block20.prefab b/assets/resources/prefab/block/block20.prefab index ced8bef..aaeeac8 100644 --- a/assets/resources/prefab/block/block20.prefab +++ b/assets/resources/prefab/block/block20.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 240 + "width": 244, + "height": 249 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -35.132, + -29.396, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -61.66, + -45.887, 0, 0, 0, diff --git a/assets/resources/prefab/block/block21.prefab b/assets/resources/prefab/block/block21.prefab index 9aec6e5..0735004 100644 --- a/assets/resources/prefab/block/block21.prefab +++ b/assets/resources/prefab/block/block21.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 240 + "width": 247, + "height": 252 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -30, + 33, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -56, + 78, 0, 0, 0, diff --git a/assets/resources/prefab/block/block22.prefab b/assets/resources/prefab/block/block22.prefab index 9030012..4565cb1 100644 --- a/assets/resources/prefab/block/block22.prefab +++ b/assets/resources/prefab/block/block22.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 240 + "width": 244, + "height": 251 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 27.319, + 33.39, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 55.853, + 77.708, 0, 0, 0, diff --git a/assets/resources/prefab/block/block3.prefab b/assets/resources/prefab/block/block3.prefab index d8a94d9..9082c00 100644 --- a/assets/resources/prefab/block/block3.prefab +++ b/assets/resources/prefab/block/block3.prefab @@ -1387,8 +1387,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 360, - "height": 120 + "width": 362, + "height": 132 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1463,8 +1463,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -8.225, + 19.534, 0, 0, 0, diff --git a/assets/resources/prefab/block/block4.prefab b/assets/resources/prefab/block/block4.prefab index c114702..88aecee 100644 --- a/assets/resources/prefab/block/block4.prefab +++ b/assets/resources/prefab/block/block4.prefab @@ -1399,7 +1399,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, + -9, 0, 0, 0, diff --git a/assets/resources/prefab/block/block5.prefab b/assets/resources/prefab/block/block5.prefab index 0147dfd..23443a0 100644 --- a/assets/resources/prefab/block/block5.prefab +++ b/assets/resources/prefab/block/block5.prefab @@ -1387,8 +1387,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 240 + "width": 242, + "height": 253 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1463,8 +1463,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -10.447, + 17.411, 0, 0, 0, diff --git a/assets/resources/prefab/block/block6.prefab b/assets/resources/prefab/block/block6.prefab index e183249..956f9fc 100644 --- a/assets/resources/prefab/block/block6.prefab +++ b/assets/resources/prefab/block/block6.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 360 + "width": 241, + "height": 371 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 27.926, + 58.281, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 57.067, + 20.641, 0, 0, 0, diff --git a/assets/resources/prefab/block/block7.prefab b/assets/resources/prefab/block/block7.prefab index bc58d54..ff88d77 100644 --- a/assets/resources/prefab/block/block7.prefab +++ b/assets/resources/prefab/block/block7.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 360, - "height": 240 + "width": 364, + "height": 252 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 57.892, + 35.509, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -4.353, + 74.867, 0, 0, 0, diff --git a/assets/resources/prefab/block/block8.prefab b/assets/resources/prefab/block/block8.prefab index 1df910f..478c8ce 100644 --- a/assets/resources/prefab/block/block8.prefab +++ b/assets/resources/prefab/block/block8.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 240, - "height": 360 + "width": 242, + "height": 371 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -32.9, + -59.631, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -63.743, + 16.45, 0, 0, 0, diff --git a/assets/resources/prefab/block/block9.prefab b/assets/resources/prefab/block/block9.prefab index 36b4d36..9c91f5c 100644 --- a/assets/resources/prefab/block/block9.prefab +++ b/assets/resources/prefab/block/block9.prefab @@ -1825,8 +1825,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 360, - "height": 240 + "width": 367, + "height": 250 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1837,8 +1837,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 56.151, + -27.858, 0, 0, 0, @@ -1901,8 +1901,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + -5.223, + -44.398, 0, 0, 0,