This commit is contained in:
COMPUTER\EDY 2025-10-22 10:27:59 +08:00
parent e2e4d5bcd6
commit 7fb40063b4
28 changed files with 7565 additions and 80 deletions

View File

@ -669,13 +669,14 @@ export default class Block extends cc.Component {
}, 250);
MapConroler._instance.nextLevel(1);
let colorTemp = this.color;
this.node.active = false;
this.node.removeFromParent();
setTimeout(() => {
if (MapConroler._instance.blockNum != 0 && (MapConroler._instance.openWall.length > 0 ||
MapConroler._instance.revolving_state != 0)
&& !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) {
let gameover = MapConroler._instance.predict_End();
let gameover = MapConroler._instance.predict_End(colorTemp);
if (gameover == false) {
if (MapConroler._instance.revolving_state == 0)
MapConroler._instance.failLevel("lock");
@ -960,13 +961,15 @@ export default class Block extends cc.Component {
cc.fx.AudioManager._instance.playEffect("lockBlock2", null);
}
MapConroler._instance.nextLevel(0);
let colorTemp = this.color;
MapConroler._instance.checkColor(colorTemp, true);
this.node.active = false;
this.node.removeFromParent();
setTimeout(() => {
if (MapConroler._instance.blockNum != 0 && (MapConroler._instance.openWall.length > 0 ||
MapConroler._instance.revolving_state != 0)
&& !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) {
let gameover = MapConroler._instance.predict_End();
let gameover = MapConroler._instance.predict_End(colorTemp);
if (gameover == false) {
if (MapConroler._instance.revolving_state == 0)
MapConroler._instance.failLevel("lock");
@ -1114,7 +1117,8 @@ export default class Block extends cc.Component {
else if (this.type == BlockType.) {
cc.fx.AudioManager._instance.playEffect("lockBlock2", null);
}
let colorTemp = this.color;
MapConroler._instance.checkColor(colorTemp, true);
MapConroler._instance.nextLevel(0);
this.node.active = false;
this.node.removeFromParent();
@ -1122,7 +1126,7 @@ export default class Block extends cc.Component {
if (MapConroler._instance.blockNum != 0 && (MapConroler._instance.openWall.length > 0 ||
MapConroler._instance.revolving_state != 0)
&& !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) {
let gameover = MapConroler._instance.predict_End();
let gameover = MapConroler._instance.predict_End(colorTemp);
if (gameover == false) {
if (MapConroler._instance.revolving_state == 0)
MapConroler._instance.failLevel("lock");

View File

@ -145,6 +145,7 @@ export default class MapConroler extends cc.Component {
bottomDoors: any; //下门
leftDoors: any; //左门
teamDoors: any; //每个门的组合单个门自己一个组合3门3个一组合
colorDoors: any; //变色门数组
powerState: boolean = false; //无限体力状态
SceneManager: any; //场景管理器
lastMagicTime: number; //上次使用魔法的时间
@ -186,6 +187,7 @@ export default class MapConroler extends cc.Component {
this.topDoors = []; //上门
this.bottomDoors = []; //下门
this.teamDoors = [];
this.colorDoors = [];
this.revolvingWallArray = []; //旋转门数组
this.gameWin = false;
this.gameOver = false;
@ -1548,7 +1550,11 @@ export default class MapConroler extends cc.Component {
//检测是否可以通过门
passWall(jg, wallArray, node) {
let colorArray = [];
for (let i = 0; i < wallArray.length; i++) {
if (wallArray[i].getComponent("Wall").colorArray.length > 0) {
colorArray.push(wallArray[i].getComponent("Wall"));
}
if (wallArray[i].getComponent("Wall").special == 2) {
console.log("尝试通过开关门:", wallArray[i].getComponent("Wall").open);
}
@ -1591,6 +1597,7 @@ export default class MapConroler extends cc.Component {
// console.log("检测颜色是否能够通过门",date8);
if (jg == true) {
this.checkColor(node.getComponent("Block").color, false);
if (wallArray[0].getComponent("Wall").colorArray.length > 0) {
wallArray[0].getComponent("Wall").changeColorWall();
}
@ -1598,6 +1605,33 @@ export default class MapConroler extends cc.Component {
return jg;
}
checkColor(colorTemp, type) {
let colorArray = [];
for (let i = 0; i < this.colorDoors.length; i++) {
if (this.colorDoors[i].colorArray.length > 0) {
colorArray.push(this.colorDoors[i]);
}
}
let colorOver = true;
let count = 0;
for (let i = 0; i < this.blocks.length; i++) {
let color = this.blocks[i].getComponent("Block").color;
if (color == colorTemp) {
count += 1;
}
}
if (count > 1) {
colorOver = false;
}
//是变色门关卡,并且消除的块是当前颜色最后一个,对变色门中该颜色做消除处理 3 1 2 4 5 6
if (colorOver == true && colorArray.length > 0) {
for (let j = 0; j < colorArray.length; j++) {
colorArray[j].removeColor(colorTemp, type);
}
}
}
//检测方块和门中间有没有夹杂其他块
detectingBlock(direction, posX, posY, blocks) {
let jg = true;
@ -3575,7 +3609,7 @@ export default class MapConroler extends cc.Component {
}
//提前判断游戏结束
predict_End() {
predict_End(colorTemp: number) {
//return true;
// console.log("提前判断游戏结束");
if (this.gameOver || this.gameWin || this.changeColor) {
@ -3585,10 +3619,12 @@ export default class MapConroler extends cc.Component {
if (this.blocks.length == 0) {
return true;
}
let colorOver = true;
for (let i = 0; i < this.blocks.length; i++) {
let color = this.blocks[i].getComponent("Block").color;
if (color == colorTemp) colorOver = false;
//确保方块是可移动状态下再做判断
if (this.blockCanMove(this.blocks[i])) {
let color = this.blocks[i].getComponent("Block").color;
for (let j = 0; j < this.wall_Pass.length; j++) {
//如果颜色相同
if (this.wall_Pass[j].color == color) {
@ -3634,6 +3670,10 @@ export default class MapConroler extends cc.Component {
}
}
}
//是变色门关卡,并且消除的块是当前颜色最后一个,对变色门中该颜色做消除处理
// if (colorOver == true && this.changeColor == true) {
// }
return result;
}
@ -3703,8 +3743,6 @@ export default class MapConroler extends cc.Component {
caidai.active = false;
console.log(this.arr, "this.arr");
// 第一步:播放 title - 果冻弹跳效果
cc.tween(title)
.to(0, { scale: 0, position: cc.v3(0, 0, 0) })

View File

@ -1489,6 +1489,33 @@ export namespace MiniGameSdk {
}
}
static yinli_Track(name, data, callback?: (success: boolean, error?: any) => void) {
//@ts-ignore
if (typeof wx !== 'undefined' && wx !== null) {
if (API._ge) {
// 假设 track 方法返回一个 Promise
API._ge.track(
name, // 事件名称
data // 事件属性
)
}
}
}
static yinli_FinishiStage() {
//@ts-ignore
if (typeof wx !== 'undefined' && wx !== null) {
if (API._ge) {
// 假设 track 方法返回一个 Promise
API._ge.track("$CompleteSection", {
$main_section_no: (cc.fx.GameConfig.GM_INFO.level),
$section_sum: (cc.fx.GameConfig.GM_INFO.level),
$section_type: "0"
});
}
}
}
//分享
static shareGame() {
//@ts-ignore

View File

@ -145,7 +145,7 @@ export default class Wall extends cc.Component {
}
init(wall_Info, posX: number, posY: number, direction: any) {
this.colorArray = [];
this.wall_Info = this.jsonDeepClone(wall_Info);
// this.open = true;
@ -180,7 +180,6 @@ export default class Wall extends cc.Component {
//this.node.getChildByName("num").getComponent(cc.Label).string = ":" + this.node.parent.zIndex;
}
if (wall_Info != null) {
this.colorArray = [];
this.color = this.wall_Info.color;
this.special = this.wall_Info.special;
this.num = this.wall_Info.num;
@ -189,6 +188,7 @@ export default class Wall extends cc.Component {
if (this.wall_Info.colorArray) {
this.colorArray = this.wall_Info.colorArray.split('').map(char => parseInt(char) + 1);
MapConroler._instance.changeColor = true;
MapConroler._instance.colorDoors.push(this);
}
if (this.revolvingNode) {
this.revolvingNode.parent.zIndex = 999;
@ -528,10 +528,14 @@ export default class Wall extends cc.Component {
//变色门变色具体执行方法
changeColor() {
if (this.colorArray.length > 1) {
if (this.colorArray.length > 1 && this.color == this.colorArray[0]) {
let firstItem = this.colorArray.shift(); // 移除第一项
this.colorArray.push(firstItem); // 将第一项添加到数组末尾
}
this.updateColor();
}
updateColor() {
this.color = this.colorArray[0];
// console.log("改變顏色", this.color, this.colorArray);
// debugger;
@ -540,8 +544,6 @@ export default class Wall extends cc.Component {
if (direction == "left" || direction == "right") {
double = 3;
}
if (this.wall_Info.length > 0) {
this.upDoor();
this.setMask();
@ -571,6 +573,17 @@ export default class Wall extends cc.Component {
}
}
//变色门删除颜色
removeColor(color, type) {
if (this.colorArray.length > 2) {
let index = this.colorArray.indexOf(color);
if (index !== -1) {
this.colorArray.splice(index, 1);
if (type) this.updateColor();
}
}
}
//添加遮罩
setMask() {
let direction = this.node.parent.name;

View File

@ -125,7 +125,7 @@ export default class AudioManager extends cc.Component {
volume = 1;
cc.audioEngine.setEffectsVolume(1);
cc.audioEngine.setMusicVolume(1);
if (audioSource.name == "lose") {
if (audioSource.name == "lose" || audioSource.name == "zhuan1" || audioSource.name == "zhuan2") {
cc.audioEngine.setEffectsVolume(0.5);
}
else {

View File

@ -398,8 +398,8 @@ var GameTool = {
//关卡上限
maxLevel() {
let jg = false;
if (cc.fx.GameConfig.GM_INFO.level > 519) {
cc.fx.GameConfig.GM_INFO.level = 520;
if (cc.fx.GameConfig.GM_INFO.level > 539) {
cc.fx.GameConfig.GM_INFO.level = 540;
jg = true;
}
return jg;
@ -1167,6 +1167,9 @@ var GameTool = {
console.log(eventData);
// MiniGameSdk.API.showToast("准备上报完成游戏");
}
if (name == "finish_stage") {
MiniGameSdk.API.yinli_FinishiStage();
}
// MiniGameSdk.API.shushu_Track(name,eventData);
MiniGameSdk.API.shushu_Track(name, eventData);
},

View File

@ -381,14 +381,14 @@
"id": 7,
"num": 38,
"color": 5,
"special": 0,
"special": 1,
"length": 2
},
{
"id": 8,
"num": 39,
"color": 5,
"special": 0,
"special": 1,
"length": 0
},
{
@ -474,62 +474,6 @@
"color": 9,
"special": 0,
"length": 0
},
{
"id": 21,
"num": 38,
"color": 9,
"special": 1,
"length": 2
},
{
"id": 22,
"num": 39,
"color": 9,
"special": 1,
"length": 0
},
{
"id": 23,
"num": 38,
"color": 5,
"special": 1,
"length": 2
},
{
"id": 24,
"num": 39,
"color": 5,
"special": 1,
"length": 0
},
{
"id": 25,
"num": 38,
"color": 9,
"special": 1,
"length": 2
},
{
"id": 26,
"num": 39,
"color": 9,
"special": 1,
"length": 0
},
{
"id": 27,
"num": 38,
"color": 5,
"special": 1,
"length": 2
},
{
"id": 28,
"num": 39,
"color": 5,
"special": 1,
"length": 0
}
]
]

View File

@ -371,17 +371,15 @@
"id": 521,
"num": 12,
"color": 3,
"special": 2,
"length": 2,
"lock": false
"special": 0,
"length": 2
},
{
"id": 522,
"num": 14,
"color": 3,
"special": 2,
"length": 0,
"lock": false
"special": 0,
"length": 0
},
{
"id": 523,

View File

@ -0,0 +1,348 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "521",
"map": [
9,
9
],
"time": 110,
"gap": [
{
"x": 2,
"y": 7,
"z": 0
},
{
"x": 3,
"y": 7,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 8,
"type": 4,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"freezeTime": 4,
"id": 220
},
{
"block": 1,
"color": 7,
"type": 4,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"freezeTime": 8,
"id": 230
},
{
"block": 1,
"color": 4,
"type": 4,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"freezeTime": 13,
"id": 240
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 250
},
{
"block": 4,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 260
},
{
"block": 4,
"color": 2,
"type": 0,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"id": 300
},
{
"block": 14,
"color": 4,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 11,
"type": 0,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"id": 370
},
{
"block": 15,
"color": 8,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"id": 390
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"adhesiveTime": 1,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 522,
"num": 2,
"color": 3,
"special": 0,
"length": 3,
"colorArray": "27"
},
{
"id": 523,
"num": 3,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "27"
},
{
"id": 524,
"num": 4,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "27"
},
{
"id": 525,
"num": 19,
"color": 5,
"special": 0,
"length": 2,
"colorArray": "49"
},
{
"id": 526,
"num": 22,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "49"
},
{
"id": 527,
"num": 27,
"color": 2,
"special": 0,
"length": 3,
"colorArray": "13"
},
{
"id": 528,
"num": 28,
"color": 2,
"special": 0,
"length": 0,
"colorArray": "13"
},
{
"id": 529,
"num": 29,
"color": 2,
"special": 0,
"length": 0,
"colorArray": "13"
},
{
"id": 530,
"num": 9,
"color": 9,
"special": 0,
"length": 2,
"colorArray": "86"
},
{
"id": 531,
"num": 12,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "86"
}
]
]
}

View File

@ -0,0 +1,333 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "522",
"map": [
8,
10
],
"time": 120,
"gap": [
{
"x": 2,
"y": 8,
"z": 0
},
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 5,
"y": 8,
"z": 0
},
{
"x": 6,
"y": 8,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 6,
"y": 4,
"z": 0
},
{
"x": 6,
"y": 3,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 1,
"type": 4,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"freezeTime": 9,
"id": 210
},
{
"block": 0,
"color": 10,
"type": 4,
"position": {
"x": 360,
"y": -480,
"z": 0
},
"freezeTime": 13,
"id": 220
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 1,
"type": 8,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 240
},
{
"block": 0,
"color": 10,
"type": 6,
"position": {
"x": 240,
"y": -480,
"z": 0
},
"boomTime": 35,
"id": 250
},
{
"block": 17,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 260
},
{
"block": 16,
"color": 2,
"type": 0,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": 360,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": -480,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 6,
"type": 8,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 5,
"type": 8,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 390
}
]
],
"WALL_INFO": [
[
{
"id": 523,
"num": 15,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "091"
},
{
"id": 524,
"num": 17,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "091"
},
{
"id": 525,
"num": 4,
"color": 4,
"special": 0,
"length": 2,
"colorArray": "385"
},
{
"id": 526,
"num": 11,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "385"
},
{
"id": 527,
"num": 18,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "274"
},
{
"id": 528,
"num": 21,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "274"
}
]
]
}

View File

@ -0,0 +1,314 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "523",
"map": [
9,
9
],
"time": 145,
"gap": [
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 7,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 1,
"color": 8,
"type": 4,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"freezeTime": 9,
"id": 210
},
{
"block": 23,
"color": 7,
"type": 4,
"position": {
"x": -180,
"y": 300,
"z": 0
},
"freezeTime": 9,
"id": 220
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -300,
"y": -60,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 260
},
{
"block": 13,
"color": 6,
"type": 0,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -300,
"y": 300,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 300,
"y": 300,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 300
},
{
"block": 5,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 22,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"id": 370
},
{
"block": 4,
"color": 5,
"type": 8,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 524,
"num": 4,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 525,
"num": 5,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 526,
"num": 8,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 527,
"num": 12,
"color": 7,
"special": 0,
"length": 2,
"colorArray": "671"
},
{
"id": 528,
"num": 14,
"color": 7,
"special": 0,
"length": 0,
"colorArray": "671"
},
{
"id": 529,
"num": 13,
"color": 6,
"special": 0,
"length": 3,
"colorArray": "54028"
},
{
"id": 530,
"num": 15,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "54028"
},
{
"id": 531,
"num": 17,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "54028"
}
]
]
}

View File

@ -0,0 +1,383 @@
{
"LEVEL_INFO": [
{
"risefall": [
{
"x": 3,
"y": 4,
"color": "2"
},
{
"x": 4,
"y": 4,
"color": "2"
},
{
"x": 5,
"y": 4,
"color": "2"
}
],
"id": "524",
"map": [
9,
9
],
"time": 135,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 220
},
{
"block": 22,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"id": 230
},
{
"block": 21,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 250
},
{
"block": 19,
"color": 2,
"type": 0,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 280
},
{
"block": 3,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": -300,
"y": 300,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 350
},
{
"block": 20,
"color": 8,
"type": 0,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 400
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 410
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 420
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 430
}
]
],
"WALL_INFO": [
[
{
"id": 525,
"num": 2,
"color": 6,
"special": 0,
"length": 2,
"colorArray": "572"
},
{
"id": 526,
"num": 3,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "572"
},
{
"id": 527,
"num": 10,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 528,
"num": 12,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 529,
"num": 16,
"color": 7,
"special": 3,
"length": 2,
"freeze": 9
},
{
"id": 530,
"num": 18,
"color": 7,
"special": 3,
"length": 0,
"freeze": 9
},
{
"id": 531,
"num": 23,
"color": 9,
"special": 0,
"length": 2,
"colorArray": "894"
},
{
"id": 532,
"num": 24,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "894"
},
{
"id": 533,
"num": 17,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 534,
"num": 19,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 535,
"num": 7,
"color": 2,
"special": 3,
"length": 2,
"freeze": 12
},
{
"id": 536,
"num": 9,
"color": 2,
"special": 3,
"length": 0,
"freeze": 12
}
]
]
}

View File

@ -0,0 +1,405 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "525",
"map": [
8,
10
],
"time": 105,
"gap": [
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 3,
"y": 1,
"z": 0
},
{
"x": 4,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"floor": 1,
"floorTime": 4,
"id": 210
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"floor": 1,
"floorTime": 4,
"id": 220
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": 360,
"z": 0
},
"floor": 2,
"floorTime": 7,
"id": 250
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 0,
"y": 360,
"z": 0
},
"floor": 2,
"floorTime": 7,
"id": 260
},
{
"block": 3,
"color": 5,
"type": 4,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"freezeTime": 10,
"floor": 2,
"floorTime": 7,
"id": 270
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"floor": 2,
"floorTime": 7,
"id": 280
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"floor": 2,
"floorTime": 7,
"id": 290
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 380
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": 360,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": -480,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": 360,
"z": 0
},
"floor": 3,
"floorTime": 12,
"id": 410
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"floor": 3,
"floorTime": 12,
"id": 420
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"floor": 4,
"floorTime": 16,
"id": 430
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"floor": 4,
"floorTime": 16,
"id": 440
},
{
"block": 5,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"floor": 4,
"floorTime": 16,
"id": 450
},
{
"block": 2,
"color": 4,
"type": 4,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"freezeTime": 4,
"floor": 4,
"floorTime": 16,
"id": 460
}
]
],
"WALL_INFO": [
[
{
"id": 526,
"num": 0,
"color": 4,
"special": 0,
"length": 2,
"colorArray": "354"
},
{
"id": 527,
"num": 1,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "354"
},
{
"id": 528,
"num": 14,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "097"
},
{
"id": 529,
"num": 17,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "097"
},
{
"id": 530,
"num": 27,
"color": 9,
"special": 0,
"length": 2,
"colorArray": "816"
},
{
"id": 531,
"num": 28,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "816"
}
]
]
}

View File

@ -0,0 +1,358 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "526",
"map": [
8,
10
],
"time": 150,
"gap": [
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 2,
"y": 4,
"z": 0
},
{
"x": 2,
"y": 3,
"z": 0
},
{
"x": 5,
"y": 4,
"z": 0
},
{
"x": 5,
"y": 3,
"z": 0
},
{
"x": 6,
"y": 4,
"z": 0
},
{
"x": 6,
"y": 3,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 5,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 220
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 360,
"y": -480,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 0,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -480,
"z": 0
},
"id": 290
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 340
},
{
"block": 4,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 360,
"z": 0
},
"id": 370
},
{
"block": 4,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"id": 380
},
{
"block": 1,
"color": 3,
"type": 7,
"position": {
"x": 360,
"y": 360,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 4,
"type": 7,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 7,
"type": 8,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 527,
"num": 17,
"color": 6,
"special": 0,
"length": 2,
"colorArray": "5671"
},
{
"id": 528,
"num": 19,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "5671"
},
{
"id": 529,
"num": 1,
"color": 10,
"special": 3,
"length": 1,
"freeze": 8
},
{
"id": 530,
"num": 31,
"color": 5,
"special": 3,
"length": 1,
"freeze": 13
},
{
"id": 531,
"num": 4,
"color": 3,
"special": 2,
"length": 2,
"lock": false
},
{
"id": 532,
"num": 5,
"color": 3,
"special": 2,
"length": 0,
"lock": false
},
{
"id": 533,
"num": 34,
"color": 4,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 534,
"num": 35,
"color": 4,
"special": 2,
"length": 0,
"lock": true
}
]
]
}

View File

@ -0,0 +1,367 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "527",
"map": [
8,
10
],
"time": 120,
"gap": [
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 4,
"z": 0
},
{
"x": 6,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 0,
"y": 360,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 1,
"type": 2,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"floor": 1,
"floorTime": 5,
"id": 220
},
{
"block": 2,
"color": 1,
"type": 2,
"position": {
"x": 0,
"y": -240,
"z": 0
},
"floor": 1,
"floorTime": 5,
"id": 230
},
{
"block": 1,
"color": 3,
"type": 4,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"freezeTime": 6,
"floor": 2,
"floorTime": 7,
"id": 240
},
{
"block": 5,
"color": 5,
"type": 3,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"lockTime": 5,
"floor": 3,
"floorTime": 12,
"id": 250
},
{
"block": 2,
"color": 5,
"type": 2,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 3,
"type": 2,
"position": {
"x": 240,
"y": 360,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 2,
"type": 2,
"position": {
"x": 360,
"y": 360,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 6,
"type": 7,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 310
},
{
"block": 22,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": -480,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 370
},
{
"block": 4,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 360,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 410
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 420
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 430
}
]
],
"WALL_INFO": [
[
{
"id": 528,
"num": 1,
"color": 7,
"special": 0,
"length": 2,
"colorArray": "65"
},
{
"id": 529,
"num": 2,
"color": 7,
"special": 0,
"length": 0,
"colorArray": "65"
},
{
"id": 530,
"num": 5,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "24"
},
{
"id": 531,
"num": 6,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "24"
},
{
"id": 532,
"num": 28,
"color": 10,
"special": 0,
"length": 2,
"colorArray": "97"
},
{
"id": 533,
"num": 29,
"color": 10,
"special": 0,
"length": 0,
"colorArray": "97"
},
{
"id": 534,
"num": 12,
"color": 1,
"special": 0,
"length": 1,
"colorArray": "01"
}
]
]
}

View File

@ -0,0 +1,351 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "528",
"map": [
8,
10
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": 360,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 240
},
{
"block": 18,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 250
},
{
"block": 18,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": -480,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -480,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": -480,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 320
},
{
"block": 3,
"color": 1,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": 360,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": 360,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": 360,
"z": 0
},
"id": 380
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 400
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 529,
"num": 4,
"color": 8,
"special": 0,
"length": 1,
"colorArray": "73"
},
{
"id": 530,
"num": 9,
"color": 2,
"special": 0,
"length": 2,
"colorArray": "16"
},
{
"id": 531,
"num": 11,
"color": 2,
"special": 0,
"length": 0,
"colorArray": "16"
},
{
"id": 532,
"num": 15,
"color": 3,
"special": 2,
"length": 3,
"lock": false
},
{
"id": 533,
"num": 17,
"color": 3,
"special": 2,
"length": 0,
"lock": false
},
{
"id": 534,
"num": 19,
"color": 3,
"special": 2,
"length": 0,
"lock": false
},
{
"id": 535,
"num": 24,
"color": 1,
"special": 0,
"length": 1,
"colorArray": "09"
},
{
"id": 536,
"num": 16,
"color": 9,
"special": 0,
"length": 2,
"colorArray": "85"
},
{
"id": 537,
"num": 18,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "85"
},
{
"id": 538,
"num": 8,
"color": 5,
"special": 2,
"length": 3,
"lock": true
},
{
"id": 539,
"num": 10,
"color": 5,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 540,
"num": 12,
"color": 5,
"special": 2,
"length": 0,
"lock": true
}
]
]
}

View File

@ -0,0 +1,370 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "529",
"map": [
8,
10
],
"time": 160,
"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": -120,
"y": 360,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -480,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": 360,
"z": 0
},
"id": 260
},
{
"block": 20,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 310
},
{
"block": 22,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -240,
"y": 360,
"z": 0
},
"id": 330
},
{
"block": 4,
"color": 1,
"type": 0,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 11,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 390
},
{
"block": 5,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"floor": 1,
"floorTime": 9,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 530,
"num": 0,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 531,
"num": 1,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 532,
"num": 4,
"color": 1,
"special": 0,
"length": 3
},
{
"id": 533,
"num": 5,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 534,
"num": 6,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 535,
"num": 9,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 536,
"num": 13,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 537,
"num": 15,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 538,
"num": 17,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 539,
"num": 19,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 540,
"num": 26,
"color": 3,
"special": 4,
"length": 2
},
{
"id": 541,
"num": 27,
"color": 3,
"special": 4,
"length": 0
},
{
"id": 542,
"num": 22,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 543,
"num": 23,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 544,
"num": 16,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 545,
"num": 18,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 546,
"num": 8,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 547,
"num": 10,
"color": 8,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,446 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "530",
"map": [
9,
11
],
"time": 160,
"gap": [
{
"x": 1,
"y": 9,
"z": 0
},
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 4,
"z": 0
},
{
"x": 2,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 2,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 2,
"y": 1,
"z": 0
},
{
"x": 3,
"y": 1,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 7,
"y": 2,
"z": 0
},
{
"x": 7,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 8,
"z": 0
},
{
"x": 7,
"y": 9,
"z": 0
},
{
"x": 6,
"y": 9,
"z": 0
},
{
"x": 6,
"y": 8,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 4,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -180,
"y": 300,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": 420,
"z": 0
},
"id": 260
},
{
"block": 20,
"color": 4,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 270
},
{
"block": 22,
"color": 2,
"type": 0,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -540,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 300,
"y": -540,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -60,
"y": 300,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 10,
"type": 8,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 8,
"type": 8,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 3,
"type": 8,
"position": {
"x": 60,
"y": 300,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 6,
"type": 4,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"freezeTime": 4,
"floor": 1,
"floorTime": 12,
"id": 380
},
{
"block": 1,
"color": 7,
"type": 4,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"freezeTime": 5,
"floor": 1,
"floorTime": 12,
"id": 390
}
]
],
"WALL_INFO": [
[
{
"id": 531,
"num": 14,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 532,
"num": 16,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 533,
"num": 18,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 534,
"num": 30,
"color": 6,
"special": 0,
"length": 2,
"colorArray": "53"
},
{
"id": 535,
"num": 31,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "53"
},
{
"id": 536,
"num": 19,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 537,
"num": 15,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 538,
"num": 17,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 539,
"num": 6,
"color": 1,
"special": 0,
"length": 3,
"colorArray": "088"
},
{
"id": 540,
"num": 7,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "088"
},
{
"id": 541,
"num": 8,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "088"
},
{
"id": 542,
"num": 4,
"color": 5,
"special": 0,
"length": 2,
"colorArray": "4144"
},
{
"id": 543,
"num": 5,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "4144"
}
]
]
}

View File

@ -0,0 +1,296 @@
{
"LEVEL_INFO": [
{
"risefall": [
{
"x": 3,
"y": 6,
"color": "8"
},
{
"x": 4,
"y": 6,
"color": "8"
},
{
"x": 3,
"y": 5,
"color": "8"
},
{
"x": 4,
"y": 5,
"color": "8"
}
],
"id": "531",
"map": [
8,
10
],
"time": 100,
"gap": [
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
},
{
"x": 6,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 6,
"y": 8,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"id": 210
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 220
},
{
"block": 5,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 22,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 300
},
{
"block": 21,
"color": 3,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 330
},
{
"block": 2,
"color": 9,
"type": 9,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"adhesiveTime": 1,
"id": 340
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 350
},
{
"block": 2,
"color": 7,
"type": 9,
"position": {
"x": 240,
"y": -480,
"z": 0
},
"adhesiveTime": 1,
"id": 360
}
]
],
"WALL_INFO": [
[
{
"id": 532,
"num": 1,
"color": 10,
"special": 0,
"length": 2,
"colorArray": "9281"
},
{
"id": 533,
"num": 2,
"color": 10,
"special": 0,
"length": 0,
"colorArray": "9281"
},
{
"id": 534,
"num": 25,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "0765"
},
{
"id": 535,
"num": 26,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "0765"
}
]
]
}

View File

@ -0,0 +1,460 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "532",
"map": [
9,
11
],
"time": 110,
"gap": [
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 2,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 2,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 2,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 2,
"y": 1,
"z": 0
},
{
"x": 3,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 9,
"z": 0
},
{
"x": 6,
"y": 9,
"z": 0
},
{
"x": 7,
"y": 9,
"z": 0
},
{
"x": 5,
"y": 8,
"z": 0
},
{
"x": 6,
"y": 8,
"z": 0
},
{
"x": 7,
"y": 8,
"z": 0
},
{
"x": 7,
"y": 2,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 4,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": 300,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -300,
"y": 300,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 240
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 300,
"y": -540,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": 420,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 180,
"y": -540,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"floor": 1,
"floorTime": 8,
"id": 360
},
{
"block": 1,
"color": 3,
"type": 2,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"floor": 1,
"floorTime": 8,
"id": 370
},
{
"block": 2,
"color": 6,
"type": 2,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"floor": 1,
"floorTime": 8,
"id": 380
},
{
"block": 1,
"color": 6,
"type": 2,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 10,
"type": 2,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"id": 400
},
{
"block": 4,
"color": 9,
"type": 2,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 410
},
{
"block": 16,
"color": 8,
"type": 3,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"lockTime": 5,
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 533,
"num": 0,
"color": 4,
"special": 0,
"length": 2,
"colorArray": "31"
},
{
"id": 534,
"num": 1,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "31"
},
{
"id": 535,
"num": 11,
"color": 1,
"special": 3,
"length": 2,
"freeze": 11
},
{
"id": 536,
"num": 13,
"color": 1,
"special": 3,
"length": 0,
"freeze": 11
},
{
"id": 537,
"num": 22,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "29"
},
{
"id": 538,
"num": 26,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "29"
},
{
"id": 539,
"num": 28,
"color": 6,
"special": 0,
"length": 2,
"colorArray": "54"
},
{
"id": 540,
"num": 29,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "54"
},
{
"id": 541,
"num": 6,
"color": 8,
"special": 0,
"length": 3,
"colorArray": "78"
},
{
"id": 542,
"num": 7,
"color": 8,
"special": 0,
"length": 0,
"colorArray": "78"
},
{
"id": 543,
"num": 8,
"color": 8,
"special": 0,
"length": 0,
"colorArray": "78"
}
]
]
}

View File

@ -0,0 +1,343 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "533",
"map": [
9,
8
],
"time": 110,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 5,
"color": 4,
"type": 0,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"id": 280
},
{
"block": 5,
"color": 8,
"type": 0,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 3,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 6,
"type": 9,
"position": {
"x": 60,
"y": 240,
"z": 0
},
"adhesiveTime": 2,
"id": 320
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"id": 330
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"adhesiveTime": 2,
"id": 340
},
{
"block": 3,
"color": 9,
"type": 9,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"id": 350
},
{
"block": 1,
"color": 10,
"type": 1,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"stacking": 1,
"id": 360
},
{
"block": 1,
"color": 6,
"type": 1,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"stacking": 2,
"id": 370
},
{
"block": 1,
"color": 7,
"type": 1,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"stacking": 2,
"id": 380
},
{
"block": 2,
"color": 1,
"type": 1,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"stacking": 5,
"id": 390
},
{
"block": 1,
"color": 5,
"type": 1,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"stacking": 10,
"id": 400
},
{
"block": 2,
"color": 8,
"type": 1,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"stacking": 9,
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 534,
"num": 2,
"color": 8,
"special": 0,
"length": 2,
"colorArray": "79"
},
{
"id": 535,
"num": 3,
"color": 8,
"special": 0,
"length": 0,
"colorArray": "79"
},
{
"id": 536,
"num": 11,
"color": 3,
"special": 0,
"length": 3,
"colorArray": "256"
},
{
"id": 537,
"num": 13,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "256"
},
{
"id": 538,
"num": 15,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "256"
},
{
"id": 539,
"num": 22,
"color": 4,
"special": 0,
"length": 2,
"colorArray": "31"
},
{
"id": 540,
"num": 23,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "31"
},
{
"id": 541,
"num": 10,
"color": 5,
"special": 0,
"length": 3,
"colorArray": "408"
},
{
"id": 542,
"num": 12,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "408"
},
{
"id": 543,
"num": 14,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "408"
}
]
]
}

View File

@ -0,0 +1,458 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "534",
"map": [
9,
9
],
"time": 90,
"gap": [
{
"x": 5,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 240
},
{
"block": 3,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": 300,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"id": 260
},
{
"block": 22,
"color": 4,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 9,
"type": 5,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"adhesiveTime": 2,
"id": 380
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"adhesiveTime": 1,
"id": 390
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 1,
"type": 6,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"boomTime": 40,
"id": 400
},
{
"block": 1,
"color": 1,
"type": 6,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"boomTime": 22,
"id": 410
},
{
"block": 5,
"color": 8,
"type": 4,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"freezeTime": 4,
"id": 420
},
{
"block": 3,
"color": 9,
"type": 5,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"floor": 2,
"floorTime": 9,
"id": 390
},
{
"block": 2,
"color": 6,
"type": 5,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"floor": 2,
"floorTime": 9,
"id": 400
},
{
"block": 2,
"color": 3,
"type": 5,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"floor": 2,
"floorTime": 9,
"id": 410
},
{
"block": 0,
"color": 3,
"type": 5,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"floor": 2,
"floorTime": 9,
"id": 420
},
{
"block": 0,
"color": 5,
"type": 5,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"floor": 2,
"floorTime": 9,
"id": 430
},
{
"block": 0,
"color": 4,
"type": 4,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"freezeTime": 20,
"id": 440
}
]
],
"WALL_INFO": [
[
{
"id": 535,
"num": 1,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 536,
"num": 2,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 537,
"num": 3,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 538,
"num": 4,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 539,
"num": 5,
"color": 6,
"special": 1,
"length": 2
},
{
"id": 540,
"num": 6,
"color": 6,
"special": 1,
"length": 0
},
{
"id": 541,
"num": 14,
"color": 9,
"special": 1,
"length": 3
},
{
"id": 542,
"num": 17,
"color": 9,
"special": 1,
"length": 0
},
{
"id": 543,
"num": 19,
"color": 9,
"special": 1,
"length": 0
},
{
"id": 544,
"num": 27,
"color": 5,
"special": 1,
"length": 1
},
{
"id": 545,
"num": 25,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 546,
"num": 26,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 547,
"num": 23,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 548,
"num": 24,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 549,
"num": 22,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 550,
"num": 20,
"color": 3,
"special": 1,
"length": 1
},
{
"id": 551,
"num": 9,
"color": 1,
"special": 0,
"length": 3
},
{
"id": 552,
"num": 11,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 553,
"num": 13,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 554,
"num": 7,
"color": 9,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,371 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "535",
"map": [
9,
8
],
"time": 165,
"gap": [
{
"x": 7,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": 0,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -60,
"y": -120,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": 240,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"id": 290
},
{
"block": 4,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -240,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 9,
"type": 1,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"stacking": 8,
"id": 380
},
{
"block": 22,
"color": 1,
"type": 1,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"stacking": 8,
"id": 390
},
{
"block": 2,
"color": 4,
"type": 1,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"stacking": 8,
"id": 400
},
{
"block": 2,
"color": 6,
"type": 1,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"stacking": 1,
"id": 410
},
{
"block": 20,
"color": 10,
"type": 1,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"stacking": 3,
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 536,
"num": 1,
"color": 10,
"special": 0,
"length": 2,
"colorArray": "95"
},
{
"id": 537,
"num": 2,
"color": 10,
"special": 0,
"length": 0,
"colorArray": "95"
},
{
"id": 538,
"num": 4,
"color": 9,
"special": 0,
"length": 2,
"colorArray": "81"
},
{
"id": 539,
"num": 5,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "81"
},
{
"id": 540,
"num": 9,
"color": 8,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 541,
"num": 11,
"color": 8,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 542,
"num": 15,
"color": 1,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 543,
"num": 17,
"color": 1,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 544,
"num": 23,
"color": 3,
"special": 0,
"length": 3,
"colorArray": "23"
},
{
"id": 545,
"num": 24,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "23"
},
{
"id": 546,
"num": 25,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "23"
},
{
"id": 547,
"num": 12,
"color": 5,
"special": 0,
"length": 1,
"colorArray": "46"
}
]
]
}

View File

@ -0,0 +1,422 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "536",
"map": [
11,
9
],
"time": 110,
"gap": [
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 2,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 4,
"z": 0
},
{
"x": 3,
"y": 5,
"z": 0
},
{
"x": 3,
"y": 4,
"z": 0
},
{
"x": 7,
"y": 5,
"z": 0
},
{
"x": 7,
"y": 4,
"z": 0
},
{
"x": 8,
"y": 5,
"z": 0
},
{
"x": 8,
"y": 4,
"z": 0
},
{
"x": 9,
"y": 5,
"z": 0
},
{
"x": 9,
"y": 4,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 21,
"color": 1,
"type": 0,
"position": {
"x": -420,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"id": 220
},
{
"block": 22,
"color": 8,
"type": 0,
"position": {
"x": 540,
"y": 180,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"id": 240
},
{
"block": 3,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 260
},
{
"block": 3,
"color": 11,
"type": 0,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -420,
"y": -300,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 540,
"y": -300,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 360
},
{
"block": 3,
"color": 5,
"type": 0,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"id": 400
},
{
"block": 2,
"color": 11,
"type": 9,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"adhesiveTime": 1,
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 537,
"num": 1,
"color": 8,
"special": 0,
"length": 2,
"colorArray": "71"
},
{
"id": 538,
"num": 2,
"color": 8,
"special": 0,
"length": 0,
"colorArray": "71"
},
{
"id": 539,
"num": 3,
"color": 6,
"special": 0,
"length": 2,
"colorArray": "56"
},
{
"id": 540,
"num": 4,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "56"
},
{
"id": 541,
"num": 20,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 542,
"num": 22,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 543,
"num": 24,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 544,
"num": 42,
"color": 9,
"special": 0,
"length": 2,
"colorArray": "89"
},
{
"id": 545,
"num": 43,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "89"
},
{
"id": 546,
"num": 40,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "03"
},
{
"id": 547,
"num": 41,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "03"
},
{
"id": 548,
"num": 19,
"color": 3,
"special": 0,
"length": 3
},
{
"id": 549,
"num": 21,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 550,
"num": 23,
"color": 3,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,318 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "537",
"map": [
8,
10
],
"time": 85,
"gap": [
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 6,
"y": 8,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 3,
"y": 1,
"z": 0
},
{
"x": 4,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 22,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 220
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 230
},
{
"block": 21,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -480,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 5,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 310
},
{
"block": 4,
"color": 10,
"type": 8,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 320
},
{
"block": 4,
"color": 2,
"type": 8,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 7,
"type": 9,
"position": {
"x": 120,
"y": 360,
"z": 0
},
"adhesiveTime": 2,
"id": 340
},
{
"block": 1,
"color": 4,
"type": 9,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"id": 350
},
{
"block": 0,
"color": 4,
"type": 7,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 3,
"type": 7,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 5,
"type": 6,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"boomTime": 25,
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 538,
"num": 3,
"color": 3,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 539,
"num": 4,
"color": 3,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 540,
"num": 14,
"color": 5,
"special": 0,
"length": 2,
"colorArray": "46"
},
{
"id": 541,
"num": 17,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "46"
},
{
"id": 542,
"num": 27,
"color": 4,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 543,
"num": 28,
"color": 4,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 544,
"num": 18,
"color": 9,
"special": 0,
"length": 1,
"colorArray": "81"
},
{
"id": 545,
"num": 10,
"color": 6,
"special": 0,
"length": 1,
"colorArray": "59"
}
]
]
}

View File

@ -0,0 +1,375 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "438",
"map": [
9,
9
],
"time": 125,
"gap": [
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 6,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 3,
"y": 1,
"z": 0
},
{
"x": 4,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 22,
"color": 7,
"type": 4,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"freezeTime": 7,
"id": 210
},
{
"block": 5,
"color": 5,
"type": 3,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"lockTime": 6,
"id": 220
},
{
"block": 23,
"color": 5,
"type": 3,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"lockTime": 6,
"id": 230
},
{
"block": 23,
"color": 5,
"type": 3,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"lockTime": 6,
"id": 240
},
{
"block": 23,
"color": 5,
"type": 3,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"lockTime": 6,
"id": 250
},
{
"block": 0,
"color": 5,
"type": 5,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 5,
"type": 5,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 5,
"type": 5,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 1,
"type": 2,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 2,
"type": 2,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 3,
"type": 2,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 8,
"type": 2,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"id": 380
},
{
"block": 1,
"color": 4,
"type": 2,
"position": {
"x": 60,
"y": 300,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 7,
"type": 2,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 439,
"num": 1,
"color": 8,
"special": 0,
"length": 2,
"colorArray": "76"
},
{
"id": 440,
"num": 2,
"color": 8,
"special": 0,
"length": 0,
"colorArray": "76"
},
{
"id": 441,
"num": 15,
"color": 6,
"special": 0,
"length": 2,
"colorArray": "51"
},
{
"id": 442,
"num": 17,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "51"
},
{
"id": 443,
"num": 28,
"color": 10,
"special": 0,
"length": 2,
"colorArray": "94"
},
{
"id": 444,
"num": 29,
"color": 10,
"special": 0,
"length": 0,
"colorArray": "94"
},
{
"id": 445,
"num": 21,
"color": 4,
"special": 0,
"length": 2,
"colorArray": "38"
},
{
"id": 446,
"num": 24,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "38"
},
{
"id": 447,
"num": 4,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "20"
},
{
"id": 448,
"num": 11,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "20"
},
{
"id": 449,
"num": 16,
"color": 5,
"special": 1,
"length": 1
}
]
]
}

