更新关卡
This commit is contained in:
parent
79ace74e61
commit
e2e4d5bcd6
|
|
@ -1247,9 +1247,14 @@ export default class Block extends cc.Component {
|
|||
this.block_Info.type = 0;
|
||||
let name = this.color + "color" + this.block_Info.block;
|
||||
let number = Math.floor((this.color - 1) / 2);
|
||||
if (this.color == 11) {
|
||||
name = "0color" + this.block_Info.block;
|
||||
number = 5;
|
||||
}
|
||||
let blockSpriteFrame = MapConroler._instance.Block_Color[number]._spriteFrames;
|
||||
var spriteFrame = blockSpriteFrame[name];
|
||||
this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame;
|
||||
|
||||
}
|
||||
|
||||
//地板铺盖状态恢复为常态
|
||||
|
|
|
|||
|
|
@ -240,7 +240,7 @@ export default class JiaZai extends cc.Component {
|
|||
}
|
||||
else {
|
||||
// this.closeLoad();
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 1000);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, true);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
@ -337,7 +337,7 @@ export default class JiaZai extends cc.Component {
|
|||
NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
|
||||
this.setHealthInfo(true);
|
||||
});
|
||||
// cc.fx.GameConfig.LEVEL_INFO_init(false,0);
|
||||
|
||||
|
||||
if (cc.fx.GameConfig.GM_INFO.gameState) {
|
||||
this.node.getChildByName("zhuanchang").active = true;
|
||||
|
|
@ -744,7 +744,7 @@ export default class JiaZai extends cc.Component {
|
|||
MiniGameSdk.API.showToast("关卡每周更新,敬请期待!");
|
||||
return;
|
||||
}
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 0, false);
|
||||
}
|
||||
else {
|
||||
cc.fx.AudioManager._instance.playEffect("zhuan1", null);
|
||||
|
|
@ -754,7 +754,7 @@ export default class JiaZai extends cc.Component {
|
|||
MiniGameSdk.API.showToast("关卡每周更新,敬请期待!");
|
||||
return;
|
||||
}
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 1000);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, false);
|
||||
}
|
||||
}
|
||||
else if (version == "正式版") {
|
||||
|
|
@ -766,7 +766,7 @@ export default class JiaZai extends cc.Component {
|
|||
this.node.getChildByName("zhuanchang").active = true;
|
||||
this.node.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false);
|
||||
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 1000);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, false);
|
||||
}
|
||||
else {
|
||||
if (this.custom.string != "") {
|
||||
|
|
@ -776,7 +776,7 @@ export default class JiaZai extends cc.Component {
|
|||
MiniGameSdk.API.showToast("关卡每周更新,敬请期待!");
|
||||
return;
|
||||
}
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 0, false);
|
||||
}
|
||||
else {
|
||||
cc.fx.AudioManager._instance.playEffect("zhuan1", null);
|
||||
|
|
@ -786,7 +786,7 @@ export default class JiaZai extends cc.Component {
|
|||
MiniGameSdk.API.showToast("关卡每周更新,敬请期待!");
|
||||
return;
|
||||
}
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 1000);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -158,6 +158,7 @@ export default class MapConroler extends cc.Component {
|
|||
hitSoundCount: number;
|
||||
hitSoundTime: number;
|
||||
hammerSpecial: boolean = false;
|
||||
changeColor: boolean = false; //是否是变色门关
|
||||
// mapInfo: number[][] = [];
|
||||
|
||||
onLoad() {
|
||||
|
|
@ -201,6 +202,7 @@ export default class MapConroler extends cc.Component {
|
|||
this.isreview = false;
|
||||
this.is_frenzy = false;
|
||||
this.hammerSpecial = false;
|
||||
this.changeColor = false;
|
||||
this.revolving_state = 0;
|
||||
this.hitSoundCount = 0;
|
||||
this.hitSoundTime = 0;
|
||||
|
|
@ -1497,7 +1499,7 @@ export default class MapConroler extends cc.Component {
|
|||
if (upWalls.length != 0) {
|
||||
let result = this.detectingBlock("up", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks);
|
||||
if (result == true) result = this.passWall(result, upWalls, node);
|
||||
// console.log("碰到上边缘结果:",result);
|
||||
// console.log("碰到上边缘结果:", result);
|
||||
if (result) {
|
||||
|
||||
this.blockNum -= 1;
|
||||
|
|
@ -1566,7 +1568,7 @@ export default class MapConroler extends cc.Component {
|
|||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
//console.log(wallArray[i].getChildByName("wall").getComponent("Wall").color,node.getComponent("Block").color)
|
||||
|
||||
if (wallArray[i].getComponent("Wall").color != node.getComponent("Block").color) {
|
||||
jg = false;
|
||||
return jg;
|
||||
|
|
@ -1588,9 +1590,11 @@ export default class MapConroler extends cc.Component {
|
|||
// const date8 = new Date().getTime();
|
||||
// console.log("检测颜色是否能够通过门",date8);
|
||||
|
||||
// if (jg == true) {
|
||||
// wallArray[0].getComponent("Wall").changeColorWall();
|
||||
// }
|
||||
if (jg == true) {
|
||||
if (wallArray[0].getComponent("Wall").colorArray.length > 0) {
|
||||
wallArray[0].getComponent("Wall").changeColorWall();
|
||||
}
|
||||
}
|
||||
return jg;
|
||||
}
|
||||
|
||||
|
|
@ -1979,7 +1983,7 @@ export default class MapConroler extends cc.Component {
|
|||
if (this.new_mode == 3) {
|
||||
this.node.parent.parent.getChildByName("Win").active = false;
|
||||
this.openNewMode(2);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(false, 0);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(false, 0, false);
|
||||
return;
|
||||
}
|
||||
if (this.new_item == 3) {
|
||||
|
|
@ -2003,7 +2007,7 @@ export default class MapConroler extends cc.Component {
|
|||
this.node.parent.parent.parent.getChildByName("zhuanchang").active = true;
|
||||
this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false);
|
||||
setTimeout(() => {
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 0);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 0, false);
|
||||
}, 1200);
|
||||
}
|
||||
}
|
||||
|
|
@ -2033,7 +2037,7 @@ export default class MapConroler extends cc.Component {
|
|||
// }
|
||||
// });
|
||||
setTimeout(() => {
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 0);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(true, 0, false);
|
||||
}, 1200);
|
||||
// this.node.parent.parent.parent.destroy();
|
||||
}
|
||||
|
|
@ -2260,7 +2264,7 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
// MiniGameSdk.API.showToast("体力值减少");
|
||||
MapConroler._instance = null;
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(false, 0);
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(false, 0, false);
|
||||
if (this.new_mode == 3) {
|
||||
this.node.parent.parent.getChildByName("Win").active = false;
|
||||
this.openNewMode(1);
|
||||
|
|
@ -3574,7 +3578,7 @@ export default class MapConroler extends cc.Component {
|
|||
predict_End() {
|
||||
//return true;
|
||||
// console.log("提前判断游戏结束");
|
||||
if (this.gameOver || this.gameWin) {
|
||||
if (this.gameOver || this.gameWin || this.changeColor) {
|
||||
return true;
|
||||
}
|
||||
let result = false;
|
||||
|
|
|
|||
|
|
@ -1292,7 +1292,7 @@ export namespace MiniGameSdk {
|
|||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
// console.log("设置用户注册属性");
|
||||
API._ta.userSet({ register_time: time });
|
||||
API._ta.userSet({ uid: cc.fx.GameConfig.GM_INFO.userId });
|
||||
API._ta.userSet({ uid: cc.fx.GameConfig.GM_INFO.userId.toString() });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,8 +25,7 @@ export enum WallSpecial {
|
|||
"旋转门逆时针" = 5,
|
||||
/*上锁门*/
|
||||
"上锁门" = 6,
|
||||
/*变色门*/
|
||||
"变色门" = 7,
|
||||
|
||||
}
|
||||
|
||||
export enum WallType {
|
||||
|
|
@ -70,6 +69,8 @@ export enum WallColor {
|
|||
"红色" = 8,
|
||||
/*普通地块 */
|
||||
"灰色" = 9,
|
||||
"暗" = 10,
|
||||
"默认色" = 11,
|
||||
}
|
||||
|
||||
@ccclass
|
||||
|
|
@ -96,6 +97,15 @@ export default class Wall extends cc.Component {
|
|||
})
|
||||
color: WallColor = WallColor.紫色;
|
||||
|
||||
@property(cc.Node)
|
||||
maskNode: cc.Node = null; // 遮罩节点
|
||||
|
||||
@property(cc.Float)
|
||||
maskWidth: number = 138; // 遮罩宽度
|
||||
|
||||
@property(cc.Float)
|
||||
maskHeight: number = 69; // 遮罩高度
|
||||
|
||||
@property(cc.SpriteAtlas)
|
||||
wall_SpriteFrames: cc.SpriteAtlas = null;
|
||||
|
||||
|
|
@ -119,6 +129,7 @@ export default class Wall extends cc.Component {
|
|||
num: number;
|
||||
leftTween: any;
|
||||
rightTween: any;
|
||||
colorArray: any;
|
||||
|
||||
|
||||
// LIFE-CYCLE CALLBACKS:
|
||||
|
|
@ -169,11 +180,16 @@ 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;
|
||||
let name2 = "rotate" + this.wall_Info.length;
|
||||
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);
|
||||
MapConroler._instance.changeColor = true;
|
||||
}
|
||||
if (this.revolvingNode) {
|
||||
this.revolvingNode.parent.zIndex = 999;
|
||||
this.revolvingNode.active = false;
|
||||
|
|
@ -211,7 +227,11 @@ export default class Wall extends cc.Component {
|
|||
double = 3;
|
||||
}
|
||||
|
||||
// debugger;
|
||||
// if (this.colorArray.length > 1) {
|
||||
// let firstItem = this.colorArray.shift(); // 移除第一项
|
||||
// this.colorArray.push(firstItem); // 将第一项添加到数组末尾
|
||||
// }
|
||||
|
||||
if (this.wall_SpriteFrames) {
|
||||
let name = this.color + "color" + (length + double);
|
||||
var spriteFrame = this.wall_SpriteFrames._spriteFrames[name];
|
||||
|
|
@ -302,26 +322,33 @@ export default class Wall extends cc.Component {
|
|||
}
|
||||
lock.getComponent("Lock").init(this.wall_Info.lockTime, "wall");
|
||||
break;
|
||||
case WallSpecial.变色门:
|
||||
let color = cc.instantiate(MapConroler._instance.Block_Prop[4]);
|
||||
color.parent = this.node.parent;
|
||||
if (this.wall_Info.length == 0) {
|
||||
color.opacity = 0;
|
||||
}
|
||||
color.scaleX = color.scaleY = 0.65;
|
||||
if (this.direction == "up") {
|
||||
color.setPosition((this.wall_Info.length - 1) * 60 - 10, 38);
|
||||
if (this.wall_Info.length == 1) color.x += 5;
|
||||
if (this.wall_Info.colorArray) {
|
||||
|
||||
if (this.wall_Info.length > 0) {
|
||||
this.maskNode.active = true;
|
||||
this.setMask();
|
||||
}
|
||||
else if (this.direction == "down") {
|
||||
color.setPosition((this.wall_Info.length - 1) * 60 - 10, -38);
|
||||
if (this.wall_Info.length == 1) color.x += 5;
|
||||
}
|
||||
if (this.direction == "right") {
|
||||
color.setPosition(30, (this.wall_Info.length - 1) * 60);
|
||||
}
|
||||
break;
|
||||
|
||||
// let color = cc.instantiate(MapConroler._instance.Block_Prop[4]);
|
||||
// color.parent = this.node.parent;
|
||||
// if (this.wall_Info.length == 0) {
|
||||
// color.opacity = 0;
|
||||
// }
|
||||
// color.scaleX = color.scaleY = 0.65;
|
||||
// if (this.direction == "up") {
|
||||
// color.setPosition((this.wall_Info.length - 1) * 60 - 10, 38);
|
||||
// if (this.wall_Info.length == 1) color.x += 5;
|
||||
// }
|
||||
// else if (this.direction == "down") {
|
||||
// color.setPosition((this.wall_Info.length - 1) * 60 - 10, -38);
|
||||
// if (this.wall_Info.length == 1) color.x += 5;
|
||||
// }
|
||||
// if (this.direction == "right") {
|
||||
// color.setPosition(30, (this.wall_Info.length - 1) * 60);
|
||||
// }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//播放星星门通过
|
||||
|
|
@ -344,7 +371,7 @@ export default class Wall extends cc.Component {
|
|||
//改变开关门状态
|
||||
changeLock() {
|
||||
this.open = !this.open;
|
||||
console.log("开关门状态改变", this.open);
|
||||
// console.log("开关门状态改变", this.open);
|
||||
if (!this.openNode.active) {
|
||||
this.openNode.active = true;
|
||||
}
|
||||
|
|
@ -396,7 +423,7 @@ export default class Wall extends cc.Component {
|
|||
changeFreeze() {
|
||||
this.freezeNumber -= 1;
|
||||
if (this.freezeNumber == 0) {
|
||||
console.log(this.node.uuid);
|
||||
// console.log(this.node.uuid);
|
||||
// this.freezeNode.parent.active = false;
|
||||
this.resetFreeze();
|
||||
}
|
||||
|
|
@ -423,6 +450,19 @@ export default class Wall extends cc.Component {
|
|||
this.node.parent.getChildByName("star").y -= 10;
|
||||
}
|
||||
this.node.parent.getChildByName("down").active = true;
|
||||
if (this.colorArray.length > 0) {
|
||||
let direction = this.node.parent.name;
|
||||
let double = 0;
|
||||
if (direction == "left" || direction == "right") {
|
||||
double = 3;
|
||||
}
|
||||
let color = this.colorArray[1];
|
||||
if (this.wall_SpriteFrames) {
|
||||
let name = color + "down" + (this.wall_Info.length + double);
|
||||
var spriteFrame = this.down_SpriteFrames._spriteFrames[name];
|
||||
this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite).spriteFrame = spriteFrame;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
upDoor() {
|
||||
|
|
@ -430,6 +470,20 @@ export default class Wall extends cc.Component {
|
|||
this.node.parent.getChildByName("star").y += 10;
|
||||
}
|
||||
this.node.parent.getChildByName("down").active = false;
|
||||
if (this.colorArray.length > 0) {
|
||||
let direction = this.node.parent.name;
|
||||
let double = 0;
|
||||
if (direction == "left" || direction == "right") {
|
||||
double = 3;
|
||||
}
|
||||
let color = this.colorArray[1];
|
||||
if (this.wall_SpriteFrames) {
|
||||
let name = color + "color" + (this.wall_Info.length + double);
|
||||
var spriteFrame = this.wall_SpriteFrames._spriteFrames[name];
|
||||
this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite).spriteFrame = spriteFrame;
|
||||
}
|
||||
}
|
||||
|
||||
this.node.opacity = 250;
|
||||
}
|
||||
|
||||
|
|
@ -461,14 +515,150 @@ export default class Wall extends cc.Component {
|
|||
}
|
||||
}
|
||||
|
||||
//变色门变色
|
||||
//变色门变色总方法
|
||||
changeColorWall() {
|
||||
// console.log("通过此门,调用次门数组", this.colorArray);
|
||||
// console.log("改變顏色:", this.wall_Info.length);
|
||||
// for (let i = 0; i < this.teamDoors.length; i++) {
|
||||
// setTimeout(() => {
|
||||
// this.teamDoors[i].changeColor();
|
||||
// }, i * 200);
|
||||
// }
|
||||
for (let i = 0; i < this.teamDoors.length; i++) {
|
||||
setTimeout(() => {
|
||||
this.teamDoors[i].changeColor();
|
||||
}, i * 10);
|
||||
}
|
||||
}
|
||||
|
||||
//变色门变色具体执行方法
|
||||
changeColor() {
|
||||
if (this.colorArray.length > 1) {
|
||||
let firstItem = this.colorArray.shift(); // 移除第一项
|
||||
this.colorArray.push(firstItem); // 将第一项添加到数组末尾
|
||||
}
|
||||
this.color = this.colorArray[0];
|
||||
// console.log("改變顏色", this.color, this.colorArray);
|
||||
// debugger;
|
||||
let direction = this.node.parent.name;
|
||||
let double = 0;
|
||||
if (direction == "left" || direction == "right") {
|
||||
double = 3;
|
||||
}
|
||||
|
||||
|
||||
if (this.wall_Info.length > 0) {
|
||||
this.upDoor();
|
||||
this.setMask();
|
||||
|
||||
if (this.wall_SpriteFrames) {
|
||||
let name = this.color + "color" + (this.wall_Info.length + double);
|
||||
// console.log("变色名称:", name);
|
||||
var spriteFrame = this.wall_SpriteFrames._spriteFrames[name];
|
||||
if (this.node.getComponent(cc.Sprite)) this.node.getComponent(cc.Sprite).spriteFrame = spriteFrame;
|
||||
if (this.node.getChildByName("icon")) this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame;
|
||||
this.node.getComponent(cc.Sprite).fillRange = 0;
|
||||
cc.tween(this.node.getComponent(cc.Sprite))
|
||||
.to(0.2, { fillRange: 1 })
|
||||
.start();
|
||||
|
||||
}
|
||||
if (this.down_SpriteFrames) {
|
||||
let name2 = this.color + "down" + (this.wall_Info.length + double);
|
||||
// console.log("按下名称:", name2);
|
||||
var downFrame = this.down_SpriteFrames._spriteFrames[name2];
|
||||
this.node.parent.getChildByName("down").getComponent(cc.Sprite).spriteFrame = downFrame;
|
||||
this.node.parent.getChildByName("down").getComponent(cc.Sprite).fillRange = 0;
|
||||
cc.tween(this.node.parent.getChildByName("down").getComponent(cc.Sprite))
|
||||
.to(0.2, { fillRange: 1 })
|
||||
.start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//添加遮罩
|
||||
setMask() {
|
||||
let direction = this.node.parent.name;
|
||||
let double = 0;
|
||||
if (direction == "left" || direction == "right") {
|
||||
double = 3;
|
||||
}
|
||||
let color = this.colorArray[1];
|
||||
if (this.wall_SpriteFrames) {
|
||||
let name = color + "color" + (this.wall_Info.length + double);
|
||||
var spriteFrame = this.wall_SpriteFrames._spriteFrames[name];
|
||||
this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite).spriteFrame = spriteFrame;
|
||||
this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite).fillRange = 0;
|
||||
cc.tween(this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite))
|
||||
.to(0.2, { fillRange: 1 })
|
||||
.start();
|
||||
}
|
||||
// 设置遮罩节点大小和位置
|
||||
if (this.node.parent.name == "down") {
|
||||
if (this.wall_Info.length == 3) {
|
||||
this.maskNode.width = 290;
|
||||
this.maskNode.height = 69;
|
||||
this.maskNode.position = cc.v3(116, -39, 0); // 居中
|
||||
}
|
||||
else if (this.wall_Info.length == 2) {
|
||||
this.maskNode.width = 178;
|
||||
this.maskNode.height = 69;
|
||||
this.maskNode.position = cc.v3(54, -39, 0); // 居中
|
||||
}
|
||||
else if (this.wall_Info.length == 1) {
|
||||
this.maskNode.width = 70;
|
||||
this.maskNode.height = 69;
|
||||
this.maskNode.position = cc.v3(-7, -39, 0); // 居中
|
||||
}
|
||||
}
|
||||
else if (this.node.parent.name == "up") {
|
||||
if (this.wall_Info.length == 3) {
|
||||
this.maskNode.width = 290;
|
||||
this.maskNode.height = 69;
|
||||
this.maskNode.position = cc.v3(116, 34, 0); // 居中
|
||||
}
|
||||
else if (this.wall_Info.length == 2) {
|
||||
this.maskNode.width = 178;
|
||||
this.maskNode.height = 69;
|
||||
this.maskNode.position = cc.v3(56, 34, 0); // 居中
|
||||
}
|
||||
else if (this.wall_Info.length == 1) {
|
||||
this.maskNode.width = 70;
|
||||
this.maskNode.height = 69;
|
||||
this.maskNode.position = cc.v3(-2.44, 34, 0); // 居中
|
||||
}
|
||||
}
|
||||
else if (this.node.parent.name == "right") {
|
||||
if (this.wall_Info.length == 3) {
|
||||
this.maskNode.width = 69;
|
||||
this.maskNode.height = 290;
|
||||
this.maskNode.position = cc.v3(37, 120, 0); // 居中
|
||||
}
|
||||
else if (this.wall_Info.length == 2) {
|
||||
this.maskNode.width = 69;
|
||||
this.maskNode.height = 178;
|
||||
this.maskNode.position = cc.v3(37, 60, 0); // 居中
|
||||
}
|
||||
else if (this.wall_Info.length == 1) {
|
||||
this.maskNode.width = 69;
|
||||
this.maskNode.height = 70;
|
||||
this.maskNode.position = cc.v3(37, 0, 0); // 居中
|
||||
this.maskNode.anchorY = 0.35;
|
||||
}
|
||||
}
|
||||
else if (this.node.parent.name == "left") {
|
||||
if (this.wall_Info.length == 3) {
|
||||
this.maskNode.width = 69;
|
||||
this.maskNode.height = 290;
|
||||
this.maskNode.position = cc.v3(-39.5, 120, 0); // 居中
|
||||
}
|
||||
else if (this.wall_Info.length == 2) {
|
||||
this.maskNode.width = 69;
|
||||
this.maskNode.height = 178;
|
||||
this.maskNode.position = cc.v3(-39.5, 60, 0); // 居中
|
||||
}
|
||||
else if (this.wall_Info.length == 1) {
|
||||
this.maskNode.width = 69;
|
||||
this.maskNode.height = 70;
|
||||
this.maskNode.position = cc.v3(-39.5, 0, 0); // 居中
|
||||
this.maskNode.anchorY = 0.35;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// update (dt) {}
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ export class GameConfig {
|
|||
this.TA = null;
|
||||
this.CLICK_init();
|
||||
this.GM_INFO_init();
|
||||
this.LEVEL_INFO_init(false, 0);
|
||||
this.LEVEL_INFO_init(false, 0, false);
|
||||
|
||||
var self = this;
|
||||
//GAME_DATA 废弃了,暂时不删除以防后面修改回 一整局传一次
|
||||
|
|
@ -316,7 +316,7 @@ export class GameConfig {
|
|||
}
|
||||
|
||||
|
||||
static LEVEL_INFO_init(type, time) {
|
||||
static LEVEL_INFO_init(type, time, otherLevel) {
|
||||
// 示例 围墙会根据缺的地块自动生成
|
||||
// 带缺口 {"id":"1006","map":[10,11],"gap":[cc.v2(4,9),cc.v2(5,9)]},
|
||||
// 带升降地块 {"id":"1004","map":[7,8],"risefall":[{pos:cc.v2(5,4),color:2},{pos:cc.v2(5,5),color:5}]},
|
||||
|
|
@ -324,7 +324,7 @@ export class GameConfig {
|
|||
var self = this;
|
||||
|
||||
|
||||
if (cc.fx.GameTool.maxLevel()) {
|
||||
if (cc.fx.GameTool.maxLevel() && otherLevel == false) {
|
||||
MiniGameSdk.API.showToast("关卡每周更新,敬请期待!");
|
||||
return;
|
||||
}
|
||||
|
|
@ -343,7 +343,7 @@ export class GameConfig {
|
|||
if (err) {
|
||||
console.log("没有这个关卡:", name);
|
||||
cc.fx.GameTool.addLevel(null, null);
|
||||
self.LEVEL_INFO_init(type, time);
|
||||
self.LEVEL_INFO_init(type, time, false);
|
||||
return;
|
||||
}
|
||||
let jsonData: object = res.json!;
|
||||
|
|
@ -364,34 +364,6 @@ export class GameConfig {
|
|||
});
|
||||
});
|
||||
|
||||
// //console.log("关卡名称:",name);
|
||||
// name = "Json/level" + 68;
|
||||
// cc.fx.StorageMessage.setStorage("level",cc.fx.GameConfig.GM_INFO.level.toString());
|
||||
// cc.resources.load(name, (err: any, res: cc.JsonAsset) => {
|
||||
// if (err) {
|
||||
// console.log("没有这个关卡:", name)
|
||||
// cc.fx.GameTool.addLevel(null, null);
|
||||
// self.LEVEL_INFO_init(type, time);
|
||||
// return;
|
||||
// }
|
||||
// let jsonData: object = res.json!;
|
||||
// self.BLOCK_INFO = jsonData["BLOCK_INFO"];
|
||||
// self.LEVEL_INFO = jsonData["LEVEL_INFO"];
|
||||
// self.WALL_INFO = jsonData["WALL_INFO"];
|
||||
// // //console.log("配置加载完成");
|
||||
// if (type) {
|
||||
// cc.director.preloadScene("GameScene", () => {
|
||||
// if (time == 0) cc.director.loadScene("GameScene");
|
||||
// else {
|
||||
// setTimeout(() => {
|
||||
// cc.director.loadScene("GameScene");
|
||||
// }, time);
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
|
||||
// })
|
||||
|
||||
|
||||
//道具位置信息
|
||||
this.PROP_INFO = [
|
||||
|
|
|
|||
|
|
@ -398,8 +398,8 @@ var GameTool = {
|
|||
//关卡上限
|
||||
maxLevel() {
|
||||
let jg = false;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 489) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 490;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 519) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 520;
|
||||
jg = true;
|
||||
}
|
||||
return jg;
|
||||
|
|
|
|||
441
assets/custom/Json/level491.json
Normal file
441
assets/custom/Json/level491.json
Normal file
|
|
@ -0,0 +1,441 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "491",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 135,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 10,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 14,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 14,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 14,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 14,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 14,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 14,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 492,
|
||||
"num": 1,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 493,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 494,
|
||||
"num": 3,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 495,
|
||||
"num": 4,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 496,
|
||||
"num": 5,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 497,
|
||||
"num": 23,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 498,
|
||||
"num": 24,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 499,
|
||||
"num": 25,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 500,
|
||||
"num": 21,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 501,
|
||||
"num": 22,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 18,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 8,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 9,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 11,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 17,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 16,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 10,
|
||||
"color": 9,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 12
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
398
assets/custom/Json/level492.json
Normal file
398
assets/custom/Json/level492.json
Normal file
|
|
@ -0,0 +1,398 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "492",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 120,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 3,
|
||||
"floorTime": 12,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 3,
|
||||
"floorTime": 12,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 3,
|
||||
"floorTime": 12,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 493,
|
||||
"num": 0,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 494,
|
||||
"num": 1,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 495,
|
||||
"num": 2,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 496,
|
||||
"num": 3,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 497,
|
||||
"num": 4,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 498,
|
||||
"num": 9,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 499,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 500,
|
||||
"num": 17,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 501,
|
||||
"num": 23,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 21,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 22,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 20,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 14,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 6,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 8,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
378
assets/custom/Json/level493.json
Normal file
378
assets/custom/Json/level493.json
Normal file
|
|
@ -0,0 +1,378 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "493",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 135,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 11,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 4,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 11,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 10,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 9,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 6,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 494,
|
||||
"num": 1,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 495,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 496,
|
||||
"num": 5,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 497,
|
||||
"num": 6,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 498,
|
||||
"num": 9,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 499,
|
||||
"num": 11,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 500,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 501,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 17,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 19,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 25,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 26,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 21,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 22,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 16,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 18,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 14,
|
||||
"color": 10,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 12,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 8,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
518
assets/custom/Json/level494.json
Normal file
518
assets/custom/Json/level494.json
Normal file
|
|
@ -0,0 +1,518 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "494",
|
||||
"map": [
|
||||
10,
|
||||
11
|
||||
],
|
||||
"time": 120,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 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": 8,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 10,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 13,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 18,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 495,
|
||||
"num": 0,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 496,
|
||||
"num": 1,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 497,
|
||||
"num": 5,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 498,
|
||||
"num": 6,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 499,
|
||||
"num": 7,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 500,
|
||||
"num": 8,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 501,
|
||||
"num": 16,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 18,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 30,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 31,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 28,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 29,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 32,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 33,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 17,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 19,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 13,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 15,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
371
assets/custom/Json/level495.json
Normal file
371
assets/custom/Json/level495.json
Normal file
|
|
@ -0,0 +1,371 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "495",
|
||||
"map": [
|
||||
7,
|
||||
11
|
||||
],
|
||||
"time": 125,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 10,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 6,
|
||||
"floor": 1,
|
||||
"floorTime": 10,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 10,
|
||||
"floor": 1,
|
||||
"floorTime": 10,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 496,
|
||||
"num": 2,
|
||||
"color": 7,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 497,
|
||||
"num": 3,
|
||||
"color": 7,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 498,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 499,
|
||||
"num": 5,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 500,
|
||||
"num": 6,
|
||||
"color": 1,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 501,
|
||||
"num": 7,
|
||||
"color": 1,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 12,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 14,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 16,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 25,
|
||||
"color": 3,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 26,
|
||||
"color": 3,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 23,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 24,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 22,
|
||||
"color": 6,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 17,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 9,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
343
assets/custom/Json/level496.json
Normal file
343
assets/custom/Json/level496.json
Normal file
|
|
@ -0,0 +1,343 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "496",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 105,
|
||||
"gap": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 22,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 10,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 7,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 10,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 340
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 497,
|
||||
"num": 0,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 498,
|
||||
"num": 1,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 499,
|
||||
"num": 2,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 500,
|
||||
"num": 7,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 501,
|
||||
"num": 11,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 13,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 17,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 19,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 24,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 25,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 23,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 12,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
344
assets/custom/Json/level497.json
Normal file
344
assets/custom/Json/level497.json
Normal file
|
|
@ -0,0 +1,344 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "497",
|
||||
"map": [
|
||||
7,
|
||||
11
|
||||
],
|
||||
"time": 80,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 3,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 7,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 7,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 7,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 13,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 13,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 6,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 15,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 498,
|
||||
"num": 2,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 499,
|
||||
"num": 3,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 500,
|
||||
"num": 5,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 501,
|
||||
"num": 6,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 12,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 16,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 25,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 26,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 22,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 23,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 17,
|
||||
"color": 9,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 8,
|
||||
"color": 5,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 13,
|
||||
"color": 3,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
407
assets/custom/Json/level498.json
Normal file
407
assets/custom/Json/level498.json
Normal file
|
|
@ -0,0 +1,407 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "498",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 80,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 14,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 14,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 17,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 17,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 9,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 5,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 499,
|
||||
"num": 0,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 500,
|
||||
"num": 1,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 501,
|
||||
"num": 2,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 3,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 4,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 5,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 11,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 13,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 22,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 23,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 20,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 12
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 21,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 12
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 18,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 19,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 14,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 16,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 10,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 12,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 6,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 8,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
424
assets/custom/Json/level499.json
Normal file
424
assets/custom/Json/level499.json
Normal file
|
|
@ -0,0 +1,424 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "499",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 100,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 500,
|
||||
"num": 0,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 501,
|
||||
"num": 1,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 2,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 3,
|
||||
"color": 7,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 4,
|
||||
"color": 7,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 12,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 14,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 16,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 26,
|
||||
"color": 3,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 27,
|
||||
"color": 3,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 23,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 24,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 25,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 15,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 13,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 11,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
375
assets/custom/Json/level500.json
Normal file
375
assets/custom/Json/level500.json
Normal file
|
|
@ -0,0 +1,375 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "500",
|
||||
"map": [
|
||||
7,
|
||||
11
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 15,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 15,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"floor": 1,
|
||||
"floorTime": 15,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 12,
|
||||
"floor": 1,
|
||||
"floorTime": 15,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 10,
|
||||
"id": 380
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 501,
|
||||
"num": 1,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 502,
|
||||
"num": 2,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 4,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 5,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 12,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 14,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 16,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 18,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 14
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 24,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 25,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 19,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 20,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 21,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 17,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 11,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 13,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 8,
|
||||
"color": 5,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 5
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
537
assets/custom/Json/level501.json
Normal file
537
assets/custom/Json/level501.json
Normal file
|
|
@ -0,0 +1,537 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "501",
|
||||
"map": [
|
||||
10,
|
||||
13
|
||||
],
|
||||
"time": 155,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 11,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 11,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 11,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 11,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 18,
|
||||
"color": 3,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 6,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 18,
|
||||
"color": 5,
|
||||
"type": 12,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime2": 6,
|
||||
"id": 460
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 502,
|
||||
"num": 0,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 503,
|
||||
"num": 1,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 2,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 4,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 5,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 6,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 16,
|
||||
"color": 7,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 22,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 15
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 36,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 37,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 34,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 35,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 31,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 32,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 33,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 19,
|
||||
"color": 9,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 21,
|
||||
"color": 9,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 17,
|
||||
"color": 1,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
509
assets/custom/Json/level502.json
Normal file
509
assets/custom/Json/level502.json
Normal file
|
|
@ -0,0 +1,509 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "502",
|
||||
"map": [
|
||||
10,
|
||||
12
|
||||
],
|
||||
"time": 155,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 9,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 5,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 7,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 12,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime2": 5,
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 5,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 10,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 13,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 490
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 500
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 510
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 520
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 503,
|
||||
"num": 1,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 504,
|
||||
"num": 2,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 5,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 6,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 8,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 17,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 19,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 21,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 35,
|
||||
"color": 8,
|
||||
"special": 4,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 32,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 33,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 28,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 29,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 20,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 14,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
392
assets/custom/Json/level503.json
Normal file
392
assets/custom/Json/level503.json
Normal file
|
|
@ -0,0 +1,392 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "503",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 100,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 18,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 3,
|
||||
"floor": 1,
|
||||
"floorTime": 15,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 20,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 410
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 504,
|
||||
"num": 0,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 505,
|
||||
"num": 1,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 2,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 3,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 4,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 9,
|
||||
"color": 1,
|
||||
"special": 5,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 13,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 17,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 22,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 23,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 24,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 20,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 14,
|
||||
"color": 2,
|
||||
"special": 5,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 16,
|
||||
"color": 2,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 8,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 10,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
404
assets/custom/Json/level504.json
Normal file
404
assets/custom/Json/level504.json
Normal file
|
|
@ -0,0 +1,404 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "504",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 130,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 10,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 3,
|
||||
"floorTime": 13,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 4,
|
||||
"floorTime": 20,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 4,
|
||||
"floorTime": 20,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 3,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 3,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 505,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 506,
|
||||
"num": 5,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 6,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 7,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 9,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 13,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 15,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 17,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 25,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 26,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 27,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 22,
|
||||
"color": 7,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 16,
|
||||
"color": 5,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": false
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 18,
|
||||
"color": 5,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": false
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 12,
|
||||
"color": 3,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": false
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 14,
|
||||
"color": 3,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": false
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 8,
|
||||
"color": 4,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": false
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 10,
|
||||
"color": 4,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": false
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
445
assets/custom/Json/level505.json
Normal file
445
assets/custom/Json/level505.json
Normal file
|
|
@ -0,0 +1,445 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "505",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 180,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 11,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 11,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 11,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 11,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 7,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 10,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 2,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 3,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 506,
|
||||
"num": 0,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 507,
|
||||
"num": 1,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 2,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 3,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 4,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 5,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 7,
|
||||
"color": 3,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 9,
|
||||
"color": 3,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 17,
|
||||
"color": 1,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 19,
|
||||
"color": 1,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 23,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 24,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 25,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 20,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 21,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 22,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 16,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 18,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 6,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 8,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 5
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
488
assets/custom/Json/level506.json
Normal file
488
assets/custom/Json/level506.json
Normal file
|
|
@ -0,0 +1,488 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "506",
|
||||
"map": [
|
||||
11,
|
||||
9
|
||||
],
|
||||
"time": 125,
|
||||
"gap": [
|
||||
{
|
||||
"x": 4,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 2,
|
||||
"floorTime": 10,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 2,
|
||||
"floorTime": 10,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 3,
|
||||
"floorTime": 13,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 3,
|
||||
"floorTime": 13,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 18,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 450
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 507,
|
||||
"num": 1,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 508,
|
||||
"num": 2,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 4,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 5,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 10,
|
||||
"color": 10,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 12,
|
||||
"color": 10,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 18,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 24,
|
||||
"color": 9,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 26,
|
||||
"color": 9,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 33,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 34,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 30,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 31,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 23,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 25,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 27,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 7,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 9,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 11,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
478
assets/custom/Json/level507.json
Normal file
478
assets/custom/Json/level507.json
Normal file
|
|
@ -0,0 +1,478 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "507",
|
||||
"map": [
|
||||
9,
|
||||
10
|
||||
],
|
||||
"time": 125,
|
||||
"gap": [
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 11,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 11,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 11,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 11,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 11,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 11,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 16,
|
||||
"color": 5,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 6,
|
||||
"id": 470
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 508,
|
||||
"num": 1,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 509,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 5,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 6,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 9,
|
||||
"color": 3,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 6
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 11,
|
||||
"color": 3,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 6
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 17,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 26,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 27,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 28,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 18,
|
||||
"color": 1,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 9
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 22,
|
||||
"color": 1,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 9
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 14,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 16,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 10,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 15
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 12,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 15
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
348
assets/custom/Json/level508.json
Normal file
348
assets/custom/Json/level508.json
Normal file
|
|
@ -0,0 +1,348 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "508",
|
||||
"map": [
|
||||
6,
|
||||
10
|
||||
],
|
||||
"time": 90,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 3,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 10,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 10,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 10,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 10,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 370
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 509,
|
||||
"num": 1,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 510,
|
||||
"num": 2,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 5,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 6,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 9,
|
||||
"color": 10,
|
||||
"special": 5,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 11,
|
||||
"color": 10,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 13,
|
||||
"color": 6,
|
||||
"special": 5,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 15,
|
||||
"color": 6,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 21,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 22,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 19,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 20,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 17,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 18,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 14,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 526,
|
||||
"num": 8,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
522
assets/custom/Json/level509.json
Normal file
522
assets/custom/Json/level509.json
Normal file
|
|
@ -0,0 +1,522 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "509",
|
||||
"map": [
|
||||
11,
|
||||
9
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 16,
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 490
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 510,
|
||||
"num": 1,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 511,
|
||||
"num": 2,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 8,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 10,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 12,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 20,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 22,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 28,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 30,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 31,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 17,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 19,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 21,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 9,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 13,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
384
assets/custom/Json/level510.json
Normal file
384
assets/custom/Json/level510.json
Normal file
|
|
@ -0,0 +1,384 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "510",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 125,
|
||||
"gap": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 12,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 12,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 3,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 2,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 5,
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 511,
|
||||
"num": 1,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 512,
|
||||
"num": 2,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 4,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 5,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 9,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 11,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 19,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 26,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 27,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 23,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 24,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 18,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 10,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
307
assets/custom/Json/level511.json
Normal file
307
assets/custom/Json/level511.json
Normal file
|
|
@ -0,0 +1,307 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "511",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 65,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"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": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 6,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 13,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 9,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 512,
|
||||
"num": 12,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "428176"
|
||||
},
|
||||
{
|
||||
"id": 513,
|
||||
"num": 14,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "428176"
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 16,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "428176"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
324
assets/custom/Json/level512.json
Normal file
324
assets/custom/Json/level512.json
Normal file
|
|
@ -0,0 +1,324 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "512",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 85,
|
||||
"gap": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 14,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 15,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 513,
|
||||
"num": 2,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "36594"
|
||||
},
|
||||
{
|
||||
"id": 514,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "36594"
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 4,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "36594"
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 31,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "20817"
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 32,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "20817"
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 33,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "20817"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
305
assets/custom/Json/level513.json
Normal file
305
assets/custom/Json/level513.json
Normal file
|
|
@ -0,0 +1,305 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "513",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 90,
|
||||
"gap": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 380
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 514,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "84017"
|
||||
},
|
||||
{
|
||||
"id": 515,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "84017"
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 30,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "26593"
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 31,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "26593"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
342
assets/custom/Json/level514.json
Normal file
342
assets/custom/Json/level514.json
Normal file
|
|
@ -0,0 +1,342 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "514",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 120,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 10,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 410
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 515,
|
||||
"num": 11,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "31"
|
||||
},
|
||||
{
|
||||
"id": 516,
|
||||
"num": 13,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "31"
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 20,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "50"
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "50"
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 22,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "50"
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 10,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "74"
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 12,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "74"
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 0,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 2,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 5,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
247
assets/custom/Json/level515.json
Normal file
247
assets/custom/Json/level515.json
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "515",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 100,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 12,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 25,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 13,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 9,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 516,
|
||||
"num": 10,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "8402176593"
|
||||
},
|
||||
{
|
||||
"id": 517,
|
||||
"num": 12,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "8402176593"
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 14,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "8402176593"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
364
assets/custom/Json/level516.json
Normal file
364
assets/custom/Json/level516.json
Normal file
|
|
@ -0,0 +1,364 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "516",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 100,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 10,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 17,
|
||||
"color": 7,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 517,
|
||||
"num": 0,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "38"
|
||||
},
|
||||
{
|
||||
"id": 518,
|
||||
"num": 1,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "38"
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 11,
|
||||
"color": 3,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 13,
|
||||
"color": 3,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 17,
|
||||
"color": 8,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 23,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 12,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 14,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 526,
|
||||
"num": 3,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "506"
|
||||
},
|
||||
{
|
||||
"id": 527,
|
||||
"num": 4,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "506"
|
||||
},
|
||||
{
|
||||
"id": 528,
|
||||
"num": 5,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "506"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
326
assets/custom/Json/level517.json
Normal file
326
assets/custom/Json/level517.json
Normal file
|
|
@ -0,0 +1,326 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "517",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 180,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 10,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 7,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 518,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "14"
|
||||
},
|
||||
{
|
||||
"id": 519,
|
||||
"num": 11,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "83"
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 13,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "83"
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 15,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "83"
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 22,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "70"
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 10,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "29"
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 12,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "29"
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 14,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "29"
|
||||
},
|
||||
{
|
||||
"id": 526,
|
||||
"num": 5,
|
||||
"color": 6,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 527,
|
||||
"num": 25,
|
||||
"color": 7,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
333
assets/custom/Json/level518.json
Normal file
333
assets/custom/Json/level518.json
Normal file
|
|
@ -0,0 +1,333 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "518",
|
||||
"map": [
|
||||
7,
|
||||
11
|
||||
],
|
||||
"time": 105,
|
||||
"gap": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 18,
|
||||
"color": 6,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 7,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 519,
|
||||
"num": 11,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "4588"
|
||||
},
|
||||
{
|
||||
"id": 520,
|
||||
"num": 14,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "4588"
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 17,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "4588"
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 10,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "79"
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 1,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 4,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 526,
|
||||
"num": 5,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 527,
|
||||
"num": 25,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 528,
|
||||
"num": 26,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 529,
|
||||
"num": 22,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 530,
|
||||
"num": 23,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
397
assets/custom/Json/level519.json
Normal file
397
assets/custom/Json/level519.json
Normal file
|
|
@ -0,0 +1,397 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "519",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 90,
|
||||
"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": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 10,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 520,
|
||||
"num": 1,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "28"
|
||||
},
|
||||
{
|
||||
"id": 521,
|
||||
"num": 2,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "28"
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 3,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "28"
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "37"
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 17,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "37"
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 29,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "54"
|
||||
},
|
||||
{
|
||||
"id": 526,
|
||||
"num": 30,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "54"
|
||||
},
|
||||
{
|
||||
"id": 527,
|
||||
"num": 31,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "54"
|
||||
},
|
||||
{
|
||||
"id": 528,
|
||||
"num": 18,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "06"
|
||||
},
|
||||
{
|
||||
"id": 529,
|
||||
"num": 21,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "06"
|
||||
},
|
||||
{
|
||||
"id": 530,
|
||||
"num": 4,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "91"
|
||||
},
|
||||
{
|
||||
"id": 531,
|
||||
"num": 11,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "91"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
347
assets/custom/Json/level520.json
Normal file
347
assets/custom/Json/level520.json
Normal file
|
|
@ -0,0 +1,347 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "520",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 105,
|
||||
"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
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 3,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 5,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 6,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 521,
|
||||
"num": 11,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "46"
|
||||
},
|
||||
{
|
||||
"id": 522,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "46"
|
||||
},
|
||||
{
|
||||
"id": 523,
|
||||
"num": 15,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "46"
|
||||
},
|
||||
{
|
||||
"id": 524,
|
||||
"num": 17,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "28"
|
||||
},
|
||||
{
|
||||
"id": 525,
|
||||
"num": 0,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 526,
|
||||
"num": 1,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 527,
|
||||
"num": 3,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 528,
|
||||
"num": 4,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 529,
|
||||
"num": 25,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 530,
|
||||
"num": 26,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 531,
|
||||
"num": 22,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 15
|
||||
},
|
||||
{
|
||||
"id": 532,
|
||||
"num": 23,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 15
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"last-module-event-record-time": 1759998537067,
|
||||
"last-module-event-record-time": 1760668791397,
|
||||
"group-list": [
|
||||
"default",
|
||||
"Map"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user