diff --git a/assets/Script/Map.ts b/assets/Script/Map.ts index eac8131..0aa92e1 100644 --- a/assets/Script/Map.ts +++ b/assets/Script/Map.ts @@ -1808,7 +1808,7 @@ export default class MapConroler extends cc.Component { } return jg; } - + //type为true 则为道具消除, false为正常通过门消除 checkColor(colorTemp, type, node) { let colorArray = []; let number = 1; @@ -1836,17 +1836,17 @@ export default class MapConroler extends cc.Component { } //是变色门关卡,并且消除的块是当前颜色最后一个,对变色门中该颜色做消除处理 3 1 2 4 5 6 + console.log("调用一次删除方法"); if (colorOver == true && colorArray.length > 0) { for (let j = 0; j < colorArray.length; j++) { + console.log("执行删除下去", j); colorArray[j].removeColor(colorTemp, type); } } else { if (type == true) { for (let k = 0; k < colorArray.length; k++) { - if (colorArray[k].color == colorTemp) { - if (colorArray[k].length > 0) { - colorArray[k].getComponent("Wall").changeColorWall(); - } + if (colorArray[k].length > 0) { + colorArray[k].getComponent("Wall").changeDeleteColor(colorTemp); } } } @@ -3885,7 +3885,7 @@ export default class MapConroler extends cc.Component { if (nomalArray.length > 1) { nomalArray = cc.fx.GameTool.shuffleArray(nomalArray); nomalArray[0].getComponent("Block").eliminate(true); - let time = 0; + let time = 100; if (nomalArray[0].getComponent("Block").type == 1 || nomalArray[0].getComponent("Block").type == 9) { time = 200; } @@ -3904,7 +3904,7 @@ export default class MapConroler extends cc.Component { else if (nomalArray.length == 1) { console.log("消除一个普通方块"); nomalArray[0].getComponent("Block").eliminate(true); - let time = 0; + let time = 100; if (nomalArray[0].getComponent("Block").type == 1 || nomalArray[0].getComponent("Block").type == 9) { time = 200; } diff --git a/assets/Script/Wall.ts b/assets/Script/Wall.ts index 397f205..9f9ccdd 100644 --- a/assets/Script/Wall.ts +++ b/assets/Script/Wall.ts @@ -130,6 +130,8 @@ export default class Wall extends cc.Component { leftTween: any; rightTween: any; colorArray: any; + colorStartArray: any; + colorLength: number = 0; // 颜色数组的长度 longAndShort: number[] = []; // 长短变化的门 order: boolean = true; // 顺序门 length: number = 0; // 门的长度 @@ -149,6 +151,8 @@ export default class Wall extends cc.Component { init(wall_Info, posX: number, posY: number, direction: any) { this.colorArray = []; + this.colorStartArray = []; + this.colorLength = 0; this.wall_Info = this.jsonDeepClone(wall_Info); // this.open = true; @@ -198,6 +202,8 @@ export default class Wall extends cc.Component { this.revolvingNode = this.node.parent.getChildByName("revolving").getChildByName(name2); if (this.wall_Info.colorArray) { this.colorArray = this.wall_Info.colorArray.split('').map(char => parseInt(char) + 1); + this.colorStartArray = this.wall_Info.colorArray.split('').map(char => parseInt(char) + 1); + this.colorLength = this.colorStartArray.length; MapConroler._instance.changeColor = true; MapConroler._instance.colorDoors.push(this); } @@ -542,13 +548,46 @@ export default class Wall extends cc.Component { //变色门变色具体执行方法 changeColor() { // console.log("变色门变色数组数量", this.colorArray, this.node.uuid); - if (this.colorArray.length > 1 && this.color == this.colorArray[0]) { + if (this.colorArray.length >= 1 && this.color == this.colorArray[0]) { let firstItem = this.colorArray.shift(); // 移除第一项 - this.colorArray.push(firstItem); // 将第一项添加到数组末尾 + console.log("移除颜色:", this.color); + // this.colorArray.push(firstItem); // 将第一项添加到数组末尾 + if (this.colorArray.length <= 2) { + for (let i = 0; i < this.colorStartArray.length; i++) { + this.colorArray.push(this.colorStartArray[i]); + console.log("将颜色放入数组:", this.colorStartArray[i]) + } + } } + console.log("变色门变色数组数量", this.colorArray, this.node.uuid); this.updateColor(); } + changeDeleteColor(color) { + for (let i = 0; i < this.teamDoors.length; i++) { + setTimeout(() => { + this.teamDoors[i].tempDeleteColor(color); + }, i * 10); + } + } + + tempDeleteColor(color) { + if (this.colorArray.length > 1) { + let index = this.colorArray.indexOf(color); + if (index !== -1) { + console.log("删除颜色:", color, this.colorArray); + this.colorArray.splice(index, 1); + if (this.colorArray.length <= 2) { + for (let i = 0; i < this.colorStartArray.length; i++) { + this.colorArray.push(this.colorStartArray[i]); + } + } + this.updateColor(); + } + } + + } + //更新变色门颜色 updateColor() { this.color = this.colorArray[0]; @@ -587,15 +626,33 @@ export default class Wall extends cc.Component { } } - //变色门删除颜色 + //变色门删除颜色, 第一个参数为颜色,第二个参数为是否立刻刷新颜色, 第三个参数为是否删除起始颜色 removeColor(color, type) { + console.log("整体删除颜色"); + if (this.colorStartArray.length > 1) { + let index = this.colorStartArray.indexOf(color); + if (index !== -1) { + this.colorStartArray.splice(index, 1); + } + } if (this.colorArray.length > 1) { let index = this.colorArray.indexOf(color); if (index !== -1) { + console.log("删除方法中,该墙体有该颜色") this.colorArray.splice(index, 1); - if (type) this.updateColor(); + if (this.colorArray.length <= 2) { + for (let i = 0; i < this.colorStartArray.length; i++) { + this.colorArray.push(this.colorStartArray[i]); + console.log("将颜色放入数组:", this.colorStartArray[i]) + } + } + if (type == true) this.updateColor(); + } + else { + console.log("删除方法中,该墙体没有该颜色"); } } + console.log(this.wall_Info.length, "删除颜色:", color, "删除后数组:", this.colorArray, "删除起始颜色:", this.colorStartArray); } //添加变色门遮罩 @@ -835,13 +892,11 @@ export default class Wall extends cc.Component { start = this.teamDoors[2]; over = this.teamDoors[0]; end = this.teamDoors[1]; - // debugger; } } } } // console.log("数组长度:", MapConroler._instance.teamDoors.length); - // debugger; start.runLongAndShort(true); if (over) over.runLongAndShort(false); diff --git a/assets/Script/module/Tool/GameTool.ts b/assets/Script/module/Tool/GameTool.ts index 83ed0cb..5c19c75 100644 --- a/assets/Script/module/Tool/GameTool.ts +++ b/assets/Script/module/Tool/GameTool.ts @@ -426,8 +426,8 @@ var GameTool = { //关卡上限 maxLevel() { let jg = false; - if (cc.fx.GameConfig.GM_INFO.level > 849) { - cc.fx.GameConfig.GM_INFO.level = 850; + if (cc.fx.GameConfig.GM_INFO.level > 889) { + cc.fx.GameConfig.GM_INFO.level = 890; jg = true; } return jg; diff --git a/assets/action_bundle/prefab/dailyQuests.prefab b/assets/action_bundle/prefab/dailyQuests.prefab index 03b6534..b844a45 100644 --- a/assets/action_bundle/prefab/dailyQuests.prefab +++ b/assets/action_bundle/prefab/dailyQuests.prefab @@ -3248,6 +3248,9 @@ }, { "__id__": 116 + }, + { + "__id__": 119 } ], "_active": true, @@ -4501,19 +4504,15 @@ "_parent": { "__id__": 83 }, - "_children": [ + "_children": [], + "_active": true, + "_components": [ { "__id__": 117 } ], - "_active": true, - "_components": [ - { - "__id__": 120 - } - ], "_prefab": { - "__id__": 121 + "__id__": 118 }, "_opacity": 255, "_color": { @@ -4538,14 +4537,14 @@ "ctor": "Float64Array", "array": [ -301.592, - -41.649, + -39.141, 0, 0, 0, 0, 1, - 1, - 1, + 1.1, + 1.1, 1 ] }, @@ -4562,115 +4561,6 @@ "groupIndex": 0, "_id": "" }, - { - "__type__": "cc.Node", - "_name": "15", - "_objFlags": 0, - "_parent": { - "__id__": 116 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 118 - } - ], - "_prefab": { - "__id__": 119 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 141, - "height": 37 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 44.314, - -52.022, - 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__": 117 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "11ecd330-0759-43eb-88a0-b0accc4ae798" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "958rvoQ4dBFou5UGcfygmh", - "sync": false - }, { "__type__": "cc.Sprite", "_name": "", @@ -4716,6 +4606,115 @@ "fileId": "7aVNqDPdNMKrJcLUlR/L/G", "sync": false }, + { + "__type__": "cc.Node", + "_name": "15", + "_objFlags": 0, + "_parent": { + "__id__": 83 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 120 + } + ], + "_prefab": { + "__id__": 121 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 141, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -257.278, + -93.671, + 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__": 119 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "11ecd330-0759-43eb-88a0-b0accc4ae798" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "08+X9Q0W9C9Jx7DSz+oUa/", + "sync": false + }, { "__type__": "cc.Sprite", "_name": "", @@ -4805,6 +4804,12 @@ { "__id__": 160 }, + { + "__id__": 163 + }, + { + "__id__": 166 + }, { "__id__": 169 } @@ -6169,22 +6174,15 @@ "_parent": { "__id__": 124 }, - "_children": [ - { - "__id__": 161 - }, - { - "__id__": 164 - } - ], + "_children": [], "_active": true, "_components": [ { - "__id__": 167 + "__id__": 161 } ], "_prefab": { - "__id__": 168 + "__id__": 162 }, "_opacity": 255, "_color": { @@ -6215,8 +6213,8 @@ 0, 0, 1, - 1, - 1, + 1.1, + 1.1, 1 ] }, @@ -6233,224 +6231,6 @@ "groupIndex": 0, "_id": "" }, - { - "__type__": "cc.Node", - "_name": "x", - "_objFlags": 0, - "_parent": { - "__id__": 160 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 162 - } - ], - "_prefab": { - "__id__": 163 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 25, - "height": 25 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -14.028, - -48.432, - 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__": 161 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "b968f3b0-f818-4f19-a94c-2ee1a2664cec" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "226uVogGVGEZ5DrIQA+txN", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "cost_1", - "_objFlags": 0, - "_parent": { - "__id__": 160 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 165 - } - ], - "_prefab": { - "__id__": 166 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 23, - "height": 35 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 16.701, - -47.43, - 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__": 164 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "ecfb496d-f224-4878-933c-520424977e06" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "988c5aed-4fe1-4a90-b692-60edff8021a5" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "bb4cMTtH5Pya4ltwzcvBCq", - "sync": false - }, { "__type__": "cc.Sprite", "_name": "", @@ -6496,6 +6276,224 @@ "fileId": "deJvCOysFPNIJMRnJZdF76", "sync": false }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 124 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 164 + } + ], + "_prefab": { + "__id__": 165 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -312.073, + -86.457, + 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__": 163 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b968f3b0-f818-4f19-a94c-2ee1a2664cec" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aatlp9d51Lvoopp2DVfjPr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 124 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 167 + } + ], + "_prefab": { + "__id__": 168 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 23, + "height": 35 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -281.344, + -85.455, + 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__": 166 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ecfb496d-f224-4878-933c-520424977e06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "988c5aed-4fe1-4a90-b692-60edff8021a5" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6aiDjTdA5Dl4h28PmsgHUp", + "sync": false + }, { "__type__": "cc.Node", "_name": "dailyQuests1", @@ -7139,6 +7137,12 @@ }, { "__id__": 219 + }, + { + "__id__": 222 + }, + { + "__id__": 225 } ], "_active": true, @@ -8392,22 +8396,15 @@ "_parent": { "__id__": 186 }, - "_children": [ - { - "__id__": 220 - }, - { - "__id__": 223 - } - ], + "_children": [], "_active": true, "_components": [ { - "__id__": 226 + "__id__": 220 } ], "_prefab": { - "__id__": 227 + "__id__": 221 }, "_opacity": 255, "_color": { @@ -8438,8 +8435,8 @@ 0, 0, 1, - 1, - 1, + 1.1, + 1.1, 1 ] }, @@ -8456,224 +8453,6 @@ "groupIndex": 0, "_id": "" }, - { - "__type__": "cc.Node", - "_name": "x", - "_objFlags": 0, - "_parent": { - "__id__": 219 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 221 - } - ], - "_prefab": { - "__id__": 222 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 25, - "height": 25 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -14.028, - -48.432, - 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__": 220 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "b968f3b0-f818-4f19-a94c-2ee1a2664cec" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1e62IGIkpCnZZZxVxErbvr", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "cost_1", - "_objFlags": 0, - "_parent": { - "__id__": 219 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 224 - } - ], - "_prefab": { - "__id__": 225 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 23, - "height": 35 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 16.701, - -47.43, - 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__": 223 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "ecfb496d-f224-4878-933c-520424977e06" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "988c5aed-4fe1-4a90-b692-60edff8021a5" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d1oPwpjQhKMp4O2uHZJwLp", - "sync": false - }, { "__type__": "cc.Sprite", "_name": "", @@ -8719,6 +8498,224 @@ "fileId": "62Xg8CgUxM0ruccPA4avXT", "sync": false }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 186 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 223 + } + ], + "_prefab": { + "__id__": 224 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -309.083, + -86.457, + 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__": 222 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b968f3b0-f818-4f19-a94c-2ee1a2664cec" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b9SEZbC31N94+0CUUR/uqY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 186 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 226 + } + ], + "_prefab": { + "__id__": 227 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 23, + "height": 35 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -278.354, + -85.455, + 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__": 225 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ecfb496d-f224-4878-933c-520424977e06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "988c5aed-4fe1-4a90-b692-60edff8021a5" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9floTBxzNJnpem6ey4YUcf", + "sync": false + }, { "__type__": "cc.Sprite", "_name": "", diff --git a/assets/career/prefab/rankGame.prefab b/assets/career/prefab/rankGame.prefab index d9e3f38..cb512f5 100644 --- a/assets/career/prefab/rankGame.prefab +++ b/assets/career/prefab/rankGame.prefab @@ -6698,7 +6698,7 @@ "__id__": 403 } ], - "_active": true, + "_active": false, "_components": [ { "__id__": 419 diff --git a/assets/custom/Json/level871.json b/assets/custom/Json/level871.json new file mode 100644 index 0000000..3a1aece --- /dev/null +++ b/assets/custom/Json/level871.json @@ -0,0 +1,335 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "871", + "map": [ + 8, + 8 + ], + "time": 120, + "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": 2, + "color": 10, + "type": 16, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "questionTime": 2, + "id": 240 + }, + { + "block": 2, + "color": 4, + "type": 16, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "questionTime": 6, + "id": 250 + }, + { + "block": 6, + "color": 5, + "type": 16, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "questionTime": 9, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 5, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 5, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "floor": 2, + "floorTime": 8, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 14, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 14, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 14, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 5, + "type": 14, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 5, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 17, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "boomTime": 4, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 872, + "num": 0, + "color": 1, + "special": 3, + "length": 1, + "freeze": 3 + }, + { + "id": 873, + "num": 2, + "color": 5, + "special": 0, + "length": 3, + "colorArray": "49" + }, + { + "id": 874, + "num": 3, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "49" + }, + { + "id": 875, + "num": 4, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "49" + }, + { + "id": 876, + "num": 5, + "color": 3, + "special": 6, + "length": 1, + "lockTime": 4 + }, + { + "id": 877, + "num": 9, + "color": 4, + "special": 0, + "length": 2, + "colorArray": "37377" + }, + { + "id": 878, + "num": 11, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "37377" + }, + { + "id": 879, + "num": 15, + "color": 9, + "special": 0, + "length": 2, + "colorArray": "86" + }, + { + "id": 880, + "num": 17, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "86" + }, + { + "id": 881, + "num": 21, + "color": 8, + "special": 1, + "length": 2 + }, + { + "id": 882, + "num": 22, + "color": 8, + "special": 1, + "length": 0 + }, + { + "id": 883, + "num": 16, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 884, + "num": 8, + "color": 6, + "special": 1, + "length": 2 + }, + { + "id": 885, + "num": 10, + "color": 6, + "special": 1, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level871.json.meta b/assets/custom/Json/level871.json.meta new file mode 100644 index 0000000..16a45e8 --- /dev/null +++ b/assets/custom/Json/level871.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "02598485-7056-4a2f-9e2c-dfc815d4fdeb", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level872.json b/assets/custom/Json/level872.json new file mode 100644 index 0000000..9415c2a --- /dev/null +++ b/assets/custom/Json/level872.json @@ -0,0 +1,539 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "872", + "map": [ + 10, + 12 + ], + "time": 120, + "gap": [ + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "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": 8, + "y": 2, + "z": 0 + }, + { + "x": 8, + "y": 3, + "z": 0 + }, + { + "x": 8, + "y": 4, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 7, + "type": 16, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "questionTime": 6, + "id": 210 + }, + { + "block": 1, + "color": 4, + "type": 16, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "questionTime": 7, + "id": 220 + }, + { + "block": 1, + "color": 3, + "type": 16, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "questionTime": 8, + "id": 230 + }, + { + "block": 1, + "color": 1, + "type": 16, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "questionTime": 10, + "id": 240 + }, + { + "block": 1, + "color": 10, + "type": 16, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "questionTime": 13, + "id": 250 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "lockTime": 3, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 17, + "position": { + "x": 360, + "y": 480, + "z": 0 + }, + "boomTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 17, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "boomTime": 3, + "id": 360 + }, + { + "block": 10, + "color": 2, + "type": 8, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 6, + "color": 8, + "type": 8, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 17, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "boomTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 873, + "num": 6, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 874, + "num": 7, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 875, + "num": 8, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 876, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 877, + "num": 1, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 878, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 879, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 880, + "num": 31, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 881, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 882, + "num": 47, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 883, + "num": 39, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 884, + "num": 40, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 885, + "num": 41, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 886, + "num": 38, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 887, + "num": 30, + "color": 1, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 888, + "num": 32, + "color": 1, + "special": 3, + "length": 0, + "freeze": 15 + }, + { + "id": 889, + "num": 14, + "color": 7, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 890, + "num": 16, + "color": 7, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level872.json.meta b/assets/custom/Json/level872.json.meta new file mode 100644 index 0000000..d9ec73e --- /dev/null +++ b/assets/custom/Json/level872.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0142a028-49d6-452a-984a-3954b03e736b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level873.json b/assets/custom/Json/level873.json new file mode 100644 index 0000000..e8c7475 --- /dev/null +++ b/assets/custom/Json/level873.json @@ -0,0 +1,362 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "873", + "map": [ + 10, + 8 + ], + "time": 125, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "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": 8, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 4, + "z": 0 + }, + { + "x": 8, + "y": 3, + "z": 0 + }, + { + "x": 8, + "y": 2, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 7, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 17, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "boomTime": 1, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 17, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "boomTime": 2, + "id": 310 + }, + { + "block": 1, + "color": 10, + "type": 17, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "boomTime": 3, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 17, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "boomTime": 4, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 17, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "boomTime": 5, + "id": 340 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "freezeTime": 10, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 874, + "num": 0, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 875, + "num": 9, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 876, + "num": 11, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 877, + "num": 13, + "color": 2, + "special": 3, + "length": 3, + "freeze": 8 + }, + { + "id": 878, + "num": 15, + "color": 2, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 879, + "num": 17, + "color": 2, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 880, + "num": 19, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 881, + "num": 26, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 882, + "num": 27, + "color": 3, + "special": 3, + "length": 1, + "freeze": 12 + }, + { + "id": 883, + "num": 16, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 884, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 885, + "num": 10, + "color": 6, + "special": 4, + "length": 3 + }, + { + "id": 886, + "num": 12, + "color": 6, + "special": 4, + "length": 0 + }, + { + "id": 887, + "num": 14, + "color": 6, + "special": 4, + "length": 0 + }, + { + "id": 888, + "num": 1, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 889, + "num": 8, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level873.json.meta b/assets/custom/Json/level873.json.meta new file mode 100644 index 0000000..8ae4989 --- /dev/null +++ b/assets/custom/Json/level873.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "194e1dd4-015b-4f0c-92fc-457167b2d9a8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level874.json b/assets/custom/Json/level874.json new file mode 100644 index 0000000..5de2273 --- /dev/null +++ b/assets/custom/Json/level874.json @@ -0,0 +1,311 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "874", + "map": [ + 8, + 8 + ], + "time": 120, + "gap": [ + { + "x": 3, + "y": 6, + "z": 0 + }, + { + "x": 4, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 16, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "questionTime": 7, + "id": 210 + }, + { + "block": 0, + "color": 9, + "type": 16, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "questionTime": 11, + "id": 220 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 19, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 7, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "stacking": 5, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 1, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "stacking": 7, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 1, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "stacking": 8, + "id": 330 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "stacking": 6, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 1, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "stacking": 10, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 1, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "stacking": 9, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 875, + "num": 0, + "color": 7, + "special": 0, + "length": 2, + "colorArray": "61" + }, + { + "id": 876, + "num": 1, + "color": 7, + "special": 0, + "length": 0, + "colorArray": "61" + }, + { + "id": 877, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 878, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 879, + "num": 4, + "color": 4, + "special": 0, + "length": 2, + "colorArray": "32" + }, + { + "id": 880, + "num": 5, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "32" + }, + { + "id": 881, + "num": 24, + "color": 1, + "special": 0, + "length": 2, + "colorArray": "07" + }, + { + "id": 882, + "num": 25, + "color": 1, + "special": 0, + "length": 0, + "colorArray": "07" + }, + { + "id": 883, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 884, + "num": 23, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 885, + "num": 20, + "color": 5, + "special": 0, + "length": 2, + "colorArray": "455" + }, + { + "id": 886, + "num": 21, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "455" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level874.json.meta b/assets/custom/Json/level874.json.meta new file mode 100644 index 0000000..22f77c6 --- /dev/null +++ b/assets/custom/Json/level874.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5c8aa633-98dd-4627-9068-2567e16a37f8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level875.json b/assets/custom/Json/level875.json new file mode 100644 index 0000000..e4757f8 --- /dev/null +++ b/assets/custom/Json/level875.json @@ -0,0 +1,415 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "875", + "map": [ + 9, + 9 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 14, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "floor": 2, + "floorTime": 6, + "id": 350 + }, + { + "block": 17, + "color": 2, + "type": 14, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 20, + "color": 4, + "type": 14, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 6, + "type": 14, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 9, + "type": 16, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "questionTime": 13, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 1, + "color": 1, + "type": 7, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 876, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 877, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 878, + "num": 2, + "color": 1, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 879, + "num": 3, + "color": 1, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 880, + "num": 8, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 881, + "num": 14, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 882, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 883, + "num": 18, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 884, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 885, + "num": 25, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 886, + "num": 26, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 887, + "num": 22, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 888, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 889, + "num": 15, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 890, + "num": 17, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 891, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 892, + "num": 6, + "color": 7, + "special": 6, + "length": 1, + "lockTime": 4 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level875.json.meta b/assets/custom/Json/level875.json.meta new file mode 100644 index 0000000..931a7fa --- /dev/null +++ b/assets/custom/Json/level875.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "61b8774b-c456-4518-b932-b06ee57169dc", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level876.json b/assets/custom/Json/level876.json new file mode 100644 index 0000000..c31d3a2 --- /dev/null +++ b/assets/custom/Json/level876.json @@ -0,0 +1,408 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "876", + "map": [ + 9, + 9 + ], + "time": 170, + "gap": [ + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 6, + "z": 0 + }, + { + "x": 3, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 10, + "type": 7, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 16, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "questionTime": 11, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 16, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "questionTime": 12, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 16, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "questionTime": 13, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 16, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "questionTime": 14, + "id": 350 + }, + { + "block": 2, + "color": 10, + "type": 16, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "questionTime": 15, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 17, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "boomTime": 2, + "id": 370 + }, + { + "block": 2, + "color": 3, + "type": 17, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "boomTime": 4, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 877, + "num": 1, + "color": 6, + "special": 3, + "length": 2, + "freeze": 3 + }, + { + "id": 878, + "num": 2, + "color": 6, + "special": 3, + "length": 0, + "freeze": 3 + }, + { + "id": 879, + "num": 4, + "color": 1, + "special": 3, + "length": 2, + "freeze": 2 + }, + { + "id": 880, + "num": 5, + "color": 1, + "special": 3, + "length": 0, + "freeze": 2 + }, + { + "id": 881, + "num": 7, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 882, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 883, + "num": 18, + "color": 8, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 884, + "num": 20, + "color": 8, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 885, + "num": 28, + "color": 4, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 886, + "num": 29, + "color": 4, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 887, + "num": 25, + "color": 10, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 888, + "num": 26, + "color": 10, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 889, + "num": 21, + "color": 7, + "special": 3, + "length": 1, + "freeze": 7 + }, + { + "id": 890, + "num": 13, + "color": 9, + "special": 3, + "length": 3, + "freeze": 6 + }, + { + "id": 891, + "num": 17, + "color": 9, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 892, + "num": 19, + "color": 9, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 893, + "num": 8, + "color": 2, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 894, + "num": 10, + "color": 2, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 895, + "num": 6, + "color": 5, + "special": 3, + "length": 1, + "freeze": 4 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level876.json.meta b/assets/custom/Json/level876.json.meta new file mode 100644 index 0000000..78abe5a --- /dev/null +++ b/assets/custom/Json/level876.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9eac730e-c70f-4b1c-949a-f979d49535dd", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level877.json b/assets/custom/Json/level877.json new file mode 100644 index 0000000..92eb0d4 --- /dev/null +++ b/assets/custom/Json/level877.json @@ -0,0 +1,347 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "877", + "map": [ + 8, + 8 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 16, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "questionTime": 4, + "id": 260 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "stacking": 2, + "floor": 1, + "floorTime": 6, + "id": 270 + }, + { + "block": 1, + "color": 8, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 10, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 1, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "stacking": 9, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 1, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "stacking": 5, + "id": 300 + }, + { + "block": 4, + "color": 4, + "type": 1, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "stacking": 1, + "id": 310 + }, + { + "block": 4, + "color": 3, + "type": 1, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "stacking": 6, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 17, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "boomTime": 1, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 17, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "boomTime": 3, + "id": 340 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "lockTime": 10, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "lockTime": 10, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "lockTime": 13, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "lockTime": 13, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 878, + "num": 4, + "color": 8, + "special": 0, + "length": 2, + "colorArray": "" + }, + { + "id": 879, + "num": 5, + "color": 8, + "special": 0, + "length": 0, + "colorArray": "" + }, + { + "id": 880, + "num": 11, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 881, + "num": 13, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 882, + "num": 22, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 883, + "num": 23, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 884, + "num": 12, + "color": 6, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 885, + "num": 10, + "color": 1, + "special": 2, + "length": 1, + "lock": false + }, + { + "id": 886, + "num": 1, + "color": 3, + "special": 0, + "length": 3, + "colorArray": "21" + }, + { + "id": 887, + "num": 2, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "21" + }, + { + "id": 888, + "num": 3, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "21" + }, + { + "id": 889, + "num": 19, + "color": 4, + "special": 0, + "length": 3, + "colorArray": "36" + }, + { + "id": 890, + "num": 20, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "36" + }, + { + "id": 891, + "num": 21, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "36" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level877.json.meta b/assets/custom/Json/level877.json.meta new file mode 100644 index 0000000..a8ad605 --- /dev/null +++ b/assets/custom/Json/level877.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ca589a60-90bd-4bba-a0a1-b36f93cd32e7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level878.json b/assets/custom/Json/level878.json new file mode 100644 index 0000000..76de480 --- /dev/null +++ b/assets/custom/Json/level878.json @@ -0,0 +1,439 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "878", + "map": [ + 9, + 10 + ], + "time": 110, + "gap": [ + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 120, + "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": 23, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 6, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 7, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 6, + "type": 4, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "freezeTime": 6, + "id": 420 + }, + { + "block": 2, + "color": 2, + "type": 16, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "questionTime": 4, + "id": 430 + }, + { + "block": 2, + "color": 7, + "type": 16, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "questionTime": 3, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 879, + "num": 0, + "color": 3, + "special": 3, + "length": 1, + "freeze": 11 + }, + { + "id": 880, + "num": 1, + "color": 7, + "special": 0, + "length": 3, + "longAndShort": 13, + "order": false + }, + { + "id": 881, + "num": 2, + "color": 7, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + }, + { + "id": 882, + "num": 3, + "color": 7, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + }, + { + "id": 883, + "num": 11, + "color": 8, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 884, + "num": 13, + "color": 8, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 885, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 886, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 887, + "num": 31, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 888, + "num": 26, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 889, + "num": 27, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 890, + "num": 28, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 891, + "num": 20, + "color": 10, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 892, + "num": 22, + "color": 10, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 893, + "num": 14, + "color": 2, + "special": 0, + "length": 2, + "longAndShort": 21, + "order": true + }, + { + "id": 894, + "num": 16, + "color": 2, + "special": 0, + "length": 0, + "longAndShort": 21, + "order": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level878.json.meta b/assets/custom/Json/level878.json.meta new file mode 100644 index 0000000..3456c1a --- /dev/null +++ b/assets/custom/Json/level878.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4576f26b-db5c-4b9a-ba14-18365457f23b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level879.json b/assets/custom/Json/level879.json new file mode 100644 index 0000000..b07b19f --- /dev/null +++ b/assets/custom/Json/level879.json @@ -0,0 +1,382 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "879", + "map": [ + 9, + 8 + ], + "time": 135, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 13, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 9, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 17, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "boomTime": 1, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 17, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "boomTime": 2, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 17, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "boomTime": 3, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 16, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "questionTime": 10, + "id": 400 + }, + { + "block": 0, + "color": 1, + "type": 16, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "questionTime": 14, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 880, + "num": 1, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 881, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 882, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 883, + "num": 7, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 884, + "num": 6, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 885, + "num": 10, + "color": 7, + "special": 3, + "length": 3, + "freeze": 12 + }, + { + "id": 886, + "num": 12, + "color": 7, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 887, + "num": 14, + "color": 7, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 888, + "num": 18, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 889, + "num": 21, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 890, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 891, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 892, + "num": 19, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 893, + "num": 11, + "color": 5, + "special": 3, + "length": 3, + "freeze": 8 + }, + { + "id": 894, + "num": 13, + "color": 5, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 895, + "num": 15, + "color": 5, + "special": 3, + "length": 0, + "freeze": 8 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level879.json.meta b/assets/custom/Json/level879.json.meta new file mode 100644 index 0000000..c90464b --- /dev/null +++ b/assets/custom/Json/level879.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "325513a3-1823-44a0-87d2-b31cd91c0b2b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level880.json b/assets/custom/Json/level880.json new file mode 100644 index 0000000..3fd3a3a --- /dev/null +++ b/assets/custom/Json/level880.json @@ -0,0 +1,362 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "880", + "map": [ + 9, + 8 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 9, + "type": 16, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "questionTime": 9, + "id": 220 + }, + { + "block": 0, + "color": 2, + "type": 16, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "questionTime": 15, + "id": 230 + }, + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "stacking": 3, + "id": 240 + }, + { + "block": 1, + "color": 9, + "type": 1, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "stacking": 3, + "id": 250 + }, + { + "block": 1, + "color": 2, + "type": 1, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "stacking": 7, + "id": 260 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "stacking": 7, + "id": 270 + }, + { + "block": 4, + "color": 5, + "type": 1, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "stacking": 4, + "id": 280 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 21, + "color": 8, + "type": 2, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 6, + "type": 2, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "lockTime": 16, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "lockTime": 16, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 17, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "boomTime": 2, + "id": 360 + }, + { + "block": 2, + "color": 7, + "type": 17, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "boomTime": 4, + "id": 370 + }, + { + "block": 0, + "color": 10, + "type": 3, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "lockTime": 5, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 881, + "num": 0, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 882, + "num": 1, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 883, + "num": 4, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 884, + "num": 9, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 885, + "num": 11, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 886, + "num": 15, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 887, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 888, + "num": 25, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 889, + "num": 21, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 890, + "num": 22, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 891, + "num": 16, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 892, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 893, + "num": 14, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 894, + "num": 10, + "color": 5, + "special": 3, + "length": 1, + "freeze": 14 + }, + { + "id": 895, + "num": 5, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 896, + "num": 8, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level880.json.meta b/assets/custom/Json/level880.json.meta new file mode 100644 index 0000000..4becfee --- /dev/null +++ b/assets/custom/Json/level880.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5e06b124-1652-4322-bdf1-846854fe11d3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level881.json b/assets/custom/Json/level881.json new file mode 100644 index 0000000..cacb3e2 --- /dev/null +++ b/assets/custom/Json/level881.json @@ -0,0 +1,424 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "881", + "map": [ + 9, + 10 + ], + "time": 120, + "gap": [ + { + "x": 7, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 4, + "z": 0 + }, + { + "x": 6, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 4, + "color": 10, + "type": 16, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "questionTime": 9, + "id": 310 + }, + { + "block": 4, + "color": 1, + "type": 16, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "questionTime": 9, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 16, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "questionTime": 16, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 16, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "questionTime": 18, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 1, + "color": 5, + "type": 7, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 2, + "type": 7, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 7, + "type": 17, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "boomTime": 1, + "id": 410 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 882, + "num": 0, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 883, + "num": 7, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 884, + "num": 15, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 885, + "num": 17, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 886, + "num": 23, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 887, + "num": 32, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 888, + "num": 33, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 889, + "num": 14, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 890, + "num": 16, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 891, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 892, + "num": 1, + "color": 2, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 893, + "num": 2, + "color": 2, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 894, + "num": 5, + "color": 5, + "special": 3, + "length": 2, + "freeze": 13 + }, + { + "id": 895, + "num": 6, + "color": 5, + "special": 3, + "length": 0, + "freeze": 13 + }, + { + "id": 896, + "num": 30, + "color": 3, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 897, + "num": 31, + "color": 3, + "special": 3, + "length": 0, + "freeze": 7 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level881.json.meta b/assets/custom/Json/level881.json.meta new file mode 100644 index 0000000..4ecce3d --- /dev/null +++ b/assets/custom/Json/level881.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e88e8f88-845d-4a66-bf8b-e60c3bbc5b54", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level882.json b/assets/custom/Json/level882.json new file mode 100644 index 0000000..676a48f --- /dev/null +++ b/assets/custom/Json/level882.json @@ -0,0 +1,314 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "882", + "map": [ + 8, + 8 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 7, + "type": 16, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "questionTime": 6, + "id": 230 + }, + { + "block": 21, + "color": 4, + "type": 16, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "questionTime": 9, + "id": 240 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 2, + "type": 1, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "stacking": 10, + "id": 350 + }, + { + "block": 1, + "color": 6, + "type": 1, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "stacking": 5, + "id": 360 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "stacking": 8, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "stacking": 9, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 883, + "num": 2, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 884, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 885, + "num": 5, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 886, + "num": 11, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 887, + "num": 13, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 888, + "num": 23, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 889, + "num": 20, + "color": 1, + "special": 4, + "length": 2 + }, + { + "id": 890, + "num": 21, + "color": 1, + "special": 4, + "length": 0 + }, + { + "id": 891, + "num": 14, + "color": 2, + "special": 0, + "length": 2, + "colorArray": "16" + }, + { + "id": 892, + "num": 16, + "color": 2, + "special": 0, + "length": 0, + "colorArray": "16" + }, + { + "id": 893, + "num": 6, + "color": 9, + "special": 0, + "length": 2, + "colorArray": "858" + }, + { + "id": 894, + "num": 8, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "858" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level882.json.meta b/assets/custom/Json/level882.json.meta new file mode 100644 index 0000000..7d1ee0a --- /dev/null +++ b/assets/custom/Json/level882.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c31a0a33-25f7-4c0d-9619-c9863d075394", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level883.json b/assets/custom/Json/level883.json new file mode 100644 index 0000000..7a68765 --- /dev/null +++ b/assets/custom/Json/level883.json @@ -0,0 +1,485 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "883", + "map": [ + 10, + 11 + ], + "time": 160, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 8, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 3, + "z": 0 + }, + { + "x": 8, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 6, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 17, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "boomTime": 1, + "floor": 1, + "floorTime": 6, + "floorMove": false, + "id": 310 + }, + { + "block": 2, + "color": 7, + "type": 6, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "boomTime": 20, + "floor": 1, + "floorTime": 6, + "floorMove": false, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 17, + "position": { + "x": -360, + "y": -300, + "z": 0 + }, + "boomTime": 3, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 17, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "boomTime": 2, + "id": 360 + }, + { + "block": 1, + "color": 2, + "type": 17, + "position": { + "x": -240, + "y": 420, + "z": 0 + }, + "boomTime": 1, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 17, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "boomTime": 1, + "floor": 2, + "floorTime": 9, + "floorMove": false, + "id": 380 + }, + { + "block": 1, + "color": 7, + "type": 17, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "boomTime": 1, + "floor": 2, + "floorTime": 9, + "floorMove": false, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 884, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 885, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 886, + "num": 3, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 887, + "num": 8, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 888, + "num": 16, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 889, + "num": 18, + "color": 5, + "special": 0, + "length": 3, + "longAndShort": 13, + "order": false + }, + { + "id": 890, + "num": 20, + "color": 5, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + }, + { + "id": 891, + "num": 22, + "color": 5, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + }, + { + "id": 892, + "num": 32, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 893, + "num": 37, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 894, + "num": 39, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 895, + "num": 40, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 896, + "num": 38, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 897, + "num": 21, + "color": 6, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 898, + "num": 23, + "color": 6, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 899, + "num": 4, + "color": 1, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 900, + "num": 9, + "color": 1, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level883.json.meta b/assets/custom/Json/level883.json.meta new file mode 100644 index 0000000..39c865f --- /dev/null +++ b/assets/custom/Json/level883.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "bf1efc64-53e9-404b-a74d-52b92833e591", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level884.json b/assets/custom/Json/level884.json new file mode 100644 index 0000000..cb59c7a --- /dev/null +++ b/assets/custom/Json/level884.json @@ -0,0 +1,408 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "883", + "map": [ + 9, + 8 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 3, + "color": 5, + "type": 16, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "questionTime": 11, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 16, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "questionTime": 13, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 16, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "questionTime": 15, + "id": 370 + }, + { + "block": 1, + "color": 6, + "type": 7, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 884, + "num": 0, + "color": 4, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 885, + "num": 1, + "color": 4, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 886, + "num": 3, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 887, + "num": 11, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 888, + "num": 13, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 889, + "num": 17, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 890, + "num": 19, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 891, + "num": 29, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 892, + "num": 26, + "color": 6, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 893, + "num": 27, + "color": 6, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 894, + "num": 18, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 895, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 896, + "num": 12, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 897, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 898, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 899, + "num": 4, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 900, + "num": 10, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level884.json.meta b/assets/custom/Json/level884.json.meta new file mode 100644 index 0000000..6811292 --- /dev/null +++ b/assets/custom/Json/level884.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "38610e85-707c-4451-a24a-f5458f34ebd6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level885.json b/assets/custom/Json/level885.json new file mode 100644 index 0000000..94a0ac2 --- /dev/null +++ b/assets/custom/Json/level885.json @@ -0,0 +1,351 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "885", + "map": [ + 9, + 8 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 9, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 13, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "stacking": 9, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "stacking": 8, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "lockTime": 10, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "lockTime": 10, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 17, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "boomTime": 2, + "id": 350 + }, + { + "block": 2, + "color": 8, + "type": 17, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "boomTime": 4, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 16, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "questionTime": 9, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 16, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "questionTime": 11, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "freezeTime": 12, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 886, + "num": 1, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 887, + "num": 2, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 888, + "num": 4, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 889, + "num": 7, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 890, + "num": 13, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 891, + "num": 19, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 892, + "num": 24, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 893, + "num": 21, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 894, + "num": 22, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 895, + "num": 14, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 896, + "num": 16, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 897, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 898, + "num": 6, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 899, + "num": 8, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 900, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level885.json.meta b/assets/custom/Json/level885.json.meta new file mode 100644 index 0000000..66fef15 --- /dev/null +++ b/assets/custom/Json/level885.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0b159631-e376-4c8b-839c-373291cce11d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level886.json b/assets/custom/Json/level886.json new file mode 100644 index 0000000..b927ead --- /dev/null +++ b/assets/custom/Json/level886.json @@ -0,0 +1,536 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "886", + "map": [ + 10, + 12 + ], + "time": 140, + "gap": [ + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 2, + "y": 6, + "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": 6, + "y": 3, + "z": 0 + }, + { + "x": 5, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 6, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "floorMove": false, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 16, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "questionTime": 6, + "floor": 2, + "floorTime": 7, + "floorMove": false, + "id": 380 + }, + { + "block": 3, + "color": 8, + "type": 4, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "freezeTime": 8, + "floor": 2, + "floorTime": 7, + "floorMove": false, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 887, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 888, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 889, + "num": 2, + "color": 10, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": false + }, + { + "id": 890, + "num": 3, + "color": 10, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": false + }, + { + "id": 891, + "num": 33, + "color": 7, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 892, + "num": 34, + "color": 7, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 893, + "num": 42, + "color": 2, + "special": 0, + "length": 3, + "longAndShort": 13, + "order": true + }, + { + "id": 894, + "num": 43, + "color": 2, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": true + }, + { + "id": 895, + "num": 44, + "color": 2, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": true + }, + { + "id": 896, + "num": 39, + "color": 3, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 897, + "num": 40, + "color": 3, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 898, + "num": 7, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 899, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 900, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 901, + "num": 26, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 902, + "num": 41, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 903, + "num": 35, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 904, + "num": 37, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 905, + "num": 18, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 906, + "num": 20, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level886.json.meta b/assets/custom/Json/level886.json.meta new file mode 100644 index 0000000..0532736 --- /dev/null +++ b/assets/custom/Json/level886.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "80e14c10-452c-4b5f-8fef-afd452071c41", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level887.json b/assets/custom/Json/level887.json new file mode 100644 index 0000000..b7ec4fa --- /dev/null +++ b/assets/custom/Json/level887.json @@ -0,0 +1,414 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 6, + "color": "4" + }, + { + "x": 4, + "y": 5, + "color": "4" + } + ], + "id": "887", + "map": [ + 9, + 9 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 16, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "questionTime": 5, + "id": 370 + }, + { + "block": 4, + "color": 5, + "type": 16, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "questionTime": 10, + "id": 380 + }, + { + "block": 1, + "color": 5, + "type": 16, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "questionTime": 12, + "id": 390 + }, + { + "block": 1, + "color": 8, + "type": 16, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "questionTime": 15, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 16, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "questionTime": 14, + "id": 410 + }, + { + "block": 1, + "color": 3, + "type": 5, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 2, + "type": 5, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 888, + "num": 0, + "color": 3, + "special": 1, + "length": 1 + }, + { + "id": 889, + "num": 8, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 890, + "num": 10, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 891, + "num": 15, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 892, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 893, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 894, + "num": 11, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 895, + "num": 27, + "color": 2, + "special": 1, + "length": 1 + }, + { + "id": 896, + "num": 2, + "color": 6, + "special": 0, + "length": 2, + "colorArray": "565" + }, + { + "id": 897, + "num": 3, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "565" + }, + { + "id": 898, + "num": 5, + "color": 2, + "special": 0, + "length": 2, + "colorArray": "177" + }, + { + "id": 899, + "num": 6, + "color": 2, + "special": 0, + "length": 0, + "colorArray": "177" + }, + { + "id": 900, + "num": 24, + "color": 3, + "special": 0, + "length": 2, + "colorArray": "20" + }, + { + "id": 901, + "num": 25, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "20" + }, + { + "id": 902, + "num": 14, + "color": 4, + "special": 3, + "length": 1, + "freeze": 14 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level887.json.meta b/assets/custom/Json/level887.json.meta new file mode 100644 index 0000000..fddb1fe --- /dev/null +++ b/assets/custom/Json/level887.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5d268e44-6144-4a3f-aa19-6dff0b818439", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level888.json b/assets/custom/Json/level888.json new file mode 100644 index 0000000..850aa32 --- /dev/null +++ b/assets/custom/Json/level888.json @@ -0,0 +1,344 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "888", + "map": [ + 8, + 8 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 16, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "questionTime": 7, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 16, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "questionTime": 9, + "id": 330 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 16, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "questionTime": 13, + "id": 350 + }, + { + "block": 2, + "color": 10, + "type": 17, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "boomTime": 1, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 17, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "boomTime": 2, + "id": 370 + }, + { + "block": 1, + "color": 1, + "type": 17, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "boomTime": 3, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 889, + "num": 2, + "color": 9, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 890, + "num": 3, + "color": 9, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 891, + "num": 20, + "color": 8, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 892, + "num": 21, + "color": 8, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 893, + "num": 7, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 894, + "num": 9, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 895, + "num": 11, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 896, + "num": 13, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 897, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 898, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 899, + "num": 14, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 900, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 901, + "num": 6, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 902, + "num": 8, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 903, + "num": 5, + "color": 1, + "special": 0, + "length": 1, + "colorArray": "030" + }, + { + "id": 904, + "num": 23, + "color": 5, + "special": 0, + "length": 1, + "colorArray": "41" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level888.json.meta b/assets/custom/Json/level888.json.meta new file mode 100644 index 0000000..ea28c72 --- /dev/null +++ b/assets/custom/Json/level888.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "faa936ee-8dfd-4dab-a3c6-ef1119826525", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level889.json b/assets/custom/Json/level889.json new file mode 100644 index 0000000..2db90b5 --- /dev/null +++ b/assets/custom/Json/level889.json @@ -0,0 +1,356 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "889", + "map": [ + 9, + 8 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 16, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 10, + "floorMove": false, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 3, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "lockTime": 4, + "id": 360 + }, + { + "block": 1, + "color": 5, + "type": 17, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "boomTime": 1, + "id": 370 + }, + { + "block": 1, + "color": 7, + "type": 17, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "boomTime": 2, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 16, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "questionTime": 12, + "id": 390 + }, + { + "block": 1, + "color": 2, + "type": 16, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "questionTime": 7, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 890, + "num": 1, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 891, + "num": 2, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 892, + "num": 4, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 893, + "num": 7, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 894, + "num": 9, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 895, + "num": 13, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 896, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 897, + "num": 21, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 898, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 899, + "num": 23, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 900, + "num": 14, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 901, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 902, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 903, + "num": 8, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 904, + "num": 19, + "color": 1, + "special": 3, + "length": 1, + "freeze": 8 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level889.json.meta b/assets/custom/Json/level889.json.meta new file mode 100644 index 0000000..417ad48 --- /dev/null +++ b/assets/custom/Json/level889.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "bf2dee4a-817f-44ed-a244-67b44f1fbc67", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level890.json b/assets/custom/Json/level890.json new file mode 100644 index 0000000..4281cc6 --- /dev/null +++ b/assets/custom/Json/level890.json @@ -0,0 +1,552 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "889", + "map": [ + 10, + 10 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 3, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "lockTime": 3, + "id": 400 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 9, + "type": 17, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "boomTime": 1, + "id": 440 + }, + { + "block": 2, + "color": 6, + "type": 17, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "boomTime": 2, + "id": 450 + }, + { + "block": 0, + "color": 6, + "type": 17, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "boomTime": 3, + "id": 460 + }, + { + "block": 6, + "color": 5, + "type": 9, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 470 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 480 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 500 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 510 + }, + { + "block": 1, + "color": 8, + "type": 7, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 520 + }, + { + "block": 20, + "color": 3, + "type": 16, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "questionTime": 12, + "id": 530 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 890, + "num": 0, + "color": 9, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": false + }, + { + "id": 891, + "num": 1, + "color": 9, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": false + }, + { + "id": 892, + "num": 3, + "color": 5, + "special": 0, + "length": 3, + "longAndShort": 13, + "order": false + }, + { + "id": 893, + "num": 4, + "color": 5, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + }, + { + "id": 894, + "num": 5, + "color": 5, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": false + }, + { + "id": 895, + "num": 9, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 896, + "num": 11, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 897, + "num": 21, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 898, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 899, + "num": 28, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 900, + "num": 29, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 901, + "num": 27, + "color": 8, + "special": 3, + "length": 1, + "freeze": 7 + }, + { + "id": 902, + "num": 24, + "color": 7, + "special": 0, + "length": 3, + "longAndShort": 13, + "order": true + }, + { + "id": 903, + "num": 25, + "color": 7, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": true + }, + { + "id": 904, + "num": 26, + "color": 7, + "special": 0, + "length": 0, + "longAndShort": 13, + "order": true + }, + { + "id": 905, + "num": 14, + "color": 6, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 906, + "num": 16, + "color": 6, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + }, + { + "id": 907, + "num": 8, + "color": 10, + "special": 0, + "length": 2, + "longAndShort": 12, + "order": true + }, + { + "id": 908, + "num": 10, + "color": 10, + "special": 0, + "length": 0, + "longAndShort": 12, + "order": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level890.json.meta b/assets/custom/Json/level890.json.meta new file mode 100644 index 0000000..f614f9d --- /dev/null +++ b/assets/custom/Json/level890.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1d869c82-70c2-42a8-a5e3-6adf8aa92685", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/snow/雪.effect b/assets/effect/snow/雪.effect index 14a2f4e..7bd92ca 100644 --- a/assets/effect/snow/雪.effect +++ b/assets/effect/snow/雪.effect @@ -65,7 +65,7 @@ CCProgram fs %{ uniform sampler2D texture; #endif - #define LAYERS 20 + #define LAYERS 6 #define DEPTH .4 #define WIDTH .3 #define SPEED .3 diff --git a/assets/effect/snow/雪.effect.meta b/assets/effect/snow/雪.effect.meta index c1f3c6b..35dec9c 100644 --- a/assets/effect/snow/雪.effect.meta +++ b/assets/effect/snow/雪.effect.meta @@ -6,11 +6,11 @@ { "glsl1": { "vert": "\nprecision highp float;\nuniform mat4 cc_matViewProj;\nuniform mat4 cc_matWorld;\nattribute vec3 a_position;\nattribute vec4 a_color;\nvarying vec4 v_color;\n#if USE_TEXTURE\nattribute vec2 a_uv0;\nvarying vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", - "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n#endif\nuniform vec4 cc_time;\nvarying vec4 v_color;\n#if USE_TEXTURE\nvarying vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n const mat3 p = mat3(13.323122,23.5112,21.71123,21.1212,28.7312,11.9312,21.8112,14.7212,61.3934);\nvec2 uv = 500./1000. + vec2(1.,1.)*gl_FragCoord.xy / 1000.;\nvec3 acc = vec3(0.0);\nfloat dof = 5.*sin(cc_time.x*.1);\nfor (int i=0;i<20;i++) {\n float fi = float(i);\n vec2 q = uv*(1.+fi*.4);\n float shouldDrift = step(0.6, fract(fi * 7.238917));\n float driftAmount = shouldDrift * .2 * sin(cc_time.x * 0.5 + fi * 1.5) * (1.0 + 0.5 * sin(fi * 3.7));\n q += vec2(q.y*(.3*mod(fi*7.238917,1.)-.3*.5) + driftAmount, .3*cc_time.x/(1.+fi*.4*.03));\n vec3 n = vec3(floor(q),31.189+fi);\n vec3 m = floor(n)*.00001 + fract(n);\n vec3 mp = (31415.9+m)/fract(p*m);\n vec3 r = fract(mp);\n vec2 s = abs(mod(q,1.)-.5+.9*r.xy-.45);\n s += .008*abs(2.*fract(8.*q.yx)-1.);\n float d = .5*max(s.x-s.y,s.x+s.y)+max(s.x,s.y)-.01;\n float edge = .004+.04*min(.5*abs(fi-5.-dof),1.);\n float sizeVariation = 0.9 + 0.3 * sin(fi * 2.1);\n acc += vec3(smoothstep(edge,-edge,d)*(r.x/(1.+.02*fi*.4)*sizeVariation));\n}\n float a = 0.;\n if(acc.r+acc.g+acc.b>0.3){\n a = acc.r+acc.g+acc.b;\n }\ngl_FragColor = vec4(vec3(acc*5.),a);\n}" + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n#endif\nuniform vec4 cc_time;\nvarying vec4 v_color;\n#if USE_TEXTURE\nvarying vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n const mat3 p = mat3(13.323122,23.5112,21.71123,21.1212,28.7312,11.9312,21.8112,14.7212,61.3934);\nvec2 uv = 500./1000. + vec2(1.,1.)*gl_FragCoord.xy / 1000.;\nvec3 acc = vec3(0.0);\nfloat dof = 5.*sin(cc_time.x*.1);\nfor (int i=0;i<6;i++) {\n float fi = float(i);\n vec2 q = uv*(1.+fi*.4);\n float shouldDrift = step(0.6, fract(fi * 7.238917));\n float driftAmount = shouldDrift * .2 * sin(cc_time.x * 0.5 + fi * 1.5) * (1.0 + 0.5 * sin(fi * 3.7));\n q += vec2(q.y*(.3*mod(fi*7.238917,1.)-.3*.5) + driftAmount, .3*cc_time.x/(1.+fi*.4*.03));\n vec3 n = vec3(floor(q),31.189+fi);\n vec3 m = floor(n)*.00001 + fract(n);\n vec3 mp = (31415.9+m)/fract(p*m);\n vec3 r = fract(mp);\n vec2 s = abs(mod(q,1.)-.5+.9*r.xy-.45);\n s += .008*abs(2.*fract(8.*q.yx)-1.);\n float d = .5*max(s.x-s.y,s.x+s.y)+max(s.x,s.y)-.01;\n float edge = .004+.04*min(.5*abs(fi-5.-dof),1.);\n float sizeVariation = 0.9 + 0.3 * sin(fi * 2.1);\n acc += vec3(smoothstep(edge,-edge,d)*(r.x/(1.+.02*fi*.4)*sizeVariation));\n}\n float a = 0.;\n if(acc.r+acc.g+acc.b>0.3){\n a = acc.r+acc.g+acc.b;\n }\ngl_FragColor = vec4(vec3(acc*5.),a);\n}" }, "glsl3": { "vert": "\nprecision highp float;\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nuniform CCLocal {\n mat4 cc_matWorld;\n mat4 cc_matWorldIT;\n};\nin vec3 a_position;\nin vec4 a_color;\nout vec4 v_color;\n#if USE_TEXTURE\nin vec2 a_uv0;\nout vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", - "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform ALPHA_TEST {\n float alphaThreshold;\n };\n#endif\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nin vec4 v_color;\n#if USE_TEXTURE\nin vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n const mat3 p = mat3(13.323122,23.5112,21.71123,21.1212,28.7312,11.9312,21.8112,14.7212,61.3934);\nvec2 uv = 500./1000. + vec2(1.,1.)*gl_FragCoord.xy / 1000.;\nvec3 acc = vec3(0.0);\nfloat dof = 5.*sin(cc_time.x*.1);\nfor (int i=0;i<20;i++) {\n float fi = float(i);\n vec2 q = uv*(1.+fi*.4);\n float shouldDrift = step(0.6, fract(fi * 7.238917));\n float driftAmount = shouldDrift * .2 * sin(cc_time.x * 0.5 + fi * 1.5) * (1.0 + 0.5 * sin(fi * 3.7));\n q += vec2(q.y*(.3*mod(fi*7.238917,1.)-.3*.5) + driftAmount, .3*cc_time.x/(1.+fi*.4*.03));\n vec3 n = vec3(floor(q),31.189+fi);\n vec3 m = floor(n)*.00001 + fract(n);\n vec3 mp = (31415.9+m)/fract(p*m);\n vec3 r = fract(mp);\n vec2 s = abs(mod(q,1.)-.5+.9*r.xy-.45);\n s += .008*abs(2.*fract(8.*q.yx)-1.);\n float d = .5*max(s.x-s.y,s.x+s.y)+max(s.x,s.y)-.01;\n float edge = .004+.04*min(.5*abs(fi-5.-dof),1.);\n float sizeVariation = 0.9 + 0.3 * sin(fi * 2.1);\n acc += vec3(smoothstep(edge,-edge,d)*(r.x/(1.+.02*fi*.4)*sizeVariation));\n}\n float a = 0.;\n if(acc.r+acc.g+acc.b>0.3){\n a = acc.r+acc.g+acc.b;\n }\ngl_FragColor = vec4(vec3(acc*5.),a);\n}" + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform ALPHA_TEST {\n float alphaThreshold;\n };\n#endif\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nin vec4 v_color;\n#if USE_TEXTURE\nin vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n const mat3 p = mat3(13.323122,23.5112,21.71123,21.1212,28.7312,11.9312,21.8112,14.7212,61.3934);\nvec2 uv = 500./1000. + vec2(1.,1.)*gl_FragCoord.xy / 1000.;\nvec3 acc = vec3(0.0);\nfloat dof = 5.*sin(cc_time.x*.1);\nfor (int i=0;i<6;i++) {\n float fi = float(i);\n vec2 q = uv*(1.+fi*.4);\n float shouldDrift = step(0.6, fract(fi * 7.238917));\n float driftAmount = shouldDrift * .2 * sin(cc_time.x * 0.5 + fi * 1.5) * (1.0 + 0.5 * sin(fi * 3.7));\n q += vec2(q.y*(.3*mod(fi*7.238917,1.)-.3*.5) + driftAmount, .3*cc_time.x/(1.+fi*.4*.03));\n vec3 n = vec3(floor(q),31.189+fi);\n vec3 m = floor(n)*.00001 + fract(n);\n vec3 mp = (31415.9+m)/fract(p*m);\n vec3 r = fract(mp);\n vec2 s = abs(mod(q,1.)-.5+.9*r.xy-.45);\n s += .008*abs(2.*fract(8.*q.yx)-1.);\n float d = .5*max(s.x-s.y,s.x+s.y)+max(s.x,s.y)-.01;\n float edge = .004+.04*min(.5*abs(fi-5.-dof),1.);\n float sizeVariation = 0.9 + 0.3 * sin(fi * 2.1);\n acc += vec3(smoothstep(edge,-edge,d)*(r.x/(1.+.02*fi*.4)*sizeVariation));\n}\n float a = 0.;\n if(acc.r+acc.g+acc.b>0.3){\n a = acc.r+acc.g+acc.b;\n }\ngl_FragColor = vec4(vec3(acc*5.),a);\n}" } } ],