View File

@ -0,0 +1,370 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "539",
"map": [
9,
9
],
"time": 145,
"gap": [
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": 300,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": 300,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 2,
"type": 2,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"floor": 1,
"floorTime": 10,
"id": 240
},
{
"block": 0,
"color": 9,
"type": 2,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"floor": 1,
"floorTime": 10,
"id": 250
},
{
"block": 0,
"color": 4,
"type": 2,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"floor": 1,
"floorTime": 10,
"id": 260
},
{
"block": 0,
"color": 3,
"type": 2,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"floor": 1,
"floorTime": 10,
"id": 270
},
{
"block": 23,
"color": 1,
"type": 2,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 4,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": 300,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 410
},
{
"block": 16,
"color": 7,
"type": 0,
"position": {
"x": -300,
"y": -60,
"z": 0
},
"id": 420
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"id": 430
},
{
"block": 2,
"color": 1,
"type": 3,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"lockTime": 4,
"id": 440
}
]
],
"WALL_INFO": [
[
{
"id": 540,
"num": 1,
"color": 2,
"special": 0,
"length": 1,
"colorArray": "13"
},
{
"id": 541,
"num": 5,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "27"
},
{
"id": 542,
"num": 6,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "27"
},
{
"id": 543,
"num": 25,
"color": 9,
"special": 0,
"length": 3,
"colorArray": "84"
},
{
"id": 544,
"num": 26,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "84"
},
{
"id": 545,
"num": 27,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "84"
},
{
"id": 546,
"num": 9,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "06"
},
{
"id": 547,
"num": 11,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "06"
}
]
]
}

View File

@ -0,0 +1,370 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "540",
"map": [
8,
10
],
"time": 95,
"gap": [
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 3,
"y": 8,
"z": 0
},
{
"x": 4,
"y": 8,
"z": 0
},
{
"x": 6,
"y": 5,
"z": 0
},
{
"x": 6,
"y": 4,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 360,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"floor": 1,
"floorTime": 5,
"id": 250
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"floor": 2,
"floorTime": 10,
"id": 260
},
{
"block": 2,
"color": 10,
"type": 4,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"freezeTime": 6,
"floor": 2,
"floorTime": 10,
"id": 270
},
{
"block": 11,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 21,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 310
},
{
"block": 3,
"color": 9,
"type": 0,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": 360,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 390
}
]
],
"WALL_INFO": [
[
{
"id": 441,
"num": 1,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "20"
},
{
"id": 442,
"num": 2,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "20"
},
{
"id": 443,
"num": 13,
"color": 7,
"special": 3,
"length": 1,
"freeze": 8
},
{
"id": 444,
"num": 22,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 445,
"num": 28,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 446,
"num": 31,
"color": 10,
"special": 0,
"length": 2,
"colorArray": "97"
},
{
"id": 447,
"num": 32,
"color": 10,
"special": 0,
"length": 0,
"colorArray": "97"
},
{
"id": 448,
"num": 5,
"color": 5,
"special": 0,
"length": 3,
"colorArray": "48"
},
{
"id": 449,
"num": 12,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "48"
},
{
"id": 450,
"num": 14,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "48"
},
{
"id": 451,
"num": 23,
"color": 2,
"special": 3,
"length": 1,
"freeze": 14
}
]
]
}