更新UI道具图片

This commit is contained in:
COMPUTER\EDY 2025-12-31 16:13:21 +08:00
parent cf14a9fd7f
commit 1eece8e731
215 changed files with 19389 additions and 5027 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 244 KiB

After

Width:  |  Height:  |  Size: 220 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -41,6 +41,8 @@ export enum BlockType {
"消除炸弹块" = 17,
/*可移动地板块*/
"可移动地板块" = 18,
/*三连粘合块*/
"三连粘合块" = 19,
}
@ -227,7 +229,6 @@ export default class Block extends cc.Component {
this.node.x - this.block_Info.node.x,
this.node.y - this.block_Info.node.y
);
const targetNames = ['top', 'down', 'left', 'right'];
this.block_Info.node.children.forEach(child => {
if (child instanceof cc.Node && targetNames.includes(child.name) && child.getComponent("lq_collide").data_string != "-1") {
@ -252,6 +253,9 @@ export default class Block extends cc.Component {
}
this.adhesive = posOffset;
}
else if (this.type == BlockType.) {
}
}, 100);
@ -292,9 +296,6 @@ export default class Block extends cc.Component {
if (block_Info.floor && block_Info.floorTime) {
this.setFloor();
}
if (block_Info.moveFloor && block_Info.moveFloorTime) {
this.setFloor();
}
}
@ -418,19 +419,8 @@ export default class Block extends cc.Component {
question.getChildByName("time").setPosition(posConfig.pos5.x - 10 - freezeX2, posConfig.pos5.y - 2 - freezeY2);
break;
}
//暂时注销开关块
//开关,后添加兼容其他类型
if (this.block_Info.lock != undefined && this.block_Info.lock != null) {
// let lock = cc.instantiate(MapConroler._instance.Block_Prop[3]);
// lock.parent = this.node;
// if (this.block_Info.lock == true) {
// lock.color = cc.color(0, 0, 0);
// }
// else {
// lock.color = cc.color(0, 200, 255);
// }
// lock.setPosition(posConfig.pos1.x, posConfig.pos1.y);
// lock.getComponent("Lock").init(this.block_Info.lockTime, "block");
let switchs = cc.instantiate(MapConroler._instance.Block_Prop[14]);
switchs.parent = this.node;
switchs.opacity = this.block_Info.lock == true ? 100 : 0;
@ -447,6 +437,7 @@ export default class Block extends cc.Component {
else switchs.setPosition(swtichsX, swtichsY);
switchs.getComponent("Switchs").init(this.block_Info.swichs);
}
}
//初始化方块颜色
@ -780,6 +771,7 @@ export default class Block extends cc.Component {
this.node.active = false;
this.node.removeFromParent();
setTimeout(() => {
if (MapConroler._instance) {
if (MapConroler._instance.blockNum != 0 && (MapConroler._instance.openWall.length > 0 ||
MapConroler._instance.revolving_state != 0 || MapConroler._instance.longAndShortWall.length > 0)
&& !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) {
@ -796,6 +788,8 @@ export default class Block extends cc.Component {
MapConroler._instance.failLevel("rotate");
}
}
}
}, 500);
// this.node.active = false;
@ -815,8 +809,10 @@ export default class Block extends cc.Component {
return;
}
if (this.block_Info.floor) {
if (this.block_Info.floorMove == false) {
return;
}
}
// 判断触摸点是否在多边形内
if (cc.Intersection.pointInPolygon(touchLoc, this.collider.world.points)) {
if (MapConroler._instance.hammer) {
@ -859,10 +855,18 @@ export default class Block extends cc.Component {
if (this.block_Info.node) {
this.block_Info.node.zIndex = 200;
this.block_Info.node.getComponent("Block").hit.active = true;
if (this.block_Info.floor) {
if (this.block_Info.floorMove == true) {
this.block_Info.node.getComponent("Block").hit.active = false;
}
}
// this.block_Info.node.getComponent("Block").isTouch = true;
if (this.block_Info.floor == undefined) {
MapConroler._instance.downDoor(this.block_Info.node.getComponent("Block").color, this.block_Info.node.getComponent("Block").type);
MapConroler._instance.changeRiseFall(this.block_Info.node.getComponent("Block").color, true);
}
}
}
else if (this.type == 1) {
this.block_Info.node.getComponent("Block").moveStack = true;
@ -876,8 +880,10 @@ export default class Block extends cc.Component {
this.isTouch = true;
this.moveCorner = 0;
this.relative_Position = cc.v2(this.node.x - local.x, this.node.y - local.y);
if (this.block_Info.floor == undefined) {
MapConroler._instance.changeRiseFall(this.color, true);
MapConroler._instance.downDoor(this.color, this.type);
}
this.setVibrate("light", 1)
if (this.hit) this.hit.active = true;
return true;
@ -1083,6 +1089,7 @@ export default class Block extends cc.Component {
this.node.removeFromParent();
MapConroler._instance.checkColor(colorTemp, true, this.node);
setTimeout(() => {
if (MapConroler._instance) {
if (MapConroler._instance.blockNum != 0 && (MapConroler._instance.openWall.length > 0 ||
MapConroler._instance.revolving_state != 0 || MapConroler._instance.longAndShortWall.length > 0)
&& !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) {
@ -1099,6 +1106,7 @@ export default class Block extends cc.Component {
MapConroler._instance.failLevel("rotate");
}
}
}
}, 900);
MapConroler._instance.ismagic = false;
@ -2011,6 +2019,11 @@ export default class Block extends cc.Component {
this.node.getChildByName("icon").active = false;
for (let i = 0; i < this.allBlocks.length; i++) {
let floor = cc.instantiate(MapConroler._instance.Block_Prop[11]);
if (this.block_Info.floorMove != undefined) {
if (this.block_Info.floorMove == true) {
floor = cc.instantiate(MapConroler._instance.Block_Prop[15]);
}
}
floor.parent = this.node;
floor.zIndex = 999;
let floorX = - 65 + 120 * this.allBlocks[i].x; let floorY = 60 + 120 * this.allBlocks[i].y;
@ -2055,6 +2068,10 @@ export default class Block extends cc.Component {
}
}
//射手:后裔伽罗萌芽
//辅助:
//打野:赵云,凯,(练一个猴)
//对抗:
//魔法棒道具使用,动画

View File

@ -1525,6 +1525,13 @@ export default class JiaZai extends cc.Component {
}
else {
var timeTemp = cc.fx.GameTool.getTimeMargin2(time);
// 计算小时数
let hours = Math.floor(Math.floor(time) / 3600);
if (hours >= 24) {
let days = Math.floor(hours / 24);
let remainingHours = hours % 24;
timeTemp = days + "天" + remainingHours + "小时";
}
this.Stamina.parent.getChildByName("xinshou").getChildByName("time").getComponent(cc.Label)
.string = timeTemp;
if (this.actionpNode) {
@ -2526,9 +2533,9 @@ export default class JiaZai extends cc.Component {
rankData: JSON.parse(JSON.stringify(rankData)),
topData: JSON.parse(JSON.stringify(topData))
}
// console.log("自己的addLevel", cc.fx.GameConfig.GM_INFO.addLevel);
console.log("自己的addLevel", cc.fx.GameConfig.GM_INFO.addLevel);
if (cc.fx.GameConfig.GM_INFO.addLevel > 4) {
// console.log("______________自己入职了");
console.log("______________自己入职了");
this.addSelfToRank(rankData);
}
for (let i = 0; i < rankData.length; i++) {

View File

@ -1376,7 +1376,6 @@ export default class MapConroler extends cc.Component {
this.riseFallBlcok[i].getChildByName("riseup").active = true;
}
}
}
}
@ -1495,8 +1494,9 @@ export default class MapConroler extends cc.Component {
node.getComponent("Block").block_Info.lock = null;
}
this.blockNum -= 1;
this.special_Treatment(node, true, false);
this.changeBoom(node);
this.special_Treatment(node, true, false);
jg = 2;
this.createParticle(node, jg);
return jg;
@ -1531,8 +1531,9 @@ export default class MapConroler extends cc.Component {
node.getComponent("Block").block_Info.lock = null;
}
this.blockNum -= 1;
this.special_Treatment(node, true, false);
this.changeBoom(node);
this.special_Treatment(node, true, false);
jg = 3;
this.createParticle(node, jg);
return jg;
@ -1570,8 +1571,9 @@ export default class MapConroler extends cc.Component {
node.getComponent("Block").block_Info.lock = null;
}
this.blockNum -= 1;
this.special_Treatment(node, true, false);
this.changeBoom(node);
this.special_Treatment(node, true, false);
jg = 1;
this.createParticle(node, jg);
return jg;
@ -1608,8 +1610,9 @@ export default class MapConroler extends cc.Component {
node.getComponent("Block").block_Info.lock = null;
}
this.blockNum -= 1;
this.special_Treatment(node, true, false);
this.changeBoom(node);
this.special_Treatment(node, true, false);
jg = 0;
this.createParticle(node, jg);
return jg;
@ -1836,10 +1839,10 @@ export default class MapConroler extends cc.Component {
}
//是变色门关卡,并且消除的块是当前颜色最后一个,对变色门中该颜色做消除处理 3 1 2 4 5 6
console.log("调用一次删除方法");
// console.log("调用一次删除方法");
if (colorOver == true && colorArray.length > 0) {
for (let j = 0; j < colorArray.length; j++) {
console.log("执行删除下去", j);
// console.log("执行删除下去", j);
colorArray[j].removeColor(colorTemp, type);
}
} else {
@ -4234,7 +4237,7 @@ export default class MapConroler extends cc.Component {
}
let result = false;
let colorOver = true;
let openResult = true;
let openResult = 0; //0为没有开关门1为有开关门门开着2为没有开关门门关着
for (let i = 0; i < this.blocks.length; i++) {
let color = this.blocks[i].getComponent("Block").color;
//确保方块是可移动状态下再做判断
@ -4258,17 +4261,20 @@ export default class MapConroler extends cc.Component {
}
else {
if (this.wall_Pass[j].special == 2) {
console.log("______开关门进行判断");
if (this.wall_Pass[j].open == true) {
console.log("开关门并且开着");
openResult = 1;
console.log("______开关门并且开着");
result = this.blockCanPass(this.blocks[i], this.wall_Pass[j]);
if (result == true)
return result;
}
else {
openResult = 2;
if (this.blockCanPass(this.blocks[i], this.wall_Pass[j])) {
openResult = false;
openResult = 1;
}
console.log("开关门并且关着,________不可通行");
console.log("______开关门并且关着,________不可通行");
continue;
}
}
@ -4290,9 +4296,9 @@ export default class MapConroler extends cc.Component {
}
}
}
console.log("初步判断 游戏结束结果", result);
//如果变色门是打开状态,且当前颜色是最后一个颜色,那么游戏结束
if (openResult == true && this.changeColor == true) {
if (openResult != 1 && this.changeColor == true && this.longAndShortWall.length == 0) {
result = true;
}
return result;

View File

@ -25,10 +25,22 @@ export default class NewClass extends cc.Component {
// onLoad () {}
start() {
// console.log(cc.fx.GameConfig.GM_INFO.level, "新模式");
for (let i = 0; i < cc.fx.GameConfig.NEW_LEVEL.length; i++) {
if ((cc.fx.GameConfig.GM_INFO.level + 1) == cc.fx.GameConfig.NEW_LEVEL[i].level) {
this.propName = cc.fx.GameConfig.NEW_LEVEL[i].name;
const path = 'Window_Prop/' + this.propName;
if (i == 6 || (i < 11 && i > 7))
this.node.getChildByName("newmode").getChildByName("icon").y = 155
else
this.node.getChildByName("newmode").getChildByName("icon").y = 100
if (i > 10)
this.node.getChildByName("newmode").getChildByName("light").y = 140
else
this.node.getChildByName("newmode").getChildByName("light").y = -72
cc.resources.load(path, cc.SpriteFrame, (err, spriteFrame: cc.SpriteFrame) => {
if (err) {
console.error('动态加载背景图失败:', err);

View File

@ -453,6 +453,9 @@ export default class Wall extends cc.Component {
return;
}
if (this.node.parent.getChildByName("down").getComponent(cc.Sprite).spriteFrame == null)
return;
this.node.opacity = 0;
if (this.special == WallSpecial.) {
this.node.parent.getChildByName("star").y -= 10;
@ -575,7 +578,7 @@ export default class Wall extends cc.Component {
if (this.colorArray.length > 1) {
let index = this.colorArray.indexOf(color);
if (index !== -1) {
console.log("删除颜色:", color, this.colorArray);
// console.log("删除颜色:", color, this.colorArray);
this.colorArray.splice(index, 1);
if (this.colorArray.length <= 2) {
for (let i = 0; i < this.colorStartArray.length; i++) {
@ -628,7 +631,7 @@ export default class Wall extends cc.Component {
//变色门删除颜色, 第一个参数为颜色,第二个参数为是否立刻刷新颜色, 第三个参数为是否删除起始颜色
removeColor(color, type) {
console.log("整体删除颜色");
// console.log("整体删除颜色");
if (this.colorStartArray.length > 1) {
let index = this.colorStartArray.indexOf(color);
if (index !== -1) {
@ -636,23 +639,22 @@ export default class Wall extends cc.Component {
}
}
if (this.colorArray.length > 1) {
let index = this.colorArray.indexOf(color);
if (index !== -1) {
console.log("删除方法中,该墙体有该颜色")
this.colorArray.splice(index, 1);
for (let j = 0; j < this.colorArray.length; j++) {
if (this.colorArray[j] == color) {
this.colorArray.splice(j, 1);
// console.log("删除方法中,该墙体有该颜色", j)
j--;
}
}
if (this.colorArray.length <= 2) {
for (let i = 0; i < this.colorStartArray.length; i++) {
this.colorArray.push(this.colorStartArray[i]);
console.log("将颜色放入数组:", this.colorStartArray[i])
// console.log("将颜色放入数组:", this.colorStartArray[i])
}
}
if (type == true) this.updateColor();
}
else {
console.log("删除方法中,该墙体没有该颜色");
}
}
console.log(this.wall_Info.length, "删除颜色:", color, "删除后数组:", this.colorArray, "删除起始颜色:", this.colorStartArray);
// console.log(this.wall_Info.length, "删除颜色:", color, "删除后数组:", this.colorArray, "删除起始颜色:", this.colorStartArray);
}
//添加变色门遮罩
@ -800,16 +802,24 @@ export default class Wall extends cc.Component {
}
else if (MapConroler._instance.teamDoors[0].longAndShort[0] == 1) {
start = MapConroler._instance.teamDoors[2];
over = MapConroler._instance.teamDoors[0];
end = MapConroler._instance.teamDoors[1];
over = MapConroler._instance.teamDoors[1];
end = MapConroler._instance.teamDoors[0];
}
}
}
}
// console.log("数组长度:", MapConroler._instance.teamDoors.length);
start.runLongAndShort(true);
if (over) over.runLongAndShort(false);
if (end) end.runLongAndShort(false);
start.runLongAndShort(0);
if (end == null) {
if (over) over.runLongAndShort(2);
}
else {
if (over) over.runLongAndShort(1);
if (end) end.runLongAndShort(3);
}
//下一帧执行
}
//长短门改变变化
@ -818,19 +828,59 @@ export default class Wall extends cc.Component {
//顺向的, 在第一个。
// console.log("执行:", this.longAndShort[0], this.longAndShort[1]);
this.length = this.longAndShort[0];
if (type == true) {
if (type == 0) {
// this.length = this.longAndShort[0];
console.log(this.wall_Info.num, "实际长度:", this.length, "本身长度:", this.wall_Info.length);
// console.log(this.wall_Info.num, "实际长度:", this.length, "本身长度:", this.wall_Info.length);
if (this.wall_Info.length == this.length) {
if (this.teamDoors[1].node.getComponent(cc.Sprite)) this.teamDoors[1].node.getComponent(cc.Sprite).spriteFrame = null;
if (this.teamDoors[1].node.getChildByName("icon")) this.teamDoors[1].node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = null;
this.node.parent.getChildByName("down").getComponent(cc.Sprite).spriteFrame = null;
}
this.initColor(this.longAndShort[0]);
}
else {
console.log(this.wall_Info.num, "隐身", "实际长度:", this.length, "本身长度:", this.wall_Info.length);
else if (type == 1) {
// console.log(this.wall_Info.num, "隐身", "实际长度:", this.length, "本身长度:", this.wall_Info.length);
this.node.getComponent(cc.Sprite).spriteFrame = null;
this.node.parent.getChildByName("down").getComponent(cc.Sprite).spriteFrame = null;
this.node.parent.getChildByName("length").active = true;
}
if (type == true) {
else if (type == 2 || type == 3) {
// console.log(this.wall_Info.num, "隐身", "实际长度:", this.length, "本身长度:", this.wall_Info.length);
this.node.getComponent(cc.Sprite).spriteFrame = null;
let name = "";
if (this.node.parent.name == "down" || this.node.parent.name == "up") name = "heng";
else name = "shu";
name = name + (2 * (type - 1));
if (this.node.parent.name == "down" && this.teamDoors[0].order == false) {
if (name == "heng2") name = "heng1";
else if (name == "heng4") name = "heng3";
}
else if (this.node.parent.name == "up" && this.teamDoors[0].order == false) {
if (name == "heng2") name = "heng1";
else if (name == "heng4") name = "heng3";
}
else if (this.node.parent.name == "left" && this.teamDoors[0].order == true) {
if (name == "shu2") name = "shu1";
else if (name == "shu4") name = "shu3";
}
else if (this.node.parent.name == "right" && this.teamDoors[0].order == true) {
if (name == "shu2") name = "shu1";
else if (name == "shu4") name = "shu3";
}
console.log("墻體名字:", name, this.node.name, this.node.parent.name, this.teamDoors[0].order);
var spriteFrame = this.wall_SpriteFrames._spriteFrames[name];
if (this.node.getComponent(cc.Sprite)) this.node.getComponent(cc.Sprite).spriteFrame = spriteFrame;
// this.node.parent.getChildByName("down").getComponent(cc.Sprite).spriteFrame = spriteFrame;
// if (this.node.getChildByName("icon")) this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame;
// this.node.parent.getChildByName("down").getComponent(cc.Sprite).spriteFrame = null;
this.node.parent.getChildByName("length").active = true;
}
if (type == 0) {
setTimeout(() => {
for (let k = 0; k < this.teamDoors.length; k++) {
this.teamDoors[k].longAndShort.reverse();
@ -856,7 +906,8 @@ export default class Wall extends cc.Component {
end = this.teamDoors[1];
}
if (this.teamDoors[0].length == 2 && this.teamDoors[0].longAndShort[0] == 1) {
end = this.teamDoors[1];
// end = this.teamDoors[1];
end = null;
}
if (this.teamDoors[0].longAndShort[0] == this.teamDoors[0].wall_Info.length) {
over = null;
@ -890,19 +941,24 @@ export default class Wall extends cc.Component {
}
else if (this.teamDoors[0].longAndShort[0] == 1) {
start = this.teamDoors[2];
over = this.teamDoors[0];
end = this.teamDoors[1];
over = this.teamDoors[1];
end = this.teamDoors[0];
}
}
}
}
// console.log("数组长度:", MapConroler._instance.teamDoors.length);
start.runLongAndShort(true);
if (over) over.runLongAndShort(false);
if (end) end.runLongAndShort(false);
start.runLongAndShort(0);
if (end == null) {
if (over) over.runLongAndShort(2);
}
else {
if (over) over.runLongAndShort(1);
if (end) end.runLongAndShort(3);
}
}
// update (dt) {}

View File

@ -343,6 +343,7 @@ export class GameConfig {
}
const newLevelData = res.json;
this.NEW_LEVEL = newLevelData.NEW_LEVEL;
// console.log("____________________配置", this.NEW_LEVEL);
// 可以根据需求对 newLevelData 进行处理
// //console.log("NEW_LEVEL.JSON 加载成功:", newLevelData);
})

View File

@ -426,8 +426,8 @@ var GameTool = {
//关卡上限
maxLevel() {
let jg = false;
if (cc.fx.GameConfig.GM_INFO.level > 889) {
cc.fx.GameConfig.GM_INFO.level = 890;
if (cc.fx.GameConfig.GM_INFO.level > 919) {
cc.fx.GameConfig.GM_INFO.level = 920;
jg = true;
}
return jg;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 444 KiB

After

Width:  |  Height:  |  Size: 444 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 KiB

After

Width:  |  Height:  |  Size: 159 KiB

View File

@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1023,
"height": 1251,
"width": 1024,
"height": 2048,
"platformSettings": {},
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 350 KiB

After

Width:  |  Height:  |  Size: 350 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 903 B

After

Width:  |  Height:  |  Size: 877 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 KiB

After

Width:  |  Height:  |  Size: 230 KiB

View File

@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2021,
"height": 1398,
"width": 1471,
"height": 2046,
"platformSettings": {},
"subMetas": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 298 B

View File

@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 41,
"height": 54,
"width": 34,
"height": 47,
"platformSettings": {},
"subMetas": {
"mao": {

View File

@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1080,
"height": 170,
"width": 423,
"height": 186,
"platformSettings": {},
"subMetas": {
"top": {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 802 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 263 KiB

After

Width:  |  Height:  |  Size: 263 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -0,0 +1,43 @@
{
"__type__": "cc.AnimationClip",
"_name": "light",
"_objFlags": 0,
"_native": "",
"_duration": 0.5166666666666667,
"sample": 60,
"speed": 0.5,
"wrapMode": 2,
"curveData": {
"comps": {
"cc.Sprite": {
"spriteFrame": [
{
"frame": 0,
"value": {
"__uuid__": "debddcbf-4939-4d99-a2ba-55ac643ab33b"
}
},
{
"frame": 0.16666666666666666,
"value": {
"__uuid__": "bfe330b1-16fc-4e22-bee8-d99c11892008"
}
},
{
"frame": 0.3333333333333333,
"value": {
"__uuid__": "ca85b271-68bc-440a-9919-959d4f1f9514"
}
},
{
"frame": 0.5,
"value": {
"__uuid__": "debddcbf-4939-4d99-a2ba-55ac643ab33b"
}
}
]
}
}
},
"events": []
}

View File

@ -0,0 +1,6 @@
{
"ver": "2.1.2",
"uuid": "5b76c410-4d01-4e83-959b-204dc2ce417f",
"importer": "animation-clip",
"subMetas": {}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

File diff suppressed because it is too large Load Diff

View File

@ -460,6 +460,8 @@ export default class CareerList extends cc.Component {
let useravatarTemp = "icon_" + useravatar;
// console.log("222头像名称", useravatarTemp, "333用户名字:", username);
this.firstRender.children[i].getChildByName("mask").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = this.UI.getSpriteFrame(useravatarTemp);
this.firstRender.children[i].getChildByName("mask").getChildByName("icon").width = 150;
this.firstRender.children[i].getChildByName("mask").getChildByName("icon").height = 150;
}
else this.setPic(this.topData[i - 3].useravatar, this.firstRender.children[i].getChildByName("mask").getChildByName("icon"));
}

View File

@ -40,15 +40,60 @@
"name": "daoju5",
"tips": "炸弹方块第一次出现"
},
{
"level": 120,
"name": "daoju11",
"tips": "单色通过地块第一次出现"
},
{
"level": 170,
"name": "daoju9",
"tips": "冻结门第一次出现"
},
{
"level": 375,
"name": "daoju10",
"tips": "旋转门第一次出现"
"tips": "果酱门第一次出现"
},
{
"level": 396,
"name": "daoju11",
"name": "daoju12",
"tips": "灰色不可消除方块第一次出现"
},
{
"level": 464,
"name": "daoju13",
"tips": "木板块第一次出现"
},
{
"level": 511,
"name": "daoju14",
"tips": "变色门第一次出现"
},
{
"level": 580,
"name": "daoju15",
"tips": "带锁的门第一次出现"
},
{
"level": 673,
"name": "daoju16",
"tips": "伸缩门第一次出现"
},
{
"level": 734,
"name": "daoju17",
"tips": "问号块第一次出现"
},
{
"level": 761,
"name": "daoju18",
"tips": "定次粘合块第一次出现"
},
{
"level": 849,
"name": "daoju19",
"tips": "定次炸弹块第一次出现"
}
]
}

View File

@ -7,7 +7,7 @@
11,
11
],
"time": 240,
"time": 300,
"gap": []
}
],

View File

@ -322,7 +322,7 @@
"special": 0,
"length": 0,
"longAndShort": 13,
"order": true
"order": false
},
{
"id": 678,

View File

@ -7,7 +7,7 @@
10,
13
],
"time": 120,
"time": 180,
"gap": []
}
],

View File

@ -0,0 +1,436 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "891",
"map": [
9,
9
],
"time": 140,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 21,
"color": 5,
"type": 9,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"adhesiveTime": 2,
"id": 210
},
{
"block": 2,
"color": 5,
"type": 9,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"adhesiveTime": 1,
"id": 220
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": -300,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"id": 280
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 290
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 7,
"type": 4,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"freezeTime": 14,
"id": 310
},
{
"block": 1,
"color": 10,
"type": 4,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"freezeTime": 11,
"id": 320
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": -180,
"y": 300,
"z": 0
},
"adhesiveTime": 2,
"id": 330
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": -300,
"y": 300,
"z": 0
},
"adhesiveTime": 1,
"id": 340
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 300,
"y": 300,
"z": 0
},
"adhesiveTime": 2,
"id": 350
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"adhesiveTime": 1,
"id": 360
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"adhesiveTime": 2,
"id": 370
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"adhesiveTime": 1,
"id": 380
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"adhesiveTime": 2,
"id": 390
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"adhesiveTime": 1,
"id": 400
},
{
"block": 2,
"color": 6,
"type": 17,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"boomTime": 1,
"id": 410
},
{
"block": 2,
"color": 2,
"type": 17,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"boomTime": 2,
"id": 420
},
{
"block": 4,
"color": 8,
"type": 16,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"questionTime": 9,
"id": 430
},
{
"block": 1,
"color": 1,
"type": 17,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"boomTime": 4,
"id": 440
},
{
"block": 1,
"color": 4,
"type": 17,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"boomTime": 3,
"id": 450
},
{
"block": 1,
"color": 10,
"type": 14,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 460
},
{
"block": 1,
"color": 8,
"type": 14,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 470
}
]
],
"WALL_INFO": [
[
{
"id": 892,
"num": 2,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 893,
"num": 3,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 894,
"num": 23,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 895,
"num": 24,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 896,
"num": 12,
"color": 5,
"special": 6,
"length": 3,
"lockTime": 2
},
{
"id": 897,
"num": 14,
"color": 5,
"special": 6,
"length": 0,
"lockTime": 2
},
{
"id": 898,
"num": 16,
"color": 5,
"special": 6,
"length": 0,
"lockTime": 2
},
{
"id": 899,
"num": 9,
"color": 8,
"special": 3,
"length": 2,
"freeze": 6
},
{
"id": 900,
"num": 11,
"color": 8,
"special": 3,
"length": 0,
"freeze": 6
},
{
"id": 901,
"num": 15,
"color": 10,
"special": 3,
"length": 2,
"freeze": 10
},
{
"id": 902,
"num": 17,
"color": 10,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 903,
"num": 6,
"color": 4,
"special": 0,
"length": 1,
"colorArray": "366"
},
{
"id": 904,
"num": 27,
"color": 1,
"special": 0,
"length": 1,
"colorArray": "02"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "c7619f10-edd0-4dcd-911b-bb95bde3f17b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,228 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "892",
"map": [
8,
8
],
"time": 135,
"gap": [
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 5,
"type": 17,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"boomTime": 1,
"id": 230
},
{
"block": 2,
"color": 7,
"type": 17,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"boomTime": 3,
"id": 240
},
{
"block": 1,
"color": 3,
"type": 17,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"boomTime": 4,
"id": 250
},
{
"block": 4,
"color": 9,
"type": 17,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"boomTime": 5,
"id": 260
},
{
"block": 2,
"color": 9,
"type": 1,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"stacking": 8,
"id": 270
},
{
"block": 2,
"color": 2,
"type": 1,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"stacking": 7,
"id": 280
},
{
"block": 22,
"color": 10,
"type": 1,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"stacking": 3,
"id": 290
},
{
"block": 1,
"color": 6,
"type": 1,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"stacking": 2,
"id": 300
},
{
"block": 0,
"color": 7,
"type": 1,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"stacking": 5,
"id": 310
},
{
"block": 0,
"color": 10,
"type": 1,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"stacking": 5,
"id": 320
},
{
"block": 2,
"color": 8,
"type": 8,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"id": 330
}
]
],
"WALL_INFO": [
[
{
"id": 893,
"num": 11,
"color": 5,
"special": 0,
"length": 2,
"colorArray": "42814281421"
},
{
"id": 894,
"num": 13,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "42814281421"
},
{
"id": 895,
"num": 10,
"color": 8,
"special": 0,
"length": 2,
"colorArray": "76597696"
},
{
"id": 896,
"num": 12,
"color": 8,
"special": 0,
"length": 0,
"colorArray": "76597696"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "13fccbcd-9338-4960-8d8e-b762676fc98b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,429 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "893",
"map": [
9,
10
],
"time": 120,
"gap": [
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": -180,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 4,
"color": 9,
"type": 0,
"position": {
"x": -300,
"y": 120,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"id": 240
},
{
"block": 4,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"id": 260
},
{
"block": 5,
"color": 3,
"type": 0,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"id": 270
},
{
"block": 5,
"color": 2,
"type": 0,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"id": 280
},
{
"block": 14,
"color": 4,
"type": 0,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 1,
"type": 4,
"position": {
"x": -300,
"y": -120,
"z": 0
},
"freezeTime": 8,
"id": 300
},
{
"block": 0,
"color": 5,
"type": 17,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"boomTime": 2,
"id": 310
},
{
"block": 0,
"color": 1,
"type": 17,
"position": {
"x": 300,
"y": -120,
"z": 0
},
"boomTime": 1,
"id": 320
},
{
"block": 2,
"color": 7,
"type": 17,
"position": {
"x": 60,
"y": -480,
"z": 0
},
"boomTime": 3,
"id": 330
},
{
"block": 1,
"color": 6,
"type": 17,
"position": {
"x": -180,
"y": -480,
"z": 0
},
"boomTime": 4,
"id": 340
},
{
"block": 1,
"color": 8,
"type": 17,
"position": {
"x": 420,
"y": -480,
"z": 0
},
"boomTime": 5,
"id": 350
},
{
"block": 2,
"color": 8,
"type": 17,
"position": {
"x": -60,
"y": -480,
"z": 0
},
"boomTime": 6,
"id": 360
},
{
"block": 2,
"color": 6,
"type": 17,
"position": {
"x": 180,
"y": -480,
"z": 0
},
"boomTime": 7,
"id": 370
},
{
"block": 0,
"color": 5,
"type": 4,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"freezeTime": 11,
"id": 380
},
{
"block": 2,
"color": 9,
"type": 16,
"position": {
"x": 180,
"y": -240,
"z": 0
},
"questionTime": 10,
"id": 390
},
{
"block": 2,
"color": 10,
"type": 16,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"questionTime": 7,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 894,
"num": 0,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 895,
"num": 1,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 896,
"num": 2,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 897,
"num": 3,
"color": 10,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": false
},
{
"id": 898,
"num": 4,
"color": 10,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 899,
"num": 5,
"color": 10,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 900,
"num": 31,
"color": 9,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": true
},
{
"id": 901,
"num": 32,
"color": 9,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": true
},
{
"id": 902,
"num": 33,
"color": 9,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": true
},
{
"id": 903,
"num": 13,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 904,
"num": 15,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 905,
"num": 17,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 906,
"num": 19,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 907,
"num": 21,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 908,
"num": 29,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 909,
"num": 30,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 910,
"num": 28,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 911,
"num": 14,
"color": 4,
"special": 3,
"length": 3,
"freeze": 12
},
{
"id": 912,
"num": 16,
"color": 4,
"special": 3,
"length": 0,
"freeze": 12
},
{
"id": 913,
"num": 18,
"color": 4,
"special": 3,
"length": 0,
"freeze": 12
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "a1c4ccb8-9374-40f0-8f3e-cdb44413ea21",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,351 @@
{
"LEVEL_INFO": [
{
"risefall": [
{
"x": 3,
"y": 2,
"color": "3"
},
{
"x": 3,
"y": 1,
"color": "3"
},
{
"x": 4,
"y": 2,
"color": "3"
},
{
"x": 4,
"y": 1,
"color": "3"
}
],
"id": "894",
"map": [
8,
8
],
"time": 90,
"gap": [
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 7,
"type": 16,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"questionTime": 7,
"id": 330
},
{
"block": 22,
"color": 5,
"type": 16,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"questionTime": 8,
"id": 340
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 2,
"type": 16,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"questionTime": 11,
"id": 360
},
{
"block": 0,
"color": 8,
"type": 16,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"questionTime": 12,
"id": 370
}
]
],
"WALL_INFO": [
[
{
"id": 895,
"num": 0,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 896,
"num": 2,
"color": 2,
"special": 3,
"length": 1,
"freeze": 10
},
{
"id": 897,
"num": 9,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 898,
"num": 11,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 899,
"num": 17,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 900,
"num": 19,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 901,
"num": 23,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 902,
"num": 24,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 903,
"num": 21,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 904,
"num": 22,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 905,
"num": 18,
"color": 1,
"special": 4,
"length": 1
},
{
"id": 906,
"num": 12,
"color": 3,
"special": 3,
"length": 2,
"freeze": 10
},
{
"id": 907,
"num": 14,
"color": 3,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 908,
"num": 10,
"color": 7,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "654cc8db-8bdc-4693-a282-d11791093c8b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,446 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "895",
"map": [
9,
10
],
"time": 150,
"gap": [
{
"x": 7,
"y": 8,
"z": 0
},
{
"x": 7,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 2,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 4,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 7,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -180,
"y": -480,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"id": 240
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"id": 250
},
{
"block": 9,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 5,
"type": 16,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"questionTime": 13,
"id": 300
},
{
"block": 0,
"color": 10,
"type": 16,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"questionTime": 14,
"id": 310
},
{
"block": 2,
"color": 9,
"type": 16,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"questionTime": 8,
"id": 320
},
{
"block": 2,
"color": 10,
"type": 16,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"questionTime": 5,
"id": 330
},
{
"block": 1,
"color": 5,
"type": 16,
"position": {
"x": 60,
"y": -480,
"z": 0
},
"questionTime": 10,
"id": 340
},
{
"block": 1,
"color": 2,
"type": 9,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 350
},
{
"block": 19,
"color": 2,
"type": 9,
"position": {
"x": 300,
"y": -480,
"z": 0
},
"adhesiveTime": 1,
"id": 360
},
{
"block": 2,
"color": 9,
"type": 9,
"position": {
"x": -300,
"y": 240,
"z": 0
},
"adhesiveTime": 2,
"id": 370
},
{
"block": 2,
"color": 6,
"type": 9,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"id": 380
},
{
"block": 2,
"color": 5,
"type": 8,
"position": {
"x": 60,
"y": 240,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 9,
"type": 9,
"position": {
"x": 300,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 400
},
{
"block": 2,
"color": 8,
"type": 9,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 896,
"num": 1,
"color": 3,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 897,
"num": 2,
"color": 3,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 898,
"num": 3,
"color": 2,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": false
},
{
"id": 899,
"num": 4,
"color": 2,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 900,
"num": 5,
"color": 2,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 901,
"num": 32,
"color": 9,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 902,
"num": 33,
"color": 9,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 903,
"num": 9,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 904,
"num": 15,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 905,
"num": 21,
"color": 10,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 906,
"num": 23,
"color": 10,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 907,
"num": 30,
"color": 4,
"special": 2,
"length": 2,
"lock": false
},
{
"id": 908,
"num": 31,
"color": 4,
"special": 2,
"length": 0,
"lock": false
},
{
"id": 909,
"num": 20,
"color": 6,
"special": 2,
"length": 2,
"lock": false
},
{
"id": 910,
"num": 22,
"color": 6,
"special": 2,
"length": 0,
"lock": false
},
{
"id": 911,
"num": 16,
"color": 5,
"special": 3,
"length": 2,
"freeze": 12
},
{
"id": 912,
"num": 18,
"color": 5,
"special": 3,
"length": 0,
"freeze": 12
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "54f3d750-2a50-4a7a-b9ea-e04069a5f4f5",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,368 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "896",
"map": [
8,
8
],
"time": 100,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 330
},
{
"block": 5,
"color": 5,
"type": 7,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 6,
"type": 17,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"boomTime": 1,
"id": 350
},
{
"block": 0,
"color": 8,
"type": 17,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"boomTime": 2,
"id": 360
},
{
"block": 2,
"color": 10,
"type": 17,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"boomTime": 4,
"id": 370
},
{
"block": 2,
"color": 4,
"type": 17,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"boomTime": 5,
"id": 380
},
{
"block": 0,
"color": 1,
"type": 16,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"questionTime": 11,
"id": 390
},
{
"block": 0,
"color": 7,
"type": 16,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"questionTime": 12,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 897,
"num": 2,
"color": 5,
"special": 3,
"length": 2,
"freeze": 8
},
{
"id": 898,
"num": 3,
"color": 5,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 899,
"num": 7,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 900,
"num": 9,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 901,
"num": 11,
"color": 1,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 902,
"num": 13,
"color": 1,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 903,
"num": 17,
"color": 9,
"special": 3,
"length": 1,
"freeze": 10
},
{
"id": 904,
"num": 21,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 905,
"num": 22,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 906,
"num": 19,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 907,
"num": 20,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 908,
"num": 16,
"color": 2,
"special": 3,
"length": 1,
"freeze": 9
},
{
"id": 909,
"num": 10,
"color": 7,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 910,
"num": 12,
"color": 7,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 911,
"num": 6,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 912,
"num": 8,
"color": 6,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "83b7d230-fba2-4399-ab31-810b6896e309",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,485 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "897",
"map": [
10,
10
],
"time": 110,
"gap": [
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 2,
"y": 8,
"z": 0
},
{
"x": 3,
"y": 8,
"z": 0
},
{
"x": 8,
"y": 1,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
},
{
"x": 7,
"y": 2,
"z": 0
},
{
"x": 2,
"y": 7,
"z": 0
},
{
"x": 3,
"y": 7,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": -480,
"z": 0
},
"floor": 1,
"floorTime": 4,
"floorMove": false,
"id": 210
},
{
"block": 2,
"color": 10,
"type": 6,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"boomTime": 40,
"floor": 1,
"floorTime": 4,
"floorMove": false,
"id": 220
},
{
"block": 2,
"color": 9,
"type": 17,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"boomTime": 2,
"floor": 1,
"floorTime": 4,
"floorMove": false,
"id": 230
},
{
"block": 0,
"color": 5,
"type": 17,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"boomTime": 1,
"id": 240
},
{
"block": 0,
"color": 10,
"type": 17,
"position": {
"x": 120,
"y": 360,
"z": 0
},
"boomTime": 2,
"id": 250
},
{
"block": 23,
"color": 10,
"type": 17,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"boomTime": 2,
"id": 260
},
{
"block": 23,
"color": 10,
"type": 17,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"boomTime": 2,
"id": 270
},
{
"block": 23,
"color": 10,
"type": 17,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"boomTime": 2,
"id": 280
},
{
"block": 1,
"color": 3,
"type": 17,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"boomTime": 3,
"id": 290
},
{
"block": 2,
"color": 9,
"type": 8,
"position": {
"x": -360,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 5,
"type": 8,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 7,
"type": 7,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 340
},
{
"block": 13,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"id": 350
},
{
"block": 4,
"color": 7,
"type": 0,
"position": {
"x": 480,
"y": 120,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": 360,
"z": 0
},
"id": 390
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 400
},
{
"block": 22,
"color": 6,
"type": 0,
"position": {
"x": 480,
"y": -360,
"z": 0
},
"id": 410
},
{
"block": 5,
"color": 3,
"type": 0,
"position": {
"x": 0,
"y": -240,
"z": 0
},
"id": 420
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 430
},
{
"block": 0,
"color": 5,
"type": 4,
"position": {
"x": 480,
"y": -120,
"z": 0
},
"freezeTime": 5,
"id": 440
}
]
],
"WALL_INFO": [
[
{
"id": 898,
"num": 1,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 899,
"num": 2,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 900,
"num": 4,
"color": 7,
"special": 3,
"length": 3,
"freeze": 11
},
{
"id": 901,
"num": 5,
"color": 7,
"special": 3,
"length": 0,
"freeze": 11
},
{
"id": 902,
"num": 6,
"color": 7,
"special": 3,
"length": 0,
"freeze": 11
},
{
"id": 903,
"num": 8,
"color": 9,
"special": 3,
"length": 1,
"freeze": 4
},
{
"id": 904,
"num": 17,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 905,
"num": 19,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 906,
"num": 26,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 907,
"num": 34,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 908,
"num": 35,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 909,
"num": 31,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 910,
"num": 32,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 911,
"num": 12,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 912,
"num": 16,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 913,
"num": 18,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 914,
"num": 7,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 915,
"num": 9,
"color": 6,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "d3729194-ea76-4d11-ada2-658d9f55207d",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,331 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "898",
"map": [
8,
8
],
"time": 105,
"gap": [
{
"x": 5,
"y": 3,
"z": 0
},
{
"x": 5,
"y": 2,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 3,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 9,
"type": 17,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"boomTime": 1,
"id": 230
},
{
"block": 0,
"color": 6,
"type": 17,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"boomTime": 2,
"id": 240
},
{
"block": 22,
"color": 5,
"type": 17,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"boomTime": 3,
"id": 250
},
{
"block": 2,
"color": 4,
"type": 17,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"boomTime": 4,
"id": 260
},
{
"block": 1,
"color": 6,
"type": 14,
"position": {
"x": 0,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 6,
"color": 7,
"type": 14,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 9,
"type": 14,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 1,
"type": 14,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 2,
"type": 16,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"questionTime": 7,
"id": 310
},
{
"block": 2,
"color": 10,
"type": 16,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"questionTime": 9,
"id": 320
},
{
"block": 0,
"color": 4,
"type": 16,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"questionTime": 11,
"id": 330
}
]
],
"WALL_INFO": [
[
{
"id": 899,
"num": 1,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 900,
"num": 2,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 901,
"num": 3,
"color": 7,
"special": 0,
"length": 3
},
{
"id": 902,
"num": 4,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 903,
"num": 5,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 904,
"num": 7,
"color": 8,
"special": 6,
"length": 2,
"lockTime": 4
},
{
"id": 905,
"num": 9,
"color": 8,
"special": 6,
"length": 0,
"lockTime": 4
},
{
"id": 906,
"num": 11,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 907,
"num": 13,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 908,
"num": 18,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 909,
"num": 20,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 910,
"num": 23,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 911,
"num": 21,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 912,
"num": 22,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 913,
"num": 10,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 914,
"num": 12,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 915,
"num": 6,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 916,
"num": 8,
"color": 9,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "e3077ca7-1b23-4900-80e4-c820afcc7490",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,441 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "899",
"map": [
9,
9
],
"time": 115,
"gap": [
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 7,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 250
},
{
"block": 22,
"color": 8,
"type": 0,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 270
},
{
"block": 21,
"color": 6,
"type": 0,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 340
},
{
"block": 23,
"color": 11,
"type": 0,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"id": 350
},
{
"block": 23,
"color": 11,
"type": 0,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 9,
"type": 17,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"boomTime": 2,
"id": 370
},
{
"block": 2,
"color": 10,
"type": 17,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"boomTime": 3,
"id": 380
},
{
"block": 2,
"color": 5,
"type": 17,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"boomTime": 4,
"id": 390
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": -60,
"y": 300,
"z": 0
},
"adhesiveTime": 2,
"id": 400
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"adhesiveTime": 1,
"id": 410
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"adhesiveTime": 2,
"id": 420
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"adhesiveTime": 1,
"id": 430
},
{
"block": 0,
"color": 9,
"type": 16,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"questionTime": 10,
"id": 440
},
{
"block": 0,
"color": 2,
"type": 16,
"position": {
"x": -300,
"y": 300,
"z": 0
},
"questionTime": 12,
"id": 450
},
{
"block": 0,
"color": 2,
"type": 4,
"position": {
"x": 60,
"y": 300,
"z": 0
},
"freezeTime": 15,
"id": 460
}
]
],
"WALL_INFO": [
[
{
"id": 900,
"num": 1,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 901,
"num": 2,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 902,
"num": 3,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 903,
"num": 4,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 904,
"num": 26,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 905,
"num": 27,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 906,
"num": 24,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 907,
"num": 25,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 908,
"num": 15,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 909,
"num": 11,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 910,
"num": 10,
"color": 6,
"special": 0,
"length": 2,
"colorArray": "58588"
},
{
"id": 911,
"num": 12,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "58588"
},
{
"id": 912,
"num": 16,
"color": 4,
"special": 0,
"length": 2,
"colorArray": "311"
},
{
"id": 913,
"num": 18,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "311"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "1c8de2f3-fcd7-486f-a739-46227a8f7330",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,437 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "900",
"map": [
9,
10
],
"time": 120,
"gap": [
{
"x": 6,
"y": 6,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 5,
"z": 0
},
{
"x": 7,
"y": 5,
"z": 0
},
{
"x": 7,
"y": 4,
"z": 0
},
{
"x": 6,
"y": 4,
"z": 0
},
{
"x": 6,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 3,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": 240,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 11,
"type": 0,
"position": {
"x": 180,
"y": -480,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": -300,
"y": -120,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": 360,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": -300,
"y": 360,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": -480,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 1,
"type": 9,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 330
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"adhesiveTime": 1,
"id": 340
},
{
"block": 1,
"color": 1,
"type": 9,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"adhesiveTime": 2,
"id": 350
},
{
"block": 1,
"color": 1,
"type": 9,
"position": {
"x": 420,
"y": -480,
"z": 0
},
"adhesiveTime": 1,
"id": 360
},
{
"block": 5,
"color": 2,
"type": 3,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"lockTime": 4,
"id": 370
},
{
"block": 1,
"color": 6,
"type": 2,
"position": {
"x": -180,
"y": -240,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 10,
"type": 2,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 8,
"type": 2,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"id": 400
},
{
"block": 22,
"color": 4,
"type": 2,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"id": 410
},
{
"block": 4,
"color": 9,
"type": 16,
"position": {
"x": -60,
"y": -480,
"z": 0
},
"questionTime": 10,
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 901,
"num": 0,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 902,
"num": 2,
"color": 4,
"special": 4,
"length": 2
},
{
"id": 903,
"num": 3,
"color": 4,
"special": 4,
"length": 0
},
{
"id": 904,
"num": 4,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 905,
"num": 5,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 906,
"num": 7,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 907,
"num": 9,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 908,
"num": 11,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 909,
"num": 17,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 910,
"num": 25,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 911,
"num": 32,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 912,
"num": 33,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 913,
"num": 30,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 914,
"num": 31,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 915,
"num": 16,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 916,
"num": 18,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 917,
"num": 8,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 918,
"num": 10,
"color": 7,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "66ca713d-c257-45bf-aed7-47f4ae63fa81",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,371 @@
{
"LEVEL_INFO": [
{
"risefall": [
{
"x": 3,
"y": 6,
"color": "10"
},
{
"x": 3,
"y": 5,
"color": "10"
},
{
"x": 4,
"y": 6,
"color": "10"
},
{
"x": 4,
"y": 5,
"color": "10"
}
],
"id": "901",
"map": [
9,
9
],
"time": 145,
"gap": [
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 7,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 4,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
},
{
"x": 4,
"y": 1,
"z": 0
},
{
"x": 3,
"y": 1,
"z": 0
},
{
"x": 3,
"y": 2,
"z": 0
},
{
"x": 4,
"y": 2,
"z": 0
},
{
"x": 5,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"id": 210
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 60,
"y": 300,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 5,
"type": 17,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"boomTime": 1,
"id": 290
},
{
"block": 0,
"color": 6,
"type": 17,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"boomTime": 2,
"id": 300
},
{
"block": 2,
"color": 4,
"type": 17,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"boomTime": 3,
"id": 310
},
{
"block": 2,
"color": 1,
"type": 17,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"boomTime": 4,
"id": 320
},
{
"block": 4,
"color": 1,
"type": 16,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"questionTime": 8,
"id": 330
},
{
"block": 0,
"color": 9,
"type": 4,
"position": {
"x": 300,
"y": 300,
"z": 0
},
"freezeTime": 10,
"id": 340
},
{
"block": 4,
"color": 5,
"type": 16,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"questionTime": 12,
"id": 350
}
]
],
"WALL_INFO": [
[
{
"id": 902,
"num": 1,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 903,
"num": 2,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 904,
"num": 3,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 905,
"num": 4,
"color": 9,
"special": 0,
"length": 1
},
{
"id": 906,
"num": 10,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 907,
"num": 12,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 908,
"num": 22,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 909,
"num": 24,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 910,
"num": 34,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 911,
"num": 35,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 912,
"num": 31,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 913,
"num": 23,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 914,
"num": 25,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 915,
"num": 5,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 916,
"num": 11,
"color": 7,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "de2e78ce-4390-4d8f-89f4-c5ac4447ca2d",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,485 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "902",
"map": [
9,
10
],
"time": 190,
"gap": [
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -60,
"y": -480,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 300,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 300,
"y": -480,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -300,
"y": -120,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"id": 310
},
{
"block": 22,
"color": 4,
"type": 0,
"position": {
"x": 420,
"y": 240,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": -480,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": -240,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": -480,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": -480,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": -240,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -60,
"y": 360,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 10,
"type": 14,
"position": {
"x": 60,
"y": 360,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 9,
"type": 14,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 410
},
{
"block": 21,
"color": 10,
"type": 14,
"position": {
"x": -180,
"y": -240,
"z": 0
},
"id": 420
},
{
"block": 0,
"color": 2,
"type": 14,
"position": {
"x": -300,
"y": -240,
"z": 0
},
"id": 430
},
{
"block": 0,
"color": 10,
"type": 7,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"id": 440
},
{
"block": 2,
"color": 5,
"type": 8,
"position": {
"x": 420,
"y": -480,
"z": 0
},
"id": 450
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 460
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 470
},
{
"block": 3,
"color": 3,
"type": 16,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"questionTime": 11,
"id": 480
},
{
"block": 3,
"color": 10,
"type": 16,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"questionTime": 12,
"id": 490
}
]
],
"WALL_INFO": [
[
{
"id": 903,
"num": 0,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 904,
"num": 1,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 905,
"num": 2,
"color": 4,
"special": 4,
"length": 2
},
{
"id": 906,
"num": 3,
"color": 4,
"special": 4,
"length": 0
},
{
"id": 907,
"num": 11,
"color": 2,
"special": 0,
"length": 1
},
{
"id": 908,
"num": 15,
"color": 3,
"special": 6,
"length": 3,
"lockTime": 4
},
{
"id": 909,
"num": 17,
"color": 3,
"special": 6,
"length": 0,
"lockTime": 4
},
{
"id": 910,
"num": 19,
"color": 3,
"special": 6,
"length": 0,
"lockTime": 4
},
{
"id": 911,
"num": 21,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 912,
"num": 23,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 913,
"num": 30,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 914,
"num": 31,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 915,
"num": 28,
"color": 10,
"special": 3,
"length": 2,
"freeze": 11
},
{
"id": 916,
"num": 29,
"color": 10,
"special": 3,
"length": 0,
"freeze": 11
},
{
"id": 917,
"num": 26,
"color": 8,
"special": 4,
"length": 2
},
{
"id": 918,
"num": 27,
"color": 8,
"special": 4,
"length": 0
},
{
"id": 919,
"num": 22,
"color": 6,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "6e075fc2-f48c-4e0b-b5ae-1efa64799af9",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,201 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "903",
"map": [
8,
8
],
"time": 100,
"gap": [
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 2,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 5,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"lock": true,
"id": 210
},
{
"block": 5,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"lock": true,
"id": 220
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"lock": true,
"id": 230
},
{
"block": 22,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"lock": true,
"id": 240
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"lock": true,
"id": 250
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"lock": false,
"id": 260
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"lock": false,
"id": 270
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"lock": false,
"id": 280
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"lock": false,
"id": 290
},
{
"block": 21,
"color": 2,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"lock": false,
"id": 300
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"lock": false,
"id": 310
}
]
],
"WALL_INFO": [
[
{
"id": 904,
"num": 11,
"color": 10,
"special": 0,
"length": 2,
"colorArray": "93602817547"
},
{
"id": 905,
"num": 13,
"color": 10,
"special": 0,
"length": 0,
"colorArray": "93602817547"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "2f80981f-ef34-460a-96fd-832f2380c20b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,323 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "904",
"map": [
8,
8
],
"time": 100,
"gap": [
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"lock": true,
"id": 260
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"lock": true,
"id": 270
},
{
"block": 5,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"lock": true,
"id": 280
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"lock": true,
"id": 290
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"lock": true,
"id": 300
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"lock": false,
"id": 310
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"lock": false,
"id": 320
},
{
"block": 2,
"color": 4,
"type": 8,
"position": {
"x": 0,
"y": -240,
"z": 0
},
"id": 330
},
{
"block": 4,
"color": 5,
"type": 7,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 3,
"type": 17,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"boomTime": 1,
"id": 350
}
]
],
"WALL_INFO": [
[
{
"id": 905,
"num": 1,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 906,
"num": 2,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 907,
"num": 3,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 908,
"num": 4,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 909,
"num": 5,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 910,
"num": 9,
"color": 4,
"special": 3,
"length": 2,
"freeze": 9
},
{
"id": 911,
"num": 11,
"color": 4,
"special": 3,
"length": 0,
"freeze": 9
},
{
"id": 912,
"num": 15,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 913,
"num": 19,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 914,
"num": 20,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 915,
"num": 21,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 916,
"num": 12,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 917,
"num": 14,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 918,
"num": 6,
"color": 9,
"special": 3,
"length": 2,
"freeze": 11
},
{
"id": 919,
"num": 8,
"color": 9,
"special": 3,
"length": 0,
"freeze": 11
},
{
"id": 920,
"num": 13,
"color": 1,
"special": 0,
"length": 1,
"colorArray": "06"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "e9bb3335-4ab3-46a5-8050-6c7e99be756b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,313 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "905",
"map": [
8,
8
],
"time": 120,
"gap": [
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 210
},
{
"block": 13,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 4,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 10,
"type": 14,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 4,
"type": 14,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 7,
"type": 14,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 1,
"type": 14,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 11,
"type": 7,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 3,
"type": 8,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"id": 310
},
{
"block": 22,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"lock": true,
"id": 320
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"lock": false,
"id": 330
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"lock": false,
"id": 340
}
]
],
"WALL_INFO": [
[
{
"id": 906,
"num": 0,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 907,
"num": 1,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 908,
"num": 2,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 909,
"num": 3,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 910,
"num": 11,
"color": 5,
"special": 6,
"length": 1,
"lockTime": 4
},
{
"id": 911,
"num": 13,
"color": 10,
"special": 3,
"length": 3,
"freeze": 3
},
{
"id": 912,
"num": 15,
"color": 10,
"special": 3,
"length": 0,
"freeze": 3
},
{
"id": 913,
"num": 17,
"color": 10,
"special": 3,
"length": 0,
"freeze": 3
},
{
"id": 914,
"num": 24,
"color": 7,
"special": 3,
"length": 2,
"freeze": 8
},
{
"id": 915,
"num": 25,
"color": 7,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 916,
"num": 21,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 917,
"num": 22,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 918,
"num": 12,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 919,
"num": 14,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 920,
"num": 4,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 921,
"num": 10,
"color": 6,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "733379c5-1c2f-4686-9668-9ef95c58c94f",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,383 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "906",
"map": [
9,
9
],
"time": 120,
"gap": [
{
"x": 7,
"y": 2,
"z": 0
},
{
"x": 7,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 4,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": 300,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 1,
"type": 14,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 9,
"type": 14,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 9,
"type": 14,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 280
},
{
"block": 23,
"color": 9,
"type": 14,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 23,
"color": 9,
"type": 14,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 8,
"type": 14,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 3,
"type": 14,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 7,
"type": 4,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"freezeTime": 6,
"id": 330
},
{
"block": 1,
"color": 8,
"type": 16,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"questionTime": 7,
"id": 340
},
{
"block": 2,
"color": 9,
"type": 4,
"position": {
"x": -300,
"y": -300,
"z": 0
},
"freezeTime": 10,
"id": 350
},
{
"block": 20,
"color": 6,
"type": 9,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 8,
"id": 360
},
{
"block": 2,
"color": 8,
"type": 9,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 8,
"id": 370
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"lock": true,
"id": 380
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"lock": true,
"id": 390
},
{
"block": 4,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"lock": false,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 907,
"num": 0,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 908,
"num": 1,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 909,
"num": 4,
"color": 5,
"special": 6,
"length": 3,
"lockTime": 5
},
{
"id": 910,
"num": 5,
"color": 5,
"special": 6,
"length": 0,
"lockTime": 5
},
{
"id": 911,
"num": 6,
"color": 5,
"special": 6,
"length": 0,
"lockTime": 5
},
{
"id": 912,
"num": 8,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 913,
"num": 10,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 914,
"num": 18,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 915,
"num": 25,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 916,
"num": 28,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 917,
"num": 29,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 918,
"num": 26,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 919,
"num": 15,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 920,
"num": 17,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 921,
"num": 9,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 922,
"num": 11,
"color": 7,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "83ccb337-fb0f-4fd6-a0e2-a8c9f326f4b3",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,396 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "907",
"map": [
9,
9
],
"time": 120,
"gap": [
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 2,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 210
},
{
"block": 22,
"color": 4,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 250
},
{
"block": 10,
"color": 3,
"type": 9,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"adhesiveTime": 2,
"id": 260
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"adhesiveTime": 1,
"id": 270
},
{
"block": 2,
"color": 5,
"type": 8,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -300,
"y": -60,
"z": 0
},
"adhesiveTime": 2,
"id": 290
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"adhesiveTime": 1,
"id": 300
},
{
"block": 0,
"color": 6,
"type": 9,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"adhesiveTime": 2,
"id": 310
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"adhesiveTime": 1,
"id": 320
},
{
"block": 1,
"color": 1,
"type": 3,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"lockTime": 2,
"id": 330
},
{
"block": 1,
"color": 2,
"type": 2,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 7,
"type": 2,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 1,
"type": 12,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"lockTime2": 2,
"id": 360
},
{
"block": 2,
"color": 6,
"type": 13,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 10,
"type": 13,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 908,
"num": 0,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 909,
"num": 1,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 910,
"num": 2,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 911,
"num": 3,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 912,
"num": 28,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 913,
"num": 29,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 914,
"num": 9,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 915,
"num": 11,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 916,
"num": 10,
"color": 5,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 917,
"num": 12,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 918,
"num": 18,
"color": 10,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 919,
"num": 21,
"color": 10,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 920,
"num": 25,
"color": 3,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": false
},
{
"id": 921,
"num": 26,
"color": 3,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 922,
"num": 27,
"color": 3,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 923,
"num": 13,
"color": 7,
"special": 3,
"length": 1,
"freeze": 10
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "1b404969-a2f3-4fe7-bdde-25af19009069",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,396 @@
{
"LEVEL_INFO": [
{
"risefall": [
{
"x": 3,
"y": 3,
"color": "2"
},
{
"x": 4,
"y": 3,
"color": "2"
},
{
"x": 5,
"y": 3,
"color": "2"
}
],
"id": "908",
"map": [
10,
9
],
"time": 120,
"gap": [
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 8,
"y": 2,
"z": 0
},
{
"x": 8,
"y": 3,
"z": 0
},
{
"x": 8,
"y": 4,
"z": 0
},
{
"x": 8,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": -420,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": -300,
"z": 0
},
"id": 230
},
{
"block": 22,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"id": 240
},
{
"block": 6,
"color": 3,
"type": 0,
"position": {
"x": -240,
"y": 60,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": 180,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": 60,
"z": 0
},
"id": 270
},
{
"block": 20,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": -420,
"z": 0
},
"lock": true,
"id": 280
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": -180,
"z": 0
},
"lock": true,
"id": 290
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 480,
"y": 180,
"z": 0
},
"lock": true,
"id": 300
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": 180,
"z": 0
},
"lock": true,
"id": 310
},
{
"block": 2,
"color": 8,
"type": 4,
"position": {
"x": -240,
"y": -180,
"z": 0
},
"freezeTime": 9,
"id": 320
},
{
"block": 0,
"color": 5,
"type": 14,
"position": {
"x": -120,
"y": 300,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 10,
"type": 14,
"position": {
"x": 360,
"y": 300,
"z": 0
},
"id": 340
},
{
"block": 3,
"color": 2,
"type": 14,
"position": {
"x": 120,
"y": 60,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 6,
"type": 14,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 1,
"type": 14,
"position": {
"x": 360,
"y": -420,
"z": 0
},
"id": 370
}
]
],
"WALL_INFO": [
[
{
"id": 909,
"num": 0,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 910,
"num": 1,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 911,
"num": 32,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 912,
"num": 33,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 913,
"num": 31,
"color": 5,
"special": 3,
"length": 1,
"freeze": 12
},
{
"id": 914,
"num": 2,
"color": 4,
"special": 6,
"length": 1,
"lockTime": 5
},
{
"id": 915,
"num": 12,
"color": 6,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 916,
"num": 14,
"color": 6,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 917,
"num": 20,
"color": 1,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 918,
"num": 22,
"color": 1,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 919,
"num": 19,
"color": 3,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 920,
"num": 21,
"color": 3,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 921,
"num": 11,
"color": 2,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": true
},
{
"id": 922,
"num": 13,
"color": 2,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": true
},
{
"id": 923,
"num": 15,
"color": 2,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": true
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "e92590f2-aec9-4eb2-b12f-b6e2440f6695",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,499 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "909",
"map": [
10,
11
],
"time": 130,
"gap": [
{
"x": 1,
"y": 9,
"z": 0
},
{
"x": 8,
"y": 9,
"z": 0
},
{
"x": 4,
"y": 9,
"z": 0
},
{
"x": 5,
"y": 9,
"z": 0
},
{
"x": 5,
"y": 8,
"z": 0
},
{
"x": 4,
"y": 8,
"z": 0
},
{
"x": 8,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 8,
"y": 3,
"z": 0
},
{
"x": 8,
"y": 4,
"z": 0
},
{
"x": 8,
"y": 5,
"z": 0
},
{
"x": 8,
"y": 6,
"z": 0
},
{
"x": 4,
"y": 7,
"z": 0
},
{
"x": 4,
"y": 6,
"z": 0
},
{
"x": 5,
"y": 6,
"z": 0
},
{
"x": 5,
"y": 7,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": 300,
"z": 0
},
"id": 210
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 360,
"y": 180,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 300,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 10,
"type": 8,
"position": {
"x": -120,
"y": 300,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 4,
"type": 8,
"position": {
"x": 240,
"y": 300,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 5,
"type": 8,
"position": {
"x": 360,
"y": -180,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 5,
"type": 8,
"position": {
"x": -240,
"y": -180,
"z": 0
},
"id": 280
},
{
"block": 22,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": -180,
"z": 0
},
"lock": true,
"id": 290
},
{
"block": 21,
"color": 2,
"type": 0,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"lock": true,
"id": 300
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": -180,
"z": 0
},
"lock": true,
"id": 310
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": -300,
"z": 0
},
"lock": true,
"id": 320
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -240,
"y": -420,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 360,
"y": -420,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 3,
"type": 17,
"position": {
"x": -240,
"y": -300,
"z": 0
},
"boomTime": 1,
"id": 350
},
{
"block": 0,
"color": 7,
"type": 17,
"position": {
"x": 360,
"y": -300,
"z": 0
},
"boomTime": 2,
"id": 360
},
{
"block": 5,
"color": 5,
"type": 17,
"position": {
"x": 120,
"y": -540,
"z": 0
},
"boomTime": 3,
"id": 370
},
{
"block": 3,
"color": 4,
"type": 16,
"position": {
"x": -120,
"y": -540,
"z": 0
},
"questionTime": 7,
"id": 380
},
{
"block": 1,
"color": 9,
"type": 16,
"position": {
"x": 120,
"y": -60,
"z": 0
},
"questionTime": 9,
"id": 390
},
{
"block": 3,
"color": 10,
"type": 16,
"position": {
"x": 480,
"y": -540,
"z": 0
},
"questionTime": 12,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 910,
"num": 0,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 911,
"num": 1,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 912,
"num": 7,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 913,
"num": 8,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 914,
"num": 2,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 915,
"num": 14,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 916,
"num": 16,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 917,
"num": 30,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 918,
"num": 32,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 919,
"num": 45,
"color": 9,
"special": 0,
"length": 1
},
{
"id": 920,
"num": 37,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 921,
"num": 38,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 922,
"num": 43,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 923,
"num": 44,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 924,
"num": 29,
"color": 4,
"special": 3,
"length": 3,
"freeze": 10
},
{
"id": 925,
"num": 31,
"color": 4,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 926,
"num": 33,
"color": 4,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 927,
"num": 3,
"color": 10,
"special": 3,
"length": 3,
"freeze": 5
},
{
"id": 928,
"num": 13,
"color": 10,
"special": 3,
"length": 0,
"freeze": 5
},
{
"id": 929,
"num": 15,
"color": 10,
"special": 3,
"length": 0,
"freeze": 5
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "4196d6b3-6ebc-4686-bae0-e2b3d31da324",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,239 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "910",
"map": [
8,
8
],
"time": 145,
"gap": [
{
"x": 4,
"y": 6,
"z": 0
},
{
"x": 5,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 5,
"z": 0
},
{
"x": 6,
"y": 4,
"z": 0
},
{
"x": 5,
"y": 5,
"z": 0
},
{
"x": 4,
"y": 5,
"z": 0
},
{
"x": 5,
"y": 4,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 210
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 3,
"type": 8,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 2,
"type": 7,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 8,
"type": 1,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"stacking": 3,
"id": 250
},
{
"block": 2,
"color": 4,
"type": 1,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"stacking": 9,
"id": 260
},
{
"block": 19,
"color": 10,
"type": 1,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"stacking": 8,
"id": 270
},
{
"block": 2,
"color": 6,
"type": 1,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"stacking": 8,
"id": 280
},
{
"block": 1,
"color": 7,
"type": 1,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"stacking": 1,
"id": 290
},
{
"block": 2,
"color": 5,
"type": 17,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"boomTime": 2,
"id": 300
},
{
"block": 4,
"color": 1,
"type": 17,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"boomTime": 3,
"id": 310
}
]
],
"WALL_INFO": [
[
{
"id": 911,
"num": 7,
"color": 3,
"special": 0,
"length": 3,
"colorArray": "24859"
},
{
"id": 912,
"num": 9,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "24859"
},
{
"id": 913,
"num": 11,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "24859"
},
{
"id": 914,
"num": 21,
"color": 1,
"special": 0,
"length": 3,
"colorArray": "01763077"
},
{
"id": 915,
"num": 22,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "01763077"
},
{
"id": 916,
"num": 23,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "01763077"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "ed86cb2c-48b1-4949-a05d-af69d6ab961a",
"importer": "json",
"subMetas": {}
}

Some files were not shown because too many files have changed in this diff Show More