更新游戏新功能

This commit is contained in:
COMPUTER\EDY 2025-12-17 10:24:54 +08:00
parent 6ad9e41a85
commit d378dbf8ed
70 changed files with 12223 additions and 52 deletions

View File

@ -4775,6 +4775,9 @@
},
{
"__uuid__": "247ed8ff-7ca2-4450-9b3b-f258acebe9d4"
},
{
"__uuid__": "ff587655-c65a-46ca-8007-2dbec6388fc0"
}
],
"MapBlockPrefab": {
@ -22753,7 +22756,7 @@
"__id__": 807
}
],
"_active": true,
"_active": false,
"_components": [],
"_prefab": null,
"_opacity": 255,

View File

@ -39,6 +39,7 @@ export enum BlockType {
"问号块" = 16,
/*消除次数炸弹块*/
"消除炸弹块" = 17,
}
export enum BlockColor {
@ -207,6 +208,7 @@ export default class Block extends cc.Component {
this.blockId = block_Info.id;
// console.log("方块层级",this.node.zIndex);
this.initColor();
this.initType();
this.initBlocks();
@ -409,18 +411,34 @@ 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);
}
// 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");
// 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;
let name3 = "0color" + this.block_Info.block;
let number2 = 5;
let blockSpriteFrame2 = MapConroler._instance.Block_Color[number2]._spriteFrames;
var spriteFrame3 = blockSpriteFrame2[name3];
switchs.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame3;
let swtichsX = posConfig.pos6.x - (this.node.width * (this.node.anchorX - 0.5)); let swtichsY = posConfig.pos6.y + this.node.height / 2;
if (this.block_Info.block == 2) {
switchs.setPosition(swtichsX + 4, swtichsY - 10);
}
else switchs.setPosition(swtichsX, swtichsY);
switchs.getComponent("Switchs").init(this.block_Info.swichs);
}
}
@ -601,7 +619,7 @@ export default class Block extends cc.Component {
}
}
}
if (this.block_Info.lock) {
if (this.block_Info.lock == true) {
return;
}
let jg = MapConroler._instance.checkPass(this.node, this.allBlocks);
@ -1366,7 +1384,6 @@ export default class Block extends cc.Component {
changeSwitch() {
if (this.block_Info.lock != undefined) {
// debugger;
if (this.block_Info.lock) {
this.block_Info.lock = false;
this.node.getChildByName("lock").color = cc.color(0, 200, 255);

View File

@ -475,7 +475,7 @@ export default class MapConroler extends cc.Component {
console.log("当前关卡时间", this.timeNumber);
this.add_Time = 0;
NumberToImage.getTimeMargi3(this.timeNumber, 45, "custom", this.timeLabel)
NumberToImage.getTimeMargi3(this.timeNumber, 45, "company_", this.timeLabel)
this.updateCoin();
// var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber);
@ -1527,7 +1527,9 @@ export default class MapConroler extends cc.Component {
if (result == true) result = this.passWall(result, leftWalls, node);
// console.log("碰到左边缘结果:",jg);
if (result) {
if (node.getComponent("Block").block_Info.lock != null && node.getComponent("Block").block_Info.lock != undefined) {
node.getComponent("Block").block_Info.lock = null;
}
this.blockNum -= 1;
this.special_Treatment(node, true);
jg = 2;
@ -1560,7 +1562,9 @@ export default class MapConroler extends cc.Component {
if (result == true) result = this.passWall(result, rightWalls, node);
// console.log("碰到右边缘结果:",jg);
if (result) {
if (node.getComponent("Block").block_Info.lock != null && node.getComponent("Block").block_Info.lock != undefined) {
node.getComponent("Block").block_Info.lock = null;
}
this.blockNum -= 1;
this.special_Treatment(node, true);
jg = 3;
@ -1596,7 +1600,9 @@ export default class MapConroler extends cc.Component {
if (result == true) result = this.passWall(result, downWalls, node);
// console.log("碰到下边缘结果:",jg);
if (result) {
if (node.getComponent("Block").block_Info.lock != null && node.getComponent("Block").block_Info.lock != undefined) {
node.getComponent("Block").block_Info.lock = null;
}
this.blockNum -= 1;
this.special_Treatment(node, true);
jg = 1;
@ -1631,7 +1637,9 @@ export default class MapConroler extends cc.Component {
if (result == true) result = this.passWall(result, upWalls, node);
// console.log("碰到上边缘结果:", result);
if (result) {
if (node.getComponent("Block").block_Info.lock != null && node.getComponent("Block").block_Info.lock != undefined) {
node.getComponent("Block").block_Info.lock = null;
}
this.blockNum -= 1;
this.special_Treatment(node, true);
jg = 0;
@ -1959,6 +1967,17 @@ export default class MapConroler extends cc.Component {
//特殊处理,方块带道具或者需要消除冰块
special_Treatment(node, type) {
// let switchsBlock = this.node.children.filter(child => {
// if (child.getComponent("Block")) {
// if (child.getComponent("Block").type == 15)
// return child
// }
// });
// if (switchsBlock.length > 0) {
// for (let i = 0; i < switchsBlock.length; i++) {
// switchsBlock[i].getChildByName("switchs").getComponent("Switchs").change();
// }
// }
let freezeBlock = this.node.children.filter(child => {
if (child.getComponent("Block")) {
if (child.getComponent("Block").type == 4)
@ -2019,6 +2038,7 @@ export default class MapConroler extends cc.Component {
}
let lockBlock = this.node.children.filter(child => {
if (child.getComponent("Block")) {
if (child.getComponent("Block").block_Info.lock != undefined)
@ -2027,7 +2047,7 @@ export default class MapConroler extends cc.Component {
});
if (lockBlock.length > 0) {
for (let i = 0; i < lockBlock.length; i++) {
lockBlock[i].getComponent("Block").changeSwitch();
lockBlock[i].getChildByName("switchs").getComponent("Switchs").change();
}
}
@ -2559,7 +2579,7 @@ export default class MapConroler extends cc.Component {
if (data.type == "time") {
this.timeNumber = 21;
this.add_Time += 20;
NumberToImage.getTimeMargi3(20, 45, "custom", this.timeLabel)
NumberToImage.getTimeMargi3(20, 45, "company_", this.timeLabel)
}
this.blockNum = this.blocks.length;
@ -2582,7 +2602,7 @@ export default class MapConroler extends cc.Component {
this.pause = false;
this.timeNumber = 21;
this.add_Time += 20;
NumberToImage.getTimeMargi3(20, 45, "custom", this.timeLabel)
NumberToImage.getTimeMargi3(20, 45, "company_", this.timeLabel)
this.blockNum = this.blocks.length;
if (this.blockNum == 0) this.nextLevel(1);
this.node.parent.parent.getChildByName("Lose").active = false;
@ -2918,7 +2938,7 @@ export default class MapConroler extends cc.Component {
if (this.timeNumber <= 0) {
this.stopTimeCutDown();
// var timeTemp = cc.fx.GameTool.getTimeMargin3(this.timeNumber);
NumberToImage.getTimeMargi3(this.timeNumber, 45, "custom", this.timeLabel)
NumberToImage.getTimeMargi3(this.timeNumber, 45, "company_", this.timeLabel)
// this.timeLabel.string = timeTemp.toString();
if (!this.pause) this.failLevel("time");
}
@ -2929,7 +2949,7 @@ export default class MapConroler extends cc.Component {
if (!this.pause) this.failLevel("time");
}
// var timeTemp = cc.fx.GameTool.getTimeMargin3(this.timeNumber);
NumberToImage.getTimeMargi3(this.timeNumber, 45, "custom", this.timeLabel)
NumberToImage.getTimeMargi3(this.timeNumber, 45, "company_", this.timeLabel)
// this.timeLabel.string = timeTemp.toString();
}
}.bind(this);
@ -3028,7 +3048,7 @@ export default class MapConroler extends cc.Component {
cc.fx.GameConfig.GM_INFO.freezeAmount -= 1;
// 倒计时加20秒
this.timeNumber += 20;
NumberToImage.getTimeMargi3(this.timeNumber, 45, "custom", this.timeLabel)
NumberToImage.getTimeMargi3(this.timeNumber, 45, "company_", this.timeLabel)
if (cc.fx.GameConfig.GM_INFO.freezeAmount < 0)
cc.fx.GameConfig.GM_INFO.freezeAmount = 0;
this.setPropNum();
@ -4330,7 +4350,7 @@ export default class MapConroler extends cc.Component {
rank.active = true;
Career.active = false;
NumberToImage.numberToImageNodes4((cc.fx.GameConfig.GM_INFO.addLevel + 1), 40, 15, "custom", rank.getChildByName("addLevel"), true);
NumberToImage.numberToImageNodes4((cc.fx.GameConfig.GM_INFO.addLevel + 1), 40, 15, "company_", rank.getChildByName("addLevel"), true);
for (let i = 0; i < rank.getChildByName("addLevel").children.length; i++) {
rank.getChildByName("addLevel").children[i].color = cc.Color.WHITE;
}

View File

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

View File

@ -42,9 +42,11 @@ export default class Lock extends cc.Component {
if (this.node.parent) this.node.parent.getComponent("Block").type = 0;
}
else if (this.type == "wall") {
if (this.node.parent.getChildByName("wall").getComponent("Wall").special == 6) {
if (this.node.parent) this.node.parent.getChildByName("wall").getComponent("Wall").special = 0;
if (this.node.parent) this.node.parent.getChildByName("wall").getComponent("Wall").specialBackup = 0;
}
}
this.node.destroy();
this.node.removeFromParent();
}

View File

@ -0,0 +1,101 @@
// Learn TypeScript:
// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import MapConroler from "../Map";
import NumberToImage from "../NumberToImage";
const { ccclass, property } = cc._decorator;
@ccclass
export default class Question extends cc.Component {
static _instance: any;
time: number = 60;
@property(cc.Material)
freeze: cc.Material = null;
@property(cc.Prefab)
ice: cc.Prefab = null;
// mapInfo: number[][] = [];
onLoad() {
}
start() {
}
init(time, type) {
// if (time) this.time = time;
// this.node.getChildByName("time").active = true;
// NumberToImage.numberToImageNodes(this.time, 40, 25, "pc_num_", this.node.getChildByName("time"), false);
// this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString();
}
change() {
if (this.node) {
if (this.node.parent) {
if (this.node.parent.getComponent("Block").block_Info.lock == false) {
this.node.opacity = 100;
}
else {
this.node.opacity = 0;
}
this.node.parent.getComponent("Block").block_Info.lock = !this.node.parent.getComponent("Block").block_Info.lock;
}
}
}
reduce(number) {
if (this.node.parent) {
if (this.node.parent.getComponent("Block").block_Info.floor) {
return;
}
}
// this.time -= number;
// if (this.time <= 0) this.time = 0
// NumberToImage.numberToImageNodes(this.time, 40, 25, "pc_num_", this.node.getChildByName("time"), false);
// this.node.getChildByName("time").scaleX = 1.2;
// this.node.getChildByName("time").scaleY = 1.2;
// this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString();
if (this.time <= 0) {
this.node.getChildByName("bingkuai").active = true;
const skeleton = this.node.getChildByName("bingkuai").getComponent(sp.Skeleton);
skeleton.setAnimation(1, "bingkuai", false);
this.node.getChildByName("icon").active = true;
this.node.getChildByName("time").active = false;
if (this.node) {
if (this.node.parent) this.node.parent.getComponent("Block").resetQuestionColor();
}
cc.tween(this.node.getChildByName("icon"))
.to(0.5, { opacity: 0 })
.start();
// cc.fx.AudioManager._instance.playEffect("freezeBlock", null);
// this.node.getChildByName("icon").getComponent(cc.Sprite).setMaterial(0,this.freeze);
// this.node.children.forEach(element => {
// element.destroy();
// });
setTimeout(() => {
if (this.node) {
// if (this.node.parent) this.node.parent.getComponent("Block").resetQuestionColor();
this.node.destroy();
this.node.removeFromParent();
}
}, 500);
}
}
// update (dt) {}
}

View File

@ -0,0 +1,10 @@
{
"ver": "1.1.0",
"uuid": "8711fd61-e019-4325-a930-d4da2f8eae82",
"importer": "typescript",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}

View File

@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1360,
"height": 869,
"width": 1343,
"height": 890,
"platformSettings": {},
"subMetas": {}
}

View File

@ -480,7 +480,7 @@
"ctor": "Float64Array",
"array": [
0,
519.912,
534.96,
0,
0,
0,
@ -689,7 +689,7 @@
"_contentSize": {
"__type__": "cc.Size",
"width": 870,
"height": 1100
"height": 1180
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@ -701,7 +701,7 @@
"ctor": "Float64Array",
"array": [
0,
468.865,
497.842,
0,
0,
0,
@ -757,7 +757,7 @@
"_contentSize": {
"__type__": "cc.Size",
"width": 870,
"height": 1120
"height": 1180
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@ -834,7 +834,7 @@
"_contentSize": {
"__type__": "cc.Size",
"width": 870,
"height": 1218
"height": 1188
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@ -950,7 +950,7 @@
"ctor": "Float64Array",
"array": [
0,
-163.5,
-133.5,
0,
0,
0,
@ -3282,7 +3282,7 @@
"ctor": "Float64Array",
"array": [
0,
-460.5,
-430.5,
0,
0,
0,
@ -4601,8 +4601,8 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
107.807,
-40.442,
44.314,
-52.022,
0,
0,
0,
@ -4841,7 +4841,7 @@
"ctor": "Float64Array",
"array": [
0,
-757.5,
-727.5,
0,
0,
0,
@ -7173,7 +7173,7 @@
"ctor": "Float64Array",
"array": [
0,
-1054.5,
-1024.5,
0,
0,
0,
@ -8775,7 +8775,7 @@
"_layoutSize": {
"__type__": "cc.Size",
"width": 870,
"height": 1218
"height": 1188
},
"_resize": 1,
"_N$layoutType": 2,
@ -8787,7 +8787,7 @@
"_N$startAxis": 0,
"_N$paddingLeft": 0,
"_N$paddingRight": 0,
"_N$paddingTop": 30,
"_N$paddingTop": 0,
"_N$paddingBottom": 30,
"_N$spacingX": 0,
"_N$spacingY": 30,

View File

@ -0,0 +1,459 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "801",
"map": [
8,
11
],
"time": 100,
"gap": [
{
"x": 6,
"y": 3,
"z": 0
},
{
"x": 6,
"y": 4,
"z": 0
},
{
"x": 6,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": 300,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -240,
"y": 180,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": -180,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": -60,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": -60,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -240,
"y": -300,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 0,
"y": 420,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 0,
"y": 180,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 0,
"y": 60,
"z": 0
},
"id": 310
},
{
"block": 4,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": 180,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 0,
"y": -300,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": -60,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": -120,
"y": -300,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 6,
"id": 360
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": -120,
"y": -180,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 6,
"id": 370
},
{
"block": 1,
"color": 5,
"type": 9,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 12,
"id": 380
},
{
"block": 1,
"color": 9,
"type": 9,
"position": {
"x": 0,
"y": -540,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 12,
"id": 390
},
{
"block": 0,
"color": 6,
"type": 3,
"position": {
"x": 360,
"y": 60,
"z": 0
},
"lockTime": 4,
"id": 400
},
{
"block": 21,
"color": 10,
"type": 2,
"position": {
"x": 240,
"y": 300,
"z": 0
},
"id": 410
},
{
"block": 0,
"color": 3,
"type": 2,
"position": {
"x": -240,
"y": 420,
"z": 0
},
"id": 420
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": -540,
"z": 0
},
"id": 420
},
{
"block": 2,
"color": 8,
"type": 2,
"position": {
"x": 240,
"y": -540,
"z": 0
},
"id": 430
},
{
"block": 1,
"color": 2,
"type": 2,
"position": {
"x": 360,
"y": 180,
"z": 0
},
"id": 430
},
{
"block": 0,
"color": 9,
"type": 4,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"freezeTime": 10,
"id": 440
},
{
"block": 0,
"color": 1,
"type": 8,
"position": {
"x": 0,
"y": -60,
"z": 0
},
"id": 450
}
]
],
"WALL_INFO": [
[
{
"id": 802,
"num": 4,
"color": 10,
"special": 3,
"length": 2,
"freeze": 12
},
{
"id": 803,
"num": 5,
"color": 10,
"special": 3,
"length": 0,
"freeze": 12
},
{
"id": 804,
"num": 8,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 805,
"num": 14,
"color": 1,
"special": 3,
"length": 1,
"freeze": 4
},
{
"id": 806,
"num": 30,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 807,
"num": 31,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 808,
"num": 17,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 809,
"num": 19,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 810,
"num": 11,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 811,
"num": 13,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 812,
"num": 0,
"color": 3,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": false
},
{
"id": 813,
"num": 1,
"color": 3,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 814,
"num": 2,
"color": 3,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 815,
"num": 16,
"color": 9,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 816,
"num": 18,
"color": 9,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 817,
"num": 28,
"color": 5,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 818,
"num": 29,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "7a8c7c28-7462-4fe2-ba01-ca31bd98f587",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,389 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "802",
"map": [
10,
8
],
"time": 120,
"gap": [
{
"x": 3,
"y": 1,
"z": 0
},
{
"x": 2,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 8,
"type": 3,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"lockTime": 5,
"id": 260
},
{
"block": 4,
"color": 2,
"type": 2,
"position": {
"x": -360,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 5,
"type": 2,
"position": {
"x": -360,
"y": 120,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 1,
"type": 2,
"position": {
"x": 480,
"y": -120,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 3,
"type": 2,
"position": {
"x": 480,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 9,
"type": 2,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 11,
"type": 8,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 7,
"type": 7,
"position": {
"x": 480,
"y": 240,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -360,
"y": -360,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 480,
"y": 0,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 1,
"type": 9,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 4,
"id": 390
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 4,
"id": 400
},
{
"block": 2,
"color": 3,
"type": 9,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 7,
"id": 410
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 7,
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 803,
"num": 1,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "02"
},
{
"id": 804,
"num": 2,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "02"
},
{
"id": 805,
"num": 5,
"color": 7,
"special": 3,
"length": 1,
"freeze": 3
},
{
"id": 806,
"num": 10,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 807,
"num": 13,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 808,
"num": 19,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 809,
"num": 21,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 810,
"num": 25,
"color": 2,
"special": 0,
"length": 3,
"colorArray": "18"
},
{
"id": 811,
"num": 26,
"color": 2,
"special": 0,
"length": 0,
"colorArray": "18"
},
{
"id": 812,
"num": 27,
"color": 2,
"special": 0,
"length": 0,
"colorArray": "18"
},
{
"id": 813,
"num": 20,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 814,
"num": 14,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 815,
"num": 16,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 816,
"num": 6,
"color": 5,
"special": 3,
"length": 1,
"freeze": 5
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "9bf25811-07db-4a37-8b86-9e16928806be",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,367 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "803",
"map": [
8,
9
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": -300,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 300,
"z": 0
},
"id": 250
},
{
"block": 22,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -240,
"y": -420,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 0,
"y": 60,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": -60,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": -180,
"z": 0
},
"id": 310
},
{
"block": 4,
"color": 5,
"type": 2,
"position": {
"x": 120,
"y": -420,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 3,
"type": 2,
"position": {
"x": 360,
"y": -420,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 1,
"type": 2,
"position": {
"x": -240,
"y": 180,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 4,
"type": 2,
"position": {
"x": -240,
"y": 60,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 5,
"type": 2,
"position": {
"x": 120,
"y": -60,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 3,
"type": 3,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"lockTime": 5,
"id": 360
},
{
"block": 1,
"color": 5,
"type": 7,
"position": {
"x": -120,
"y": -60,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 10,
"type": 7,
"position": {
"x": 0,
"y": -180,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 9,
"type": 9,
"position": {
"x": 360,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 10,
"id": 390
},
{
"block": 22,
"color": 7,
"type": 9,
"position": {
"x": 240,
"y": 180,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 10,
"id": 400
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 360,
"y": 60,
"z": 0
},
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 804,
"num": 2,
"color": 10,
"special": 3,
"length": 2,
"freeze": 7
},
{
"id": 805,
"num": 3,
"color": 10,
"special": 3,
"length": 0,
"freeze": 7
},
{
"id": 806,
"num": 8,
"color": 9,
"special": 0,
"length": 1
},
{
"id": 807,
"num": 12,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 808,
"num": 14,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 809,
"num": 16,
"color": 3,
"special": 3,
"length": 2,
"freeze": 9
},
{
"id": 810,
"num": 18,
"color": 3,
"special": 3,
"length": 0,
"freeze": 9
},
{
"id": 811,
"num": 24,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 812,
"num": 25,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 813,
"num": 20,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 814,
"num": 21,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 815,
"num": 22,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 816,
"num": 17,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 817,
"num": 7,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 818,
"num": 9,
"color": 7,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "fc2ea642-dc15-40ee-97cc-0570aee13238",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,422 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "804",
"map": [
8,
9
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": -60,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": -60,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 60,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": -180,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 60,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": 180,
"z": 0
},
"id": 280
},
{
"block": 22,
"color": 4,
"type": 0,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": -60,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 360,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": -180,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": -60,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 0,
"y": -180,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 120,
"y": 60,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": -420,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": 300,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 8,
"type": 4,
"position": {
"x": -240,
"y": -420,
"z": 0
},
"freezeTime": 5,
"id": 380
},
{
"block": 0,
"color": 6,
"type": 4,
"position": {
"x": 360,
"y": -60,
"z": 0
},
"freezeTime": 10,
"id": 390
},
{
"block": 2,
"color": 2,
"type": 9,
"position": {
"x": -240,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 5,
"id": 400
},
{
"block": 2,
"color": 5,
"type": 9,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 5,
"id": 410
},
{
"block": 1,
"color": 3,
"type": 9,
"position": {
"x": 120,
"y": 300,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 15,
"id": 420
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 240,
"y": 300,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 15,
"id": 430
},
{
"block": 1,
"color": 9,
"type": 7,
"position": {
"x": 360,
"y": -300,
"z": 0
},
"id": 440
}
]
],
"WALL_INFO": [
[
{
"id": 805,
"num": 0,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 806,
"num": 1,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 807,
"num": 2,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 808,
"num": 4,
"color": 8,
"special": 4,
"length": 1
},
{
"id": 809,
"num": 5,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 810,
"num": 6,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 811,
"num": 8,
"color": 4,
"special": 4,
"length": 2
},
{
"id": 812,
"num": 10,
"color": 4,
"special": 4,
"length": 0
},
{
"id": 813,
"num": 16,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 814,
"num": 18,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 815,
"num": 24,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 816,
"num": 25,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 817,
"num": 19,
"color": 5,
"special": 4,
"length": 2
},
{
"id": 818,
"num": 20,
"color": 5,
"special": 4,
"length": 0
},
{
"id": 819,
"num": 15,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 820,
"num": 17,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 821,
"num": 7,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 822,
"num": 9,
"color": 10,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "a1501ecd-fab9-4835-bcae-10366c854ebb",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,353 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "805",
"map": [
8,
8
],
"time": 130,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 4,
"color": 2,
"type": 0,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"id": 250
},
{
"block": 4,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 1,
"type": 7,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 5,
"type": 8,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 8,
"type": 8,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 380
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"adhesiveTime": 1,
"id": 390
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 400
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"adhesiveTime": 1,
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 806,
"num": 1,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "20"
},
{
"id": 807,
"num": 2,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "20"
},
{
"id": 808,
"num": 9,
"color": 5,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 809,
"num": 11,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 810,
"num": 13,
"color": 8,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 811,
"num": 15,
"color": 8,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 812,
"num": 19,
"color": 10,
"special": 0,
"length": 2,
"colorArray": "96"
},
{
"id": 813,
"num": 20,
"color": 10,
"special": 0,
"length": 0,
"colorArray": "96"
},
{
"id": 814,
"num": 16,
"color": 2,
"special": 0,
"length": 1
},
{
"id": 815,
"num": 10,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 816,
"num": 12,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 817,
"num": 6,
"color": 6,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "42ad027c-b8e3-42f8-8147-897f7a3d4946",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,398 @@
{
"LEVEL_INFO": [
{
"risefall": [
{
"x": 4,
"y": 7,
"color": "3"
},
{
"x": 4,
"y": 6,
"color": "3"
}
],
"id": "806",
"map": [
9,
9
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 2,
"type": 14,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 2,
"type": 14,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 3,
"type": 14,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 5,
"type": 14,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 10,
"type": 14,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 330
},
{
"block": 4,
"color": 9,
"type": 0,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 340
},
{
"block": 11,
"color": 3,
"type": 0,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"id": 350
},
{
"block": 21,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 6,
"type": 8,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 390
},
{
"block": 1,
"color": 10,
"type": 9,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 15,
"id": 400
},
{
"block": 2,
"color": 4,
"type": 9,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 15,
"id": 410
},
{
"block": 0,
"color": 10,
"type": 4,
"position": {
"x": -60,
"y": 300,
"z": 0
},
"freezeTime": 12,
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 807,
"num": 1,
"color": 10,
"special": 3,
"length": 1,
"freeze": 5
},
{
"id": 808,
"num": 5,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 809,
"num": 6,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 810,
"num": 8,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 811,
"num": 10,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 812,
"num": 12,
"color": 3,
"special": 3,
"length": 3,
"freeze": 7
},
{
"id": 813,
"num": 14,
"color": 3,
"special": 3,
"length": 0,
"freeze": 7
},
{
"id": 814,
"num": 16,
"color": 3,
"special": 3,
"length": 0,
"freeze": 7
},
{
"id": 815,
"num": 18,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 816,
"num": 20,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 817,
"num": 26,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 818,
"num": 27,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 819,
"num": 23,
"color": 2,
"special": 0,
"length": 1
},
{
"id": 820,
"num": 17,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 821,
"num": 7,
"color": 6,
"special": 6,
"length": 2,
"lockTime": 5
},
{
"id": 822,
"num": 9,
"color": 6,
"special": 6,
"length": 0,
"lockTime": 5
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "894e4abe-7496-4382-9442-6c8686f5b1ee",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,355 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "807",
"map": [
9,
9
],
"time": 120,
"gap": [
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 2,
"y": 7,
"z": 0
},
{
"x": 3,
"y": 7,
"z": 0
},
{
"x": 4,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 230
},
{
"block": 4,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": -300,
"z": 0
},
"id": 240
},
{
"block": 11,
"color": 4,
"type": 0,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"id": 270
},
{
"block": 22,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"id": 300
},
{
"block": 4,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 6,
"type": 2,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 8,
"type": 2,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 3,
"type": 2,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 5,
"type": 2,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 4,
"type": 3,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"lockTime": 4,
"id": 360
},
{
"block": 1,
"color": 10,
"type": 7,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"id": 370
}
]
],
"WALL_INFO": [
[
{
"id": 808,
"num": 2,
"color": 5,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": false
},
{
"id": 809,
"num": 3,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 810,
"num": 4,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 811,
"num": 7,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 812,
"num": 9,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 813,
"num": 16,
"color": 4,
"special": 0,
"length": 3
},
{
"id": 814,
"num": 19,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 815,
"num": 21,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 816,
"num": 24,
"color": 10,
"special": 3,
"length": 3,
"freeze": 6
},
{
"id": 817,
"num": 25,
"color": 10,
"special": 3,
"length": 0,
"freeze": 6
},
{
"id": 818,
"num": 26,
"color": 10,
"special": 3,
"length": 0,
"freeze": 6
},
{
"id": 819,
"num": 20,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 820,
"num": 15,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 821,
"num": 6,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 822,
"num": 8,
"color": 9,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "6d00c9e8-a053-41e3-8864-22691b858d56",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,386 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "708",
"map": [
8,
10
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 22,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 270
},
{
"block": 21,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 3,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 300
},
{
"block": 3,
"color": 1,
"type": 0,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": -480,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 0,
"y": -480,
"z": 0
},
"id": 410
},
{
"block": 1,
"color": 8,
"type": 1,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"stacking": 5,
"id": 420
},
{
"block": 5,
"color": 7,
"type": 8,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 420
},
{
"block": 1,
"color": 5,
"type": 1,
"position": {
"x": 120,
"y": 360,
"z": 0
},
"stacking": 8,
"id": 430
}
]
],
"WALL_INFO": [
[
{
"id": 709,
"num": 2,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 710,
"num": 6,
"color": 5,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 711,
"num": 7,
"color": 5,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 712,
"num": 9,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 713,
"num": 11,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 714,
"num": 17,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 715,
"num": 19,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 716,
"num": 26,
"color": 8,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 717,
"num": 27,
"color": 8,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 718,
"num": 22,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 719,
"num": 16,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 720,
"num": 12,
"color": 7,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 721,
"num": 14,
"color": 7,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 722,
"num": 10,
"color": 6,
"special": 3,
"length": 1,
"freeze": 11,
"longAndShort": 12,
"order": true
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "fe5bcd1a-6afa-4afe-8299-e2f328a4d8c9",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,320 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "709",
"map": [
8,
8
],
"time": 120,
"gap": [
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 6,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 3,
"type": 9,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 16,
"id": 220
},
{
"block": 2,
"color": 2,
"type": 9,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 16,
"id": 230
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 6,
"id": 240
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 6,
"id": 250
},
{
"block": 1,
"color": 1,
"type": 1,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"stacking": 8,
"id": 260
},
{
"block": 0,
"color": 10,
"type": 1,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"stacking": 8,
"id": 270
},
{
"block": 0,
"color": 4,
"type": 1,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"stacking": 8,
"id": 280
},
{
"block": 0,
"color": 2,
"type": 1,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"stacking": 4,
"id": 290
},
{
"block": 2,
"color": 9,
"type": 1,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"stacking": 6,
"id": 300
},
{
"block": 2,
"color": 7,
"type": 1,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"stacking": 5,
"id": 310
},
{
"block": 1,
"color": 8,
"type": 7,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 330
},
{
"block": 21,
"color": 5,
"type": 1,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"stacking": 7,
"id": 340
},
{
"block": 0,
"color": 5,
"type": 1,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"stacking": 7,
"id": 350
}
]
],
"WALL_INFO": [
[
{
"id": 710,
"num": 9,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 711,
"num": 11,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 712,
"num": 17,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 713,
"num": 23,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 714,
"num": 24,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 715,
"num": 14,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 716,
"num": 4,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 717,
"num": 10,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 718,
"num": 21,
"color": 8,
"special": 3,
"length": 1,
"freeze": 10
},
{
"id": 719,
"num": 2,
"color": 2,
"special": 0,
"length": 2,
"colorArray": "14144"
},
{
"id": 720,
"num": 3,
"color": 2,
"special": 0,
"length": 0,
"colorArray": "14144"
},
{
"id": 721,
"num": 0,
"color": 9,
"special": 0,
"length": 2,
"colorArray": "800"
},
{
"id": 722,
"num": 1,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "800"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "21f59aad-a73e-4596-bd6a-d3753345c22e",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,359 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "810",
"map": [
8,
9
],
"time": 110,
"gap": [
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 9,
"type": 2,
"position": {
"x": 240,
"y": -300,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 9,
"type": 2,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": -420,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": -60,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -60,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 2,
"type": 9,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 12,
"id": 330
},
{
"block": 2,
"color": 7,
"type": 9,
"position": {
"x": 0,
"y": 60,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 12,
"id": 340
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 0,
"y": -60,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 1,
"type": 14,
"position": {
"x": -240,
"y": 180,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 1,
"type": 14,
"position": {
"x": -240,
"y": -300,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 4,
"type": 14,
"position": {
"x": 0,
"y": -300,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 4,
"type": 14,
"position": {
"x": 240,
"y": 60,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 7,
"type": 14,
"position": {
"x": 360,
"y": -60,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 9,
"type": 14,
"position": {
"x": 360,
"y": -300,
"z": 0
},
"id": 360
},
{
"block": 11,
"color": 8,
"type": 14,
"position": {
"x": 120,
"y": 180,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 6,
"type": 8,
"position": {
"x": -240,
"y": 60,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 1,
"type": 6,
"position": {
"x": 120,
"y": -180,
"z": 0
},
"boomTime": 30,
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 811,
"num": 2,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 812,
"num": 3,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 813,
"num": 5,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 814,
"num": 6,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 815,
"num": 10,
"color": 3,
"special": 6,
"length": 2,
"lockTime": 7
},
{
"id": 816,
"num": 12,
"color": 3,
"special": 6,
"length": 0,
"lockTime": 7
},
{
"id": 817,
"num": 17,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 818,
"num": 19,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 819,
"num": 24,
"color": 4,
"special": 3,
"length": 2,
"freeze": 8
},
{
"id": 820,
"num": 25,
"color": 4,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 821,
"num": 21,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 822,
"num": 22,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 823,
"num": 20,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 824,
"num": 9,
"color": 8,
"special": 0,
"length": 3
},
{
"id": 825,
"num": 11,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 826,
"num": 13,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 827,
"num": 7,
"color": 6,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "b78d4c27-d9a5-4f05-9c53-ca9cae1199db",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,310 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "811",
"map": [
8,
9
],
"time": 125,
"gap": [
{
"x": 2,
"y": 1,
"z": 0
},
{
"x": 1,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": 300,
"z": 0
},
"id": 220
},
{
"block": 14,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": 180,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": 180,
"z": 0
},
"id": 240
},
{
"block": 5,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": -180,
"z": 0
},
"id": 260
},
{
"block": 20,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": -60,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 9,
"type": 4,
"position": {
"x": 360,
"y": -420,
"z": 0
},
"freezeTime": 7,
"id": 290
},
{
"block": 4,
"color": 5,
"type": 1,
"position": {
"x": -240,
"y": -60,
"z": 0
},
"stacking": 3,
"id": 300
},
{
"block": 2,
"color": 4,
"type": 1,
"position": {
"x": 120,
"y": 60,
"z": 0
},
"stacking": 10,
"id": 310
},
{
"block": 1,
"color": 6,
"type": 1,
"position": {
"x": -120,
"y": -300,
"z": 0
},
"stacking": 1,
"id": 320
},
{
"block": 1,
"color": 7,
"type": 1,
"position": {
"x": 0,
"y": -60,
"z": 0
},
"stacking": 8,
"id": 330
},
{
"block": 2,
"color": 10,
"type": 1,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"stacking": 4,
"id": 340
},
{
"block": 2,
"color": 3,
"type": 1,
"position": {
"x": 360,
"y": 60,
"z": 0
},
"stacking": 5,
"id": 350
}
]
],
"WALL_INFO": [
[
{
"id": 812,
"num": 0,
"color": 9,
"special": 5,
"length": 2
},
{
"id": 813,
"num": 1,
"color": 9,
"special": 5,
"length": 0
},
{
"id": 814,
"num": 3,
"color": 1,
"special": 5,
"length": 2
},
{
"id": 815,
"num": 4,
"color": 1,
"special": 5,
"length": 0
},
{
"id": 816,
"num": 7,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 817,
"num": 12,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 818,
"num": 14,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 819,
"num": 25,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 820,
"num": 21,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 821,
"num": 22,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 822,
"num": 23,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 823,
"num": 19,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 824,
"num": 13,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 825,
"num": 15,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 826,
"num": 6,
"color": 4,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "4577cba1-5cf2-45a5-a26f-2656afe5708a",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,356 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "812",
"map": [
8,
8
],
"time": 110,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 240
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 2,
"type": 9,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 20,
"id": 280
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 20,
"id": 290
},
{
"block": 2,
"color": 10,
"type": 9,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 11,
"id": 300
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 11,
"id": 310
},
{
"block": 1,
"color": 6,
"type": 1,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"stacking": 3,
"id": 320
},
{
"block": 1,
"color": 8,
"type": 1,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"stacking": 6,
"id": 330
},
{
"block": 2,
"color": 9,
"type": 1,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"stacking": 7,
"id": 340
},
{
"block": 2,
"color": 3,
"type": 1,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"stacking": 7,
"id": 350
},
{
"block": 1,
"color": 3,
"type": 1,
"position": {
"x": 0,
"y": -240,
"z": 0
},
"stacking": 10,
"id": 360
},
{
"block": 2,
"color": 1,
"type": 1,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"stacking": 10,
"id": 370
},
{
"block": 1,
"color": 5,
"type": 1,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"stacking": 1,
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 813,
"num": 1,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 814,
"num": 2,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 815,
"num": 4,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 816,
"num": 5,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 817,
"num": 7,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 818,
"num": 9,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 819,
"num": 15,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 820,
"num": 17,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 821,
"num": 23,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 822,
"num": 21,
"color": 6,
"special": 3,
"length": 1,
"freeze": 10
},
{
"id": 823,
"num": 18,
"color": 3,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 824,
"num": 19,
"color": 3,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 825,
"num": 6,
"color": 5,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 826,
"num": 8,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 827,
"num": 14,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 828,
"num": 16,
"color": 2,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "7482b701-df81-49f3-9af2-0ad42762fcda",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,375 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "813",
"map": [
10,
8
],
"time": 150,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 480,
"y": -240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -360,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 17,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"id": 230
},
{
"block": 16,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 480,
"y": 240,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 480,
"y": -360,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -360,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 5,
"color": 4,
"type": 8,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 8,
"type": 8,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 3,
"type": 8,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 11,
"type": 8,
"position": {
"x": 480,
"y": 120,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 11,
"type": 8,
"position": {
"x": -360,
"y": 120,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 12,
"id": 360
},
{
"block": 1,
"color": 4,
"type": 9,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 12,
"id": 370
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 380
},
{
"block": 1,
"color": 5,
"type": 16,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"questionTime": 11,
"id": 390
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"floor": 1,
"floorTime": 7,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 814,
"num": 3,
"color": 2,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 815,
"num": 4,
"color": 2,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 816,
"num": 13,
"color": 7,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 817,
"num": 15,
"color": 7,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 818,
"num": 25,
"color": 5,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 819,
"num": 26,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 820,
"num": 9,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 821,
"num": 11,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 822,
"num": 17,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 823,
"num": 19,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 824,
"num": 20,
"color": 9,
"special": 0,
"length": 1
},
{
"id": 825,
"num": 16,
"color": 3,
"special": 3,
"length": 1,
"freeze": 8
},
{
"id": 826,
"num": 12,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 827,
"num": 14,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 828,
"num": 10,
"color": 8,
"special": 3,
"length": 1,
"freeze": 4
},
{
"id": 829,
"num": 6,
"color": 1,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "80db1f42-a4b6-4002-bf59-eee2eaef5b92",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,384 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "814",
"map": [
9,
9
],
"time": 120,
"gap": [
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": -60,
"y": 300,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 13,
"id": 260
},
{
"block": 2,
"color": 4,
"type": 9,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 13,
"id": 270
},
{
"block": 0,
"color": 6,
"type": 2,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 7,
"type": 2,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 5,
"type": 2,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 8,
"type": 2,
"position": {
"x": -300,
"y": -300,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 2,
"type": 2,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"id": 320
},
{
"block": 5,
"color": 7,
"type": 3,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"lockTime": 5,
"id": 330
},
{
"block": 1,
"color": 1,
"type": 1,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"stacking": 3,
"id": 340
},
{
"block": 1,
"color": 2,
"type": 1,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"stacking": 3,
"id": 350
},
{
"block": 2,
"color": 8,
"type": 1,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"stacking": 1,
"id": 360
},
{
"block": 1,
"color": 9,
"type": 1,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"stacking": 4,
"id": 370
},
{
"block": 1,
"color": 3,
"type": 1,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"stacking": 9,
"id": 380
},
{
"block": 1,
"color": 10,
"type": 1,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"stacking": 7,
"id": 390
},
{
"block": 1,
"color": 9,
"type": 1,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"stacking": 10,
"id": 400
},
{
"block": 0,
"color": 3,
"type": 1,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"stacking": 4,
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 815,
"num": 0,
"color": 4,
"special": 0,
"length": 2,
"colorArray": "3533"
},
{
"id": 816,
"num": 1,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "3533"
},
{
"id": 817,
"num": 7,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 818,
"num": 8,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 819,
"num": 10,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 820,
"num": 12,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 821,
"num": 18,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 822,
"num": 20,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 823,
"num": 27,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 824,
"num": 25,
"color": 9,
"special": 0,
"length": 1
},
{
"id": 825,
"num": 17,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 826,
"num": 19,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 827,
"num": 11,
"color": 7,
"special": 0,
"length": 2,
"colorArray": "61"
},
{
"id": 828,
"num": 13,
"color": 7,
"special": 0,
"length": 0,
"colorArray": "61"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "57be2c10-b686-4961-92d9-00a0936f4815",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,432 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "815",
"map": [
9,
11
],
"time": 120,
"gap": [
{
"x": 6,
"y": 9,
"z": 0
},
{
"x": 6,
"y": 8,
"z": 0
},
{
"x": 7,
"y": 9,
"z": 0
},
{
"x": 7,
"y": 8,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
},
{
"x": 4,
"y": 1,
"z": 0
},
{
"x": 4,
"y": 2,
"z": 0
},
{
"x": 5,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": -540,
"z": 0
},
"id": 250
},
{
"block": 14,
"color": 8,
"type": 9,
"position": {
"x": -180,
"y": 300,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 11,
"id": 300
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": -300,
"y": 300,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 11,
"id": 310
},
{
"block": 2,
"color": 9,
"type": 2,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 10,
"type": 2,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"floor": 1,
"floorTime": 7,
"id": 310
},
{
"block": 2,
"color": 5,
"type": 2,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"floor": 2,
"floorTime": 4,
"id": 320
},
{
"block": 0,
"color": 1,
"type": 4,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"freezeTime": 6,
"floor": 2,
"floorTime": 4,
"id": 330
},
{
"block": 4,
"color": 7,
"type": 2,
"position": {
"x": -60,
"y": -540,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": -540,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": 300,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 380
},
{
"block": 20,
"color": 10,
"type": 3,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"lockTime": 4,
"id": 390
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 816,
"num": 0,
"color": 3,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 817,
"num": 1,
"color": 3,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 818,
"num": 35,
"color": 5,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 819,
"num": 36,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 820,
"num": 27,
"color": 7,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 821,
"num": 31,
"color": 7,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 822,
"num": 7,
"color": 8,
"special": 0,
"length": 3
},
{
"id": 823,
"num": 11,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 824,
"num": 17,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 825,
"num": 4,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 826,
"num": 10,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 827,
"num": 16,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 828,
"num": 22,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 829,
"num": 26,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 830,
"num": 38,
"color": 2,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "1a645571-27b9-488f-a1ff-516e4c8ae5a1",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,460 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "816",
"map": [
11,
8
],
"time": 120,
"gap": [
{
"x": 3,
"y": 6,
"z": 0
},
{
"x": 4,
"y": 6,
"z": 0
},
{
"x": 5,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 6,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"id": 240
},
{
"block": 4,
"color": 6,
"type": 0,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"id": 250
},
{
"block": 4,
"color": 10,
"type": 0,
"position": {
"x": 300,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": -300,
"y": -120,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 5,
"type": 4,
"position": {
"x": -420,
"y": -360,
"z": 0
},
"freezeTime": 8,
"id": 280
},
{
"block": 2,
"color": 1,
"type": 4,
"position": {
"x": 540,
"y": -360,
"z": 0
},
"freezeTime": 11,
"id": 290
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"adhesiveTime": 2,
"id": 300
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"adhesiveTime": 1,
"id": 310
},
{
"block": 0,
"color": 6,
"type": 9,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"adhesiveTime": 2,
"id": 320
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"adhesiveTime": 1,
"id": 330
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 340
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"id": 350
},
{
"block": 0,
"color": 6,
"type": 9,
"position": {
"x": -300,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 360
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": -300,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"id": 370
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 410
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -420,
"y": 120,
"z": 0
},
"id": 420
},
{
"block": 2,
"color": 8,
"type": 9,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 12,
"id": 410
},
{
"block": 2,
"color": 1,
"type": 9,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 12,
"id": 420
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 540,
"y": -120,
"z": 0
},
"id": 430
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 540,
"y": 120,
"z": 0
},
"id": 440
},
{
"block": 0,
"color": 2,
"type": 8,
"position": {
"x": -300,
"y": 240,
"z": 0
},
"id": 450
},
{
"block": 0,
"color": 9,
"type": 8,
"position": {
"x": 420,
"y": 240,
"z": 0
},
"id": 460
}
]
],
"WALL_INFO": [
[
{
"id": 817,
"num": 2,
"color": 10,
"special": 4,
"length": 3
},
{
"id": 818,
"num": 3,
"color": 10,
"special": 4,
"length": 0
},
{
"id": 819,
"num": 4,
"color": 10,
"special": 4,
"length": 0
},
{
"id": 820,
"num": 7,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 821,
"num": 9,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 822,
"num": 16,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 823,
"num": 23,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 824,
"num": 25,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 825,
"num": 28,
"color": 6,
"special": 4,
"length": 3
},
{
"id": 826,
"num": 29,
"color": 6,
"special": 4,
"length": 0
},
{
"id": 827,
"num": 30,
"color": 6,
"special": 4,
"length": 0
},
{
"id": 828,
"num": 22,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 829,
"num": 24,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 830,
"num": 15,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 831,
"num": 6,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 832,
"num": 8,
"color": 2,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "e780e117-6ea0-42d2-aa63-a624ef149cd7",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,385 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "816",
"map": [
9,
9
],
"time": 130,
"gap": [
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": 300,
"z": 0
},
"id": 240
},
{
"block": 10,
"color": 4,
"type": 0,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -300,
"y": -60,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"id": 300
},
{
"block": 21,
"color": 7,
"type": 0,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 7,
"type": 4,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"freezeTime": 6,
"id": 360
},
{
"block": 0,
"color": 2,
"type": 8,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 9,
"type": 7,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 1,
"type": 9,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 8,
"id": 390
},
{
"block": 0,
"color": 6,
"type": 9,
"position": {
"x": 60,
"y": 300,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 8,
"id": 400
},
{
"block": 2,
"color": 10,
"type": 9,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 5,
"id": 410
},
{
"block": 1,
"color": 7,
"type": 9,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 5,
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 817,
"num": 1,
"color": 9,
"special": 0,
"length": 1
},
{
"id": 818,
"num": 5,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 819,
"num": 6,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 820,
"num": 8,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 821,
"num": 10,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 822,
"num": 20,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 823,
"num": 22,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 824,
"num": 25,
"color": 4,
"special": 0,
"length": 3
},
{
"id": 825,
"num": 26,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 826,
"num": 27,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 827,
"num": 21,
"color": 6,
"special": 0,
"length": 1,
"colorArray": "57"
},
{
"id": 828,
"num": 11,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 829,
"num": 7,
"color": 2,
"special": 0,
"length": 2,
"colorArray": "14"
},
{
"id": 830,
"num": 9,
"color": 2,
"special": 0,
"length": 0,
"colorArray": "14"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "43121cc6-346a-44ff-bbce-e3147ed36820",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,387 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "819",
"map": [
8,
9
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 6,
"type": 16,
"position": {
"x": 120,
"y": -60,
"z": 0
},
"questionTime": 13,
"id": 210
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -240,
"y": -60,
"z": 0
},
"floor": 2,
"floorTime": 12,
"id": 230
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": -60,
"z": 0
},
"floor": 3,
"floorTime": 16,
"id": 230
},
{
"block": 5,
"color": 4,
"type": 16,
"position": {
"x": 120,
"y": -420,
"z": 0
},
"questionTime": 5,
"floor": 4,
"floorTime": 5,
"id": 240
},
{
"block": 2,
"color": 9,
"type": 16,
"position": {
"x": 0,
"y": -60,
"z": 0
},
"questionTime": 7,
"id": 250
},
{
"block": 1,
"color": 3,
"type": 16,
"position": {
"x": 360,
"y": -180,
"z": 0
},
"questionTime": 8,
"id": 260
},
{
"block": 1,
"color": 1,
"type": 16,
"position": {
"x": -120,
"y": -180,
"z": 0
},
"questionTime": 10,
"id": 270
},
{
"block": 1,
"color": 8,
"type": 8,
"position": {
"x": 120,
"y": 300,
"z": 0
},
"floor": 5,
"floorTime": 3,
"id": 280
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": -240,
"y": 180,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -240,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": -420,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": 180,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": 180,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 3,
"type": 8,
"position": {
"x": -120,
"y": 60,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 1,
"type": 8,
"position": {
"x": 240,
"y": 60,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": 120,
"y": -180,
"z": 0
},
"adhesiveTime": 2,
"id": 390
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": 0,
"y": -180,
"z": 0
},
"adhesiveTime": 1,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 820,
"num": 0,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 821,
"num": 1,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 822,
"num": 3,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 823,
"num": 4,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 824,
"num": 10,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 825,
"num": 12,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 826,
"num": 14,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 827,
"num": 16,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 828,
"num": 22,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 829,
"num": 23,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 830,
"num": 19,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 831,
"num": 20,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 832,
"num": 15,
"color": 1,
"special": 3,
"length": 2,
"freeze": 9
},
{
"id": 833,
"num": 17,
"color": 1,
"special": 3,
"length": 0,
"freeze": 9
},
{
"id": 834,
"num": 11,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 835,
"num": 13,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 836,
"num": 7,
"color": 3,
"special": 3,
"length": 2,
"freeze": 6
},
{
"id": 837,
"num": 9,
"color": 3,
"special": 3,
"length": 0,
"freeze": 6
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "70ec75ef-647b-4bed-9bf1-ef78b914f52f",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,354 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "820",
"map": [
8,
9
],
"time": 110,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": -120,
"y": 300,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": -300,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": -420,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": 300,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 6,
"type": 16,
"position": {
"x": 0,
"y": 180,
"z": 0
},
"questionTime": 7,
"id": 250
},
{
"block": 1,
"color": 8,
"type": 3,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"lockTime": 4,
"id": 260
},
{
"block": 1,
"color": 4,
"type": 2,
"position": {
"x": -120,
"y": -60,
"z": 0
},
"id": 270
},
{
"block": 5,
"color": 1,
"type": 2,
"position": {
"x": -120,
"y": 60,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 9,
"type": 2,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 5,
"type": 2,
"position": {
"x": 120,
"y": -180,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 3,
"type": 9,
"position": {
"x": 360,
"y": -60,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 12,
"id": 310
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 12,
"id": 320
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -240,
"y": -420,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -240,
"y": 300,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": 300,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": 300,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": 180,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": 60,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": -420,
"z": 0
},
"id": 390
},
{
"block": 4,
"color": 5,
"type": 0,
"position": {
"x": 0,
"y": -300,
"z": 0
},
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 821,
"num": 2,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 822,
"num": 3,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 823,
"num": 8,
"color": 5,
"special": 3,
"length": 1,
"freeze": 9
},
{
"id": 824,
"num": 12,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 825,
"num": 14,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 826,
"num": 18,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 827,
"num": 23,
"color": 2,
"special": 4,
"length": 2
},
{
"id": 828,
"num": 24,
"color": 2,
"special": 4,
"length": 0
},
{
"id": 829,
"num": 22,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 830,
"num": 19,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 831,
"num": 20,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 832,
"num": 15,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 833,
"num": 17,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 834,
"num": 7,
"color": 3,
"special": 4,
"length": 2
},
{
"id": 835,
"num": 9,
"color": 3,
"special": 4,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "92e6e8a4-7d60-437c-8934-4ef5d77cef5b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,364 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "821",
"map": [
8,
9
],
"time": 100,
"gap": [
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 2,
"y": 7,
"z": 0
},
{
"x": 3,
"y": 7,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": -60,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": -60,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": 180,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -60,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": -240,
"y": -300,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 12,
"id": 280
},
{
"block": 3,
"color": 6,
"type": 9,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 12,
"id": 290
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 120,
"y": -60,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 12,
"id": 300
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": 120,
"y": -180,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 12,
"id": 310
},
{
"block": 1,
"color": 4,
"type": 14,
"position": {
"x": 0,
"y": -180,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 5,
"type": 14,
"position": {
"x": 360,
"y": 300,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 5,
"type": 14,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"floor": 1,
"floorTime": 4,
"id": 320
},
{
"block": 2,
"color": 3,
"type": 14,
"position": {
"x": 120,
"y": -420,
"z": 0
},
"floor": 1,
"floorTime": 4,
"id": 330
},
{
"block": 2,
"color": 5,
"type": 14,
"position": {
"x": 0,
"y": 60,
"z": 0
},
"floor": 2,
"floorTime": 7,
"id": 340
},
{
"block": 0,
"color": 9,
"type": 16,
"position": {
"x": -240,
"y": 180,
"z": 0
},
"questionTime": 6,
"id": 350
},
{
"block": 2,
"color": 4,
"type": 8,
"position": {
"x": 120,
"y": 180,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 2,
"type": 7,
"position": {
"x": 360,
"y": -180,
"z": 0
},
"id": 370
}
]
],
"WALL_INFO": [
[
{
"id": 822,
"num": 3,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 823,
"num": 4,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 824,
"num": 7,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 825,
"num": 14,
"color": 6,
"special": 0,
"length": 3
},
{
"id": 826,
"num": 16,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 827,
"num": 20,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 828,
"num": 23,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 829,
"num": 24,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 830,
"num": 21,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 831,
"num": 22,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 832,
"num": 13,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 833,
"num": 15,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 834,
"num": 6,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 835,
"num": 8,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 836,
"num": 1,
"color": 2,
"special": 6,
"length": 2,
"lockTime": 5
},
{
"id": 837,
"num": 2,
"color": 2,
"special": 6,
"length": 0,
"lockTime": 5
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "60d5bee7-fa91-4010-bf8d-ea23acf75c34",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,426 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "822",
"map": [
9,
10
],
"time": 120,
"gap": [
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 7,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
},
{
"x": 7,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 300,
"y": 0,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 1,
"type": 9,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 7,
"id": 230
},
{
"block": 2,
"color": 7,
"type": 9,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 7,
"id": 240
},
{
"block": 2,
"color": 9,
"type": 16,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"questionTime": 6,
"id": 250
},
{
"block": 22,
"color": 1,
"type": 16,
"position": {
"x": 420,
"y": -240,
"z": 0
},
"questionTime": 11,
"id": 260
},
{
"block": 5,
"color": 6,
"type": 16,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"questionTime": 15,
"id": 270
},
{
"block": 1,
"color": 8,
"type": 9,
"position": {
"x": -180,
"y": 360,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 7,
"id": 280
},
{
"block": 1,
"color": 8,
"type": 9,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 7,
"id": 290
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": 360,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": -60,
"y": -120,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"id": 330
},
{
"block": 3,
"color": 6,
"type": 0,
"position": {
"x": 180,
"y": -480,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": -480,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": -180,
"y": -480,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": 120,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 420,
"y": -480,
"z": 0
},
"id": 410
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 420,
"y": 360,
"z": 0
},
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 823,
"num": 0,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 824,
"num": 1,
"color": 1,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 825,
"num": 2,
"color": 1,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 826,
"num": 29,
"color": 10,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 827,
"num": 30,
"color": 10,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 828,
"num": 3,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 829,
"num": 4,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 830,
"num": 15,
"color": 6,
"special": 0,
"length": 3
},
{
"id": 831,
"num": 17,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 832,
"num": 19,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 833,
"num": 33,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 834,
"num": 31,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 835,
"num": 32,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 836,
"num": 14,
"color": 8,
"special": 0,
"length": 3
},
{
"id": 837,
"num": 16,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 838,
"num": 18,
"color": 8,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "e760c602-b781-47f8-8289-89e713d6860c",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,452 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "823",
"map": [
9,
11
],
"time": 130,
"gap": [
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 7,
"y": 8,
"z": 0
},
{
"x": 7,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
},
{
"x": 7,
"y": 5,
"z": 0
},
{
"x": 7,
"y": 4,
"z": 0
},
{
"x": 7,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 11,
"type": 0,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 11,
"type": 0,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 6,
"type": 9,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"id": 230
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 60,
"y": 420,
"z": 0
},
"adhesiveTime": 1,
"id": 240
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": 420,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": 420,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 4,
"type": 14,
"position": {
"x": -300,
"y": -540,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 6,
"type": 14,
"position": {
"x": 300,
"y": -540,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 3,
"type": 14,
"position": {
"x": 420,
"y": -540,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 1,
"type": 14,
"position": {
"x": 180,
"y": 420,
"z": 0
},
"id": 310
},
{
"block": 21,
"color": 7,
"type": 9,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"id": 320
},
{
"block": 1,
"color": 7,
"type": 9,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"adhesiveTime": 1,
"id": 330
},
{
"block": 22,
"color": 10,
"type": 9,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"id": 340
},
{
"block": 1,
"color": 10,
"type": 9,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"adhesiveTime": 1,
"id": 350
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": 420,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 2,
"type": 16,
"position": {
"x": -180,
"y": -540,
"z": 0
},
"questionTime": 8,
"id": 390
},
{
"block": 2,
"color": 7,
"type": 16,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"questionTime": 9,
"id": 400
},
{
"block": 3,
"color": 5,
"type": 4,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"freezeTime": 10,
"id": 410
},
{
"block": 0,
"color": 5,
"type": 8,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 824,
"num": 0,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 825,
"num": 7,
"color": 2,
"special": 4,
"length": 2
},
{
"id": 826,
"num": 8,
"color": 2,
"special": 4,
"length": 0
},
{
"id": 827,
"num": 1,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 828,
"num": 14,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 829,
"num": 16,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 830,
"num": 20,
"color": 10,
"special": 4,
"length": 2
},
{
"id": 831,
"num": 22,
"color": 10,
"special": 4,
"length": 0
},
{
"id": 832,
"num": 35,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 833,
"num": 28,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 834,
"num": 29,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 835,
"num": 34,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 836,
"num": 15,
"color": 5,
"special": 6,
"length": 3,
"lockTime": 4
},
{
"id": 837,
"num": 17,
"color": 5,
"special": 6,
"length": 0,
"lockTime": 4
},
{
"id": 838,
"num": 19,
"color": 5,
"special": 6,
"length": 0,
"lockTime": 4
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "a278a613-1b72-4061-89c7-426eb917010e",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,475 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "824",
"map": [
9,
10
],
"time": 110,
"gap": [
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 2,
"y": 1,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": 360,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": 360,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": 180,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": 300,
"y": 360,
"z": 0
},
"floor": 1,
"floorTime": 12,
"id": 290
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": 360,
"z": 0
},
"floor": 2,
"floorTime": 5,
"id": 300
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -480,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": 240,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 370
},
{
"block": 10,
"color": 3,
"type": 0,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": -480,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 60,
"y": -480,
"z": 0
},
"id": 400
},
{
"block": 6,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"id": 410
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"id": 420
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"id": 430
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": 240,
"z": 0
},
"id": 440
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 15,
"id": 450
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 15,
"id": 460
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 6,
"id": 470
},
{
"block": 2,
"color": 5,
"type": 9,
"position": {
"x": -60,
"y": -120,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 6,
"id": 480
},
{
"block": 2,
"color": 4,
"type": 8,
"position": {
"x": 60,
"y": 240,
"z": 0
},
"id": 490
}
]
],
"WALL_INFO": [
[
{
"id": 825,
"num": 1,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 826,
"num": 2,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 827,
"num": 3,
"color": 2,
"special": 2,
"length": 1,
"lock": true
},
{
"id": 828,
"num": 6,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 829,
"num": 8,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 830,
"num": 11,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 831,
"num": 15,
"color": 5,
"special": 3,
"length": 1,
"freeze": 10
},
{
"id": 832,
"num": 20,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 833,
"num": 22,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 834,
"num": 29,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 835,
"num": 26,
"color": 9,
"special": 2,
"length": 1,
"lock": true
},
{
"id": 836,
"num": 24,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 837,
"num": 25,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 838,
"num": 14,
"color": 4,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "064ae7d9-f3ed-4683-9de9-d6be94f2757d",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,385 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "825",
"map": [
8,
9
],
"time": 125,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": -60,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": 60,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": -60,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": -60,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": 60,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": 300,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": 180,
"z": 0
},
"id": 280
},
{
"block": 20,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"id": 290
},
{
"block": 4,
"color": 8,
"type": 0,
"position": {
"x": 360,
"y": -420,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 0,
"y": -180,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 9,
"type": 9,
"position": {
"x": -240,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 14,
"id": 320
},
{
"block": 2,
"color": 4,
"type": 9,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 14,
"id": 330
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 180,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": -120,
"y": -300,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 14,
"id": 350
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -240,
"y": -300,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 14,
"id": 360
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -120,
"y": -60,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 14,
"id": 370
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": -120,
"y": 60,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 14,
"id": 380
},
{
"block": 1,
"color": 5,
"type": 7,
"position": {
"x": -120,
"y": -180,
"z": 0
},
"id": 390
},
{
"block": 1,
"color": 2,
"type": 8,
"position": {
"x": -120,
"y": -420,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 10,
"type": 6,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"boomTime": 42,
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 826,
"num": 1,
"color": 8,
"special": 5,
"length": 3
},
{
"id": 827,
"num": 2,
"color": 8,
"special": 5,
"length": 0
},
{
"id": 828,
"num": 3,
"color": 8,
"special": 5,
"length": 0
},
{
"id": 829,
"num": 5,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 830,
"num": 6,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 831,
"num": 8,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 832,
"num": 10,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 833,
"num": 16,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 834,
"num": 23,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 835,
"num": 24,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 836,
"num": 21,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 837,
"num": 19,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 838,
"num": 20,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 839,
"num": 15,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 840,
"num": 17,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 841,
"num": 7,
"color": 1,
"special": 5,
"length": 2
},
{
"id": 842,
"num": 9,
"color": 1,
"special": 5,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "b771ceb1-46fa-4a84-8c54-081b7cbd61a9",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,403 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "826",
"map": [
9,
9
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": -60,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 4,
"type": 14,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"id": 320
},
{
"block": 22,
"color": 7,
"type": 14,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"id": 330
},
{
"block": 4,
"color": 10,
"type": 14,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 9,
"type": 14,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 7,
"type": 14,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 2,
"type": 9,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 12,
"id": 360
},
{
"block": 1,
"color": 6,
"type": 9,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 12,
"id": 370
},
{
"block": 1,
"color": 6,
"type": 9,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 16,
"id": 380
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 16,
"id": 390
},
{
"block": 2,
"color": 6,
"type": 8,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 1,
"type": 1,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"stacking": 9,
"id": 410
},
{
"block": 1,
"color": 10,
"type": 1,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"stacking": 9,
"id": 420
},
{
"block": 0,
"color": 2,
"type": 1,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"stacking": 1,
"id": 430
},
{
"block": 1,
"color": 4,
"type": 1,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"stacking": 1,
"id": 440
},
{
"block": 1,
"color": 5,
"type": 7,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"id": 450
}
]
],
"WALL_INFO": [
[
{
"id": 827,
"num": 1,
"color": 1,
"special": 2,
"length": 1,
"lock": true
},
{
"id": 828,
"num": 3,
"color": 9,
"special": 2,
"length": 1,
"lock": true
},
{
"id": 829,
"num": 6,
"color": 5,
"special": 6,
"length": 1,
"lockTime": 5
},
{
"id": 830,
"num": 12,
"color": 6,
"special": 0,
"length": 3
},
{
"id": 831,
"num": 14,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 832,
"num": 16,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 833,
"num": 26,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 834,
"num": 27,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 835,
"num": 21,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 836,
"num": 15,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 837,
"num": 17,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 838,
"num": 7,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 839,
"num": 9,
"color": 7,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "6a44283c-d9ec-4bf2-858c-e994040cd553",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,399 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "827",
"map": [
9,
10
],
"time": 110,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -480,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": -480,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"id": 290
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 300,
"y": -480,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -180,
"y": -240,
"z": 0
},
"id": 340
},
{
"block": 11,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": 240,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 5,
"type": 7,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 3,
"type": 16,
"position": {
"x": 420,
"y": -240,
"z": 0
},
"questionTime": 2,
"id": 380
},
{
"block": 2,
"color": 7,
"type": 16,
"position": {
"x": -180,
"y": -480,
"z": 0
},
"questionTime": 4,
"id": 390
},
{
"block": 3,
"color": 9,
"type": 16,
"position": {
"x": 420,
"y": 360,
"z": 0
},
"questionTime": 6,
"id": 400
},
{
"block": 0,
"color": 5,
"type": 16,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"questionTime": 7,
"id": 410
},
{
"block": 2,
"color": 4,
"type": 16,
"position": {
"x": -300,
"y": -240,
"z": 0
},
"questionTime": 9,
"id": 420
},
{
"block": 3,
"color": 10,
"type": 16,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"questionTime": 10,
"id": 430
},
{
"block": 0,
"color": 6,
"type": 16,
"position": {
"x": -300,
"y": -480,
"z": 0
},
"questionTime": 12,
"id": 440
},
{
"block": 0,
"color": 5,
"type": 16,
"position": {
"x": 420,
"y": -480,
"z": 0
},
"questionTime": 13,
"id": 450
},
{
"block": 2,
"color": 8,
"type": 16,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"questionTime": 15,
"id": 460
},
{
"block": 0,
"color": 1,
"type": 16,
"position": {
"x": 60,
"y": -480,
"z": 0
},
"questionTime": 5,
"floor": 1,
"floorTime": 10,
"id": 470
},
{
"block": 0,
"color": 6,
"type": 16,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"questionTime": 16,
"id": 480
},
{
"block": 0,
"color": 7,
"type": 16,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"questionTime": 17,
"id": 490
},
{
"block": 0,
"color": 9,
"type": 16,
"position": {
"x": 420,
"y": 240,
"z": 0
},
"questionTime": 17,
"id": 500
}
]
],
"WALL_INFO": [
[
{
"id": 828,
"num": 5,
"color": 5,
"special": 0,
"length": 2,
"colorArray": "4289349348"
},
{
"id": 829,
"num": 6,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "4289349348"
},
{
"id": 830,
"num": 27,
"color": 7,
"special": 0,
"length": 2,
"colorArray": "601756075"
},
{
"id": 831,
"num": 28,
"color": 7,
"special": 0,
"length": 0,
"colorArray": "601756075"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "4e434e35-20ab-40fc-86d8-e1c3a6d9786d",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,372 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "828",
"map": [
7,
11
],
"time": 85,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 220
},
{
"block": 19,
"color": 5,
"type": 0,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 300,
"y": 300,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": 300,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"id": 270
},
{
"block": 3,
"color": 5,
"type": 0,
"position": {
"x": 180,
"y": -540,
"z": 0
},
"id": 280
},
{
"block": 20,
"color": 6,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": -60,
"y": 420,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": 420,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 6,
"type": 4,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"freezeTime": 8,
"id": 320
},
{
"block": 2,
"color": 6,
"type": 1,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"stacking": 1,
"id": 330
},
{
"block": 2,
"color": 9,
"type": 1,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"stacking": 5,
"id": 340
},
{
"block": 1,
"color": 4,
"type": 1,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"stacking": 6,
"id": 350
},
{
"block": 1,
"color": 7,
"type": 1,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"stacking": 9,
"id": 360
},
{
"block": 2,
"color": 3,
"type": 4,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"freezeTime": 8,
"floor": 1,
"floorTime": 10,
"id": 370
},
{
"block": 2,
"color": 1,
"type": 4,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"freezeTime": 4,
"floor": 1,
"floorTime": 10,
"id": 380
},
{
"block": 2,
"color": 6,
"type": 1,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"stacking": 1,
"floor": 1,
"floorTime": 10,
"id": 390
}
]
],
"WALL_INFO": [
[
{
"id": 829,
"num": 2,
"color": 7,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 830,
"num": 3,
"color": 7,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 831,
"num": 4,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 832,
"num": 5,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 833,
"num": 6,
"color": 1,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 834,
"num": 7,
"color": 1,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 835,
"num": 12,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 836,
"num": 14,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 837,
"num": 16,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 838,
"num": 25,
"color": 3,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 839,
"num": 26,
"color": 3,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 840,
"num": 23,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 841,
"num": 24,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 842,
"num": 21,
"color": 6,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 843,
"num": 22,
"color": 6,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 844,
"num": 17,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 845,
"num": 9,
"color": 10,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "72530308-32d1-4e40-8a4d-dc0c41c47c4b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,463 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "829",
"map": [
8,
10
],
"time": 110,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": 360,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 360,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 360,
"y": -480,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 310
},
{
"block": 22,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 0,
"y": 360,
"z": 0
},
"id": 380
},
{
"block": 21,
"color": 6,
"type": 9,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 390
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 400
},
{
"block": 22,
"color": 8,
"type": 9,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 410
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 420
},
{
"block": 1,
"color": 11,
"type": 0,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 430
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 440
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": 0,
"y": -240,
"z": 0
},
"adhesiveTime": 1,
"id": 450
},
{
"block": 0,
"color": 10,
"type": 8,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 460
},
{
"block": 0,
"color": 3,
"type": 8,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 470
},
{
"block": 0,
"color": 6,
"type": 8,
"position": {
"x": 120,
"y": 360,
"z": 0
},
"id": 480
},
{
"block": 0,
"color": 8,
"type": 8,
"position": {
"x": 0,
"y": -480,
"z": 0
},
"id": 490
}
]
],
"WALL_INFO": [
[
{
"id": 830,
"num": 1,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 831,
"num": 4,
"color": 9,
"special": 3,
"length": 2,
"freeze": 10
},
{
"id": 832,
"num": 5,
"color": 9,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 833,
"num": 9,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 834,
"num": 13,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 835,
"num": 15,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 836,
"num": 19,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 837,
"num": 24,
"color": 2,
"special": 3,
"length": 2,
"freeze": 15
},
{
"id": 838,
"num": 25,
"color": 2,
"special": 3,
"length": 0,
"freeze": 15
},
{
"id": 839,
"num": 21,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 840,
"num": 16,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 841,
"num": 18,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 842,
"num": 12,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 843,
"num": 14,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 844,
"num": 8,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 845,
"num": 10,
"color": 7,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "a0d1b030-b1d9-4f5c-aa5c-ef164f72a804",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,406 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "830",
"map": [
8,
10
],
"time": 100,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": -480,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 290
},
{
"block": 21,
"color": 4,
"type": 4,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"freezeTime": 11,
"id": 300
},
{
"block": 22,
"color": 1,
"type": 4,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"freezeTime": 16,
"id": 310
},
{
"block": 1,
"color": 4,
"type": 3,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"lockTime": 5,
"id": 320
},
{
"block": 0,
"color": 5,
"type": 2,
"position": {
"x": -120,
"y": 360,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 1,
"type": 2,
"position": {
"x": 240,
"y": 360,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 9,
"type": 2,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 7,
"type": 2,
"position": {
"x": 0,
"y": -480,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 3,
"type": 2,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 8,
"type": 8,
"position": {
"x": -240,
"y": 360,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 6,
"type": 8,
"position": {
"x": 360,
"y": 360,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 10,
"type": 8,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 3,
"type": 8,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 410
},
{
"block": 2,
"color": 6,
"type": 1,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"stacking": 8,
"id": 420
},
{
"block": 2,
"color": 1,
"type": 1,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"stacking": 9,
"id": 430
}
]
],
"WALL_INFO": [
[
{
"id": 831,
"num": 1,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 832,
"num": 2,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 833,
"num": 3,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 834,
"num": 4,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 835,
"num": 5,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 836,
"num": 6,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 837,
"num": 9,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 838,
"num": 11,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 839,
"num": 17,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 840,
"num": 19,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 841,
"num": 25,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 842,
"num": 26,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 843,
"num": 23,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 844,
"num": 24,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 845,
"num": 21,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 846,
"num": 22,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 847,
"num": 18,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 848,
"num": 8,
"color": 8,
"special": 4,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "5d733a69-82ab-42de-b12f-f982f197ad0a",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,435 @@
[
{
"__type__": "cc.Prefab",
"_name": "",
"_objFlags": 0,
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"asyncLoadAssets": false,
"readonly": false
},
{
"__type__": "cc.Node",
"_name": "switchs",
"_objFlags": 0,
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 5
},
{
"__id__": 7
}
],
"_active": true,
"_components": [
{
"__id__": 10
},
{
"__id__": 11
}
],
"_prefab": {
"__id__": 12
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 120,
"height": 120
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "icon",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
}
],
"_prefab": {
"__id__": 4
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 120,
"height": 120
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": null,
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "48vFumJApBjb/xUEZIhVH6",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "time",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": false,
"_components": [],
"_prefab": {
"__id__": 6
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
8,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "afr7mnXGdMXZMpTDxTmfms",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "bingkuai",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 8
}
],
"_prefab": {
"__id__": 9
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"height": 0
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "sp.Skeleton",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 7
},
"_enabled": true,
"_materials": [
{
"__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
}
],
"paused": false,
"defaultSkin": "default",
"defaultAnimation": "",
"_preCacheMode": 0,
"_cacheMode": 0,
"loop": false,
"premultipliedAlpha": false,
"timeScale": 1,
"_accTime": 0,
"_playCount": 0,
"_frameCache": null,
"_curFrame": null,
"_skeletonCache": null,
"_animationName": "",
"_animationQueue": [],
"_headAniInfo": null,
"_playTimes": 0,
"_isAniComplete": true,
"_N$skeletonData": {
"__uuid__": "b98ab73e-af9c-47fa-862c-144da3071249"
},
"_N$_defaultCacheMode": 0,
"_N$debugSlots": false,
"_N$debugBones": false,
"_N$debugMesh": false,
"_N$useTint": false,
"_N$enableBatch": false,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "b8wpbx8wBCiIPB7kPP1L7Z",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 1
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": null,
"_type": 0,
"_sizeMode": 1,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": ""
},
{
"__type__": "8711f1h4BlDJakw1Novjq6C",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 1
},
"_enabled": true,
"freeze": null,
"ice": null,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "",
"sync": false
}
]

View File

@ -0,0 +1,9 @@
{
"ver": "1.3.2",
"uuid": "ff587655-c65a-46ca-8007-2dbec6388fc0",
"importer": "prefab",
"optimizationPolicy": "AUTO",
"asyncLoadAssets": false,
"readonly": false,
"subMetas": {}
}

View File

@ -1501,8 +1501,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 24,
"height": 24
"width": 31,
"height": 32
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@ -1554,7 +1554,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "f2be482c-00e8-404f-8fa0-350ce391ea27"
"__uuid__": "3487845b-9e45-4ba7-b513-e9b50b3468f0"
},
"_type": 0,
"_sizeMode": 1,
@ -1567,7 +1567,9 @@
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_atlas": {
"__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8"
},
"_id": ""
},
{
@ -2418,8 +2420,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 24,
"height": 24
"width": 31,
"height": 32
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@ -2471,7 +2473,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "f2be482c-00e8-404f-8fa0-350ce391ea27"
"__uuid__": "3487845b-9e45-4ba7-b513-e9b50b3468f0"
},
"_type": 0,
"_sizeMode": 1,
@ -2484,7 +2486,9 @@
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_atlas": {
"__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8"
},
"_id": ""
},
{