This commit is contained in:
COMPUTER\EDY 2025-11-11 18:57:55 +08:00
parent 36d8f767d1
commit 78dd6775ff
48 changed files with 11277 additions and 2777 deletions

View File

@ -104,6 +104,7 @@ export default class JiaZai extends cc.Component {
// LIFE-CYCLE CALLBACKS:
private onShowListener: () => void;
private onHideListener: () => void;
RankNode: cc.Node;
// LIFE-CYCLE CALLBACKS:
onLoad() {
@ -117,7 +118,7 @@ export default class JiaZai extends cc.Component {
this.closeAvatar();
this.setShareInfo();
this.checkTasks();
// this.getSRank();
this.checkAndSetPlayerPassLevel();
// this.checkDailyQuests();
//console.log("进入首页获取的share", cc.fx.GameConfig.GM_INFO.otherUid, cc.fx.GameConfig.GM_INFO.otherLevel);
@ -1925,14 +1926,14 @@ export default class JiaZai extends cc.Component {
},
2: {
time: endTiem.toString(),
progress: 0,
progress: 1,
progressLevel: 1,
activate: false,
free: [1],
passCheck: [1],
}
}
cc.fx.GameConfig.GM_INFO.getProgress = 0;
cc.fx.GameConfig.GM_INFO.getProgress = 1;
cc.fx.GameConfig.GM_INFO.getProgressLevel = 1;
Utils.setPassCheckInfo((result) => {
if (result.code === 1) {
@ -2261,6 +2262,7 @@ export default class JiaZai extends cc.Component {
//获取入职排行榜
getSRank() {
this.LoadCareer(null);
Utils.getSRank(res => {
let data = JSON.parse(res.data);
let role = data.role;
@ -2274,7 +2276,7 @@ export default class JiaZai extends cc.Component {
count: item[1] // 数值
}));
// 排序后的结果
// console.log(sortedArray);
let city = JSON.parse(JSON.stringify(cc.fx.GameConfig.CITY));
let rankData = [];
for (let i = 0; i < sortedArray.length; i++) {
@ -2303,8 +2305,38 @@ export default class JiaZai extends cc.Component {
rankingData: []
});
}
if (this.RankNode != null && this.RankNode != undefined) {
this.node.addChild(this.RankNode);
this.RankNode.zIndex = 3;
this.RankNode.getComponent("CareerManager").init(rankData);
} else {
this.LoadCareer(() => {
this.node.addChild(this.RankNode);
this.RankNode.zIndex = 3;
this.RankNode.getComponent("CareerManager").init(rankData);
})
}
console.log(rankData);
});
}
LoadCareer(callback: () => void) {
cc.assetManager.loadBundle('career', (err: Error, bundle: cc.AssetManager.Bundle) => {
if (err) {
cc.error(err.message || err);
return;
}
console.log("入职排行已加载好预制体1");
bundle.load('prefab/rankGame', cc.Prefab, (err: Error, prefab: cc.Prefab) => {
if (err) {
cc.error(err.message || err);
return;
}
console.log("入职排行已加载好预制体2");
this.RankNode = cc.instantiate(prefab);
if (callback)
callback();
});
});
}

View File

@ -4257,7 +4257,7 @@ export default class MapConroler extends cc.Component {
playHitSound() {
this.hitSoundCount++;
if (this.hitSoundCount > 5) {
this.hitSoundCount = 1;
this.hitSoundCount = 5;
}
cc.fx.AudioManager._instance.playEffect("hit" + (this.hitSoundCount), null);
this.hitSoundTime = Date.now(); // 记录当前播放时间

View File

@ -2,12 +2,20 @@
"ver": "1.1.3",
"uuid": "c33b8235-e2f9-4501-9df3-b12e34e14b61",
"importer": "folder",
"isBundle": false,
"isBundle": true,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"priority": 2,
"compressionType": {
"wechatgame": "subpackage"
},
"optimizeHotUpdate": {
"wechatgame": false
},
"inlineSpriteFrames": {
"wechatgame": false
},
"isRemoteBundle": {
"wechatgame": false
},
"subMetas": {}
}

View File

@ -17,52 +17,53 @@ export default class CareerItem extends cc.Component {
/**数据改变时调用 */
public dataChanged() {
let useravatarIcon = this.data.useravatarIcon;
useravatarIcon = "kuang_" + (parseInt(useravatarIcon) + 1);
this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame =
this.ui.getSpriteFrame(useravatarIcon);
console.log("用户头像框:", this.data.useravatarIcon, useravatarIcon);
this.data.username = cc.fx.GameTool.subName(this.data.username, 7);
let name = this.data.username;
if (name == "user") name = "匿名玩家";
// this.node.getChildByName("rankLab").getComponent(cc.Label).string = this.data.rank + "";
this.node.getChildByName("nameLab").getComponent(cc.Label).string = name + "";
// this.node.getChildByName("totalLab").getComponent(cc.Label).string = this.data.levelAmount;
// let useravatarIcon = this.data.useravatarIcon;
// useravatarIcon = "kuang_" + (parseInt(useravatarIcon) + 1);
// this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame =
// this.ui.getSpriteFrame(useravatarIcon);
// console.log("用户头像框:", this.data.useravatarIcon, useravatarIcon);
// this.data.username = cc.fx.GameTool.subName(this.data.username, 7);
// let name = this.data.username;
// if (name == "user") name = "匿名玩家";
NumberToImage.numberToImageNodes3((this.data.rank), 43, 15, "rank_", this.node.getChildByName("rankLab"), true);
NumberToImage.numberToImageNodes3(this.data.levelAmount, 43, 15, "level_", this.node.getChildByName("totalLab"), true);
this.node.getChildByName("rank").getComponent(cc.Label).string = this.data.rank + "";
// this.node.getChildByName("nameLab").getComponent(cc.Label).string = name + "";
// // this.node.getChildByName("totalLab").getComponent(cc.Label).string = this.data.levelAmount;
// this.node.getChildByName("timeLab").getComponent(cc.Label).string = timeTemp + "";
this.node.getChildByName("rank").getChildByName("one").active = false;
this.node.getChildByName("rank").getChildByName("two").active = false;
this.node.getChildByName("rank").getChildByName("three").active = false;
if (this.data.rank == 1) {
this.node.getChildByName("rank").getChildByName("one").active = true;
this.node.getChildByName("rankLab").active = false;
}
else if (this.data.rank == 2) {
this.node.getChildByName("rank").getChildByName("two").active = true;
this.node.getChildByName("rankLab").active = false;
}
else if (this.data.rank == 3) {
this.node.getChildByName("rank").getChildByName("three").active = true;
this.node.getChildByName("rankLab").active = false;
} else {
this.node.getChildByName("rankLab").active = true;
}
if (this.data.useravatar == "" || this.data.useravatar == null || this.data.useravatar == undefined
) {
this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite;
}
else if (this.data.useravatar == "0" || this.data.useravatar == "1" || this.data.useravatar == "2"
|| this.data.useravatar == "3") {
let useravatar = this.data.useravatar;
let useravatarTemp = "icon_" + useravatar;
console.log("用户头像:", useravatarTemp);
this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatarTemp);
}
// NumberToImage.numberToImageNodes3((this.data.rank), 43, 15, "rank_", this.node.getChildByName("rankLab"), true);
// NumberToImage.numberToImageNodes3(this.data.levelAmount, 43, 15, "level_", this.node.getChildByName("totalLab"), true);
else this.setPic();
// // this.node.getChildByName("timeLab").getComponent(cc.Label).string = timeTemp + "";
// this.node.getChildByName("rank").getChildByName("one").active = false;
// this.node.getChildByName("rank").getChildByName("two").active = false;
// this.node.getChildByName("rank").getChildByName("three").active = false;
// if (this.data.rank == 1) {
// this.node.getChildByName("rank").getChildByName("one").active = true;
// this.node.getChildByName("rankLab").active = false;
// }
// else if (this.data.rank == 2) {
// this.node.getChildByName("rank").getChildByName("two").active = true;
// this.node.getChildByName("rankLab").active = false;
// }
// else if (this.data.rank == 3) {
// this.node.getChildByName("rank").getChildByName("three").active = true;
// this.node.getChildByName("rankLab").active = false;
// } else {
// this.node.getChildByName("rankLab").active = true;
// }
// if (this.data.useravatar == "" || this.data.useravatar == null || this.data.useravatar == undefined
// ) {
// this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite;
// }
// else if (this.data.useravatar == "0" || this.data.useravatar == "1" || this.data.useravatar == "2"
// || this.data.useravatar == "3") {
// let useravatar = this.data.useravatar;
// let useravatarTemp = "icon_" + useravatar;
// console.log("用户头像:", useravatarTemp);
// this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatarTemp);
// }
// else this.setPic();
}
public setPic() {

View File

@ -1,3 +1,4 @@
// Learn TypeScript:
// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
// Learn Attribute:
@ -43,6 +44,9 @@ export default class CareerList extends cc.Component {
@property({ type: cc.Node, tooltip: "列表项" })
public itemRender: cc.Node = null;
@property({ type: cc.Node, tooltip: "列表项" })
public firstRender: cc.Node = null;
/**排列方式 */
@property({ type: cc.Enum(ListType), tooltip: "排列方式" })
public type: ListType = ListType.Vertical;
@ -128,6 +132,19 @@ export default class CareerList extends cc.Component {
this.content.anchorX = 0;
this.content.anchorY = 1;
this.content.removeAllChildren();
// 初始化firstRender
if (this.firstRender) {
this.firstRender.parent = this.content;
this.firstRender.active = true;
// 设置firstRender的位置在顶部
if (this.type == ListType.Vertical) {
this.firstRender.setPosition(535, 0);
} else if (this.type == ListType.Horizontal) {
this.firstRender.setPosition(this.firstRender.width / 2, 0);
}
}
this.scrollView.node.on("scrolling", this.onScrolling, this);
}
@ -144,59 +161,19 @@ export default class CareerList extends cc.Component {
/**计算列表的各项参数 */
private countListParam() {
let dataLen = this.itemDataList.length;
let firstRenderHeight = this.firstRender ? this.firstRender.height : 0;
let firstRenderWidth = this.firstRender ? this.firstRender.width : 0;
debugger;
if (this.type == ListType.Vertical) {
this.scrollView.horizontal = false;
this.scrollView.vertical = true;
this.content.width = this.content.parent.width;
this.content.height = dataLen * this.itemHeight + (dataLen - 1) * this.spaceY + this.padding_top + this.padding_buttom;
this.spawnCount = Math.round(this.scrollView.node.height / (this.itemHeight + this.spaceY)) + 2; //计算创建的item实例数量比当前scrollView容器能放下的item数量再加上2个
// 计算高度时考虑firstRender的高度和间距
this.content.height = firstRenderHeight + (firstRenderHeight > 0 ? this.spaceY : 0) +
dataLen * this.itemHeight + (dataLen - 3) * this.spaceY + this.padding_top + this.padding_buttom;
this.spawnCount = Math.round(this.scrollView.node.height / (this.itemHeight + this.spaceY)) + 10; //计算创建的item实例数量比当前scrollView容器能放下的item数量再加上2个
this.halfScrollView = this.scrollView.node.height / 2 + this.itemHeight / 2 + this.spaceY; //计算bufferZoneitem的显示范围
this.updateFun = this.updateV;
} else if (this.type == ListType.Horizontal) {
this.scrollView.horizontal = true;
this.scrollView.vertical = false;
this.content.width = dataLen * this.itemWidth + (dataLen - 1) * this.spaceX + this.padding_left + this.padding_right;
this.content.height = this.content.parent.height;
this.spawnCount = Math.round(this.scrollView.node.width / (this.itemWidth + this.spaceX)) + 2;
this.halfScrollView = this.scrollView.node.width / 2 + this.itemWidth / 2 + this.spaceX;
this.updateFun = this.udpateH;
} else if (this.type == ListType.Grid) {
if (this.startAxis == StartAxisType.Vertical) {
this.scrollView.horizontal = false;
this.scrollView.vertical = true;
this.content.width = this.content.parent.width;
//如果left和right间隔过大导致放不下一个item则left和right都设置为0相当于不生效
if (this.padding_left + this.padding_right + this.itemWidth + this.spaceX > this.content.width) {
this.padding_left = 0;
this.padding_right = 0;
console.error("padding_left或padding_right过大");
}
this.gridCol = Math.floor((this.content.width - this.padding_left - this.padding_right) / (this.itemWidth + this.spaceX));
this.gridRow = Math.ceil(dataLen / this.gridCol);
this.content.height = this.gridRow * this.itemHeight + (this.gridRow - 1) * this.spaceY + this.padding_top + this.padding_buttom;
this.spawnCount = Math.round(this.scrollView.node.height / (this.itemHeight + this.spaceY)) * this.gridCol + this.gridCol * 2;
this.halfScrollView = this.scrollView.node.height / 2 + this.itemHeight / 2 + this.spaceY;
this.updateFun = this.updateGrid_V;
} else if (this.startAxis == StartAxisType.Horizontal) {
this.scrollView.horizontal = true;
this.scrollView.vertical = false;
//计算高间隔
this.content.height = this.content.parent.height;
//如果left和right间隔过大导致放不下一个item则left和right都设置为0相当于不生效
if (this.padding_top + this.padding_buttom + this.itemHeight + this.spaceY > this.content.height) {
this.padding_top = 0;
this.padding_buttom = 0;
console.error("padding_top或padding_buttom过大");
}
this.gridRow = Math.floor((this.content.height - this.padding_top - this.padding_buttom) / (this.itemHeight + this.spaceY));
this.gridCol = Math.ceil(dataLen / this.gridRow);
this.content.width = this.gridCol * this.itemWidth + (this.gridCol - 1) * this.spaceX + this.padding_left + this.padding_right;
this.spawnCount = Math.round(this.scrollView.node.width / (this.itemWidth + this.spaceX)) * this.gridRow + this.gridRow * 2;
this.halfScrollView = this.scrollView.node.width / 2 + this.itemWidth / 2 + this.spaceX;
this.updateFun = this.updateGrid_H;
}
}
}
@ -223,6 +200,7 @@ export default class CareerList extends cc.Component {
if (this.itemList[i] == null) {
item = this.getItem();
this.itemList.push(item);
item.active = true;
item.parent = this.content;
} else {
item = this.itemList[i];
@ -243,23 +221,14 @@ export default class CareerList extends cc.Component {
itemRender.data = this.itemDataList[i + startIndex];
itemRender.dataChanged();
// 计算firstRender的高度偏移
let firstRenderHeight = this.firstRender ? this.firstRender.height : 0;
let firstRenderOffsetY = firstRenderHeight > 0 ? firstRenderHeight + this.spaceY : 0;
if (this.type == ListType.Vertical) {
// item左边对齐padding_left
item.setPosition(this.padding_left + item.width / 2, -item.height * (0.5 + i + startIndex) - this.spaceY * (i + startIndex) - this.padding_top);
} else if (this.type == ListType.Horizontal) {
item.setPosition(item.width * (0.5 + i + startIndex) + this.spaceX * (i + startIndex) + this.padding_left, -this.content.height / 2);
} else if (this.type == ListType.Grid) {
if (this.startAxis == StartAxisType.Vertical) {
var row = Math.floor((i + startIndex) / this.gridCol);
var col = (i + startIndex) % this.gridCol;
item.setPosition(item.width * (0.5 + col) + this.spaceX * col + this.padding_left, -item.height * (0.5 + row) - this.spaceY * row - this.padding_top);
item.opacity = 255;
} else if (this.startAxis == StartAxisType.Horizontal) {
var row = (i + startIndex) % this.gridRow;
var col = Math.floor((i + startIndex) / this.gridRow);
item.setPosition(item.width * (0.5 + col) + this.spaceX * col + this.padding_left, -item.height * (0.5 + row) - this.spaceY * row - this.padding_top);
item.opacity = 255;
}
item.setPosition(this.padding_left + item.width / 2,
-item.height * (0.5 + i + startIndex) - this.spaceY * (i + startIndex) - this.padding_top - firstRenderOffsetY);
}
}
@ -299,12 +268,17 @@ export default class CareerList extends cc.Component {
let bufferZone = this.halfScrollView;
let isUp = this.scrollView.content.y > this.lastContentPosY;
let offset = (this.itemHeight + this.spaceY) * items.length;
// 计算firstRender的高度偏移
let firstRenderHeight = this.firstRender ? this.firstRender.height : 0;
let firstRenderOffsetY = firstRenderHeight > 0 ? firstRenderHeight + this.spaceY : 0;
for (let i = 0; i < items.length; i++) {
item = items[i];
let viewPos = this.getPositionInView(item);
if (isUp) {
//item上滑时超出了scrollView上边界将item移动到下方复用item移动到下方的位置必须不超过content的下边界
if (viewPos.y > bufferZone && item.y - offset - this.padding_buttom > -this.content.height) {
if (viewPos.y > bufferZone && item.y - offset - this.padding_buttom > -this.content.height + firstRenderOffsetY) {
let itemRender: CareerItem = item.getComponent(CareerItem);
let itemIndex = itemRender.itemIndex + items.length;
itemRender.itemIndex = itemIndex;
@ -314,7 +288,7 @@ export default class CareerList extends cc.Component {
}
} else {
//item下滑时超出了scrollView下边界将item移动到上方复用item移动到上方的位置必须不超过content的上边界
if (viewPos.y < -bufferZone && item.y + offset + this.padding_top < 0) {
if (viewPos.y < -bufferZone && item.y + offset + this.padding_top < -firstRenderOffsetY) {
let itemRender: CareerItem = item.getComponent(CareerItem);
let itemIndex = itemRender.itemIndex - items.length;
itemRender.itemIndex = itemIndex;
@ -334,12 +308,17 @@ export default class CareerList extends cc.Component {
let bufferZone = this.halfScrollView;
let isRight = this.scrollView.content.x > this.lastContentPosX;
let offset = (this.itemWidth + this.spaceX) * items.length;
// 计算firstRender的宽度偏移
let firstRenderWidth = this.firstRender ? this.firstRender.width : 0;
let firstRenderOffsetX = firstRenderWidth > 0 ? firstRenderWidth + this.spaceX : 0;
for (let i = 0; i < items.length; i++) {
item = items[i];
let viewPos = this.getPositionInView(item);
if (isRight) {
//item右滑时超出了scrollView右边界将item移动到左方复用item移动到左方的位置必须不超过content的左边界
if (viewPos.x > bufferZone && item.x - offset - this.padding_left > 0) {
if (viewPos.x > bufferZone && item.x - offset - this.padding_left > firstRenderOffsetX) {
let itemRender: CareerItem = item.getComponent(CareerItem);
let itemIndex = itemRender.itemIndex - items.length;
itemRender.itemIndex = itemIndex;
@ -369,12 +348,17 @@ export default class CareerList extends cc.Component {
let bufferZone = this.halfScrollView;
let isUp = this.scrollView.content.y > this.lastContentPosY;
let offset = (this.itemHeight + this.spaceY) * (this.spawnCount / this.gridCol);
// 计算firstRender的高度偏移
let firstRenderHeight = this.firstRender ? this.firstRender.height : 0;
let firstRenderOffsetY = firstRenderHeight > 0 ? firstRenderHeight + this.spaceY : 0;
for (let i = 0; i < items.length; i++) {
item = items[i];
let viewPos = this.getPositionInView(item);
if (isUp) {
//item上滑时超出了scrollView上边界将item移动到下方复用item移动到下方的位置必须不超过content的下边界
if (viewPos.y > bufferZone && item.y - offset - this.padding_buttom > -this.content.height) {
if (viewPos.y > bufferZone && item.y - offset - this.padding_buttom > -this.content.height + firstRenderOffsetY) {
let itemRender: CareerItem = item.getComponent(CareerItem);
let itemIndex = itemRender.itemIndex + (this.spawnCount / this.gridCol) * this.gridCol;
if (this.itemDataList[itemIndex] != null) {
@ -390,7 +374,7 @@ export default class CareerList extends cc.Component {
}
}
} else {//item下滑时超出了scrollView下边界将item移动到上方复用item移动到上方的位置必须不超过content的上边界
if (viewPos.y < -bufferZone && item.y + offset + this.padding_top < 0) {
if (viewPos.y < -bufferZone && item.y + offset + this.padding_top < -firstRenderOffsetY) {
let itemRender: CareerItem = item.getComponent(CareerItem);
let itemIndex = itemRender.itemIndex - (this.spawnCount / this.gridCol) * this.gridCol;
if (this.itemDataList[itemIndex] != null) {
@ -417,12 +401,17 @@ export default class CareerList extends cc.Component {
let bufferZone = this.halfScrollView;
let isRight = this.scrollView.content.x > this.lastContentPosX;
let offset = (this.itemWidth + this.spaceX) * (this.spawnCount / this.gridRow);
// 计算firstRender的宽度偏移
let firstRenderWidth = this.firstRender ? this.firstRender.width : 0;
let firstRenderOffsetX = firstRenderWidth > 0 ? firstRenderWidth + this.spaceX : 0;
for (let i = 0; i < items.length; i++) {
item = items[i];
let viewPos = this.getPositionInView(item);
if (isRight) {
//item右滑时超出了scrollView右边界将item移动到左方复用item移动到左方的位置必须不超过content的左边界
if (viewPos.x > bufferZone && item.x - offset - this.padding_left > 0) {
if (viewPos.x > bufferZone && item.x - offset - this.padding_left > firstRenderOffsetX) {
let itemRender: CareerItem = item.getComponent(CareerItem);
let itemIndex = itemRender.itemIndex - (this.spawnCount / this.gridRow) * this.gridRow;
if (this.itemDataList[itemIndex] != null) {
@ -592,3 +581,5 @@ export default class CareerList extends cc.Component {
this.itemDataList.length = 0;
}
}

View File

@ -1,12 +1,12 @@
import NumberToImage from "../../Script/NumberToImage";
import List from "./CareerList";
import CareerList from "./CareerList";
const { ccclass, property } = cc._decorator;
//排行榜
@ccclass
export default class CareerManager extends cc.Component {
@property(cc.Sprite) //用户头像换图
phone: cc.Sprite = null;
private rankList: List; //排行榜
private rankList: CareerList; //排行榜
listData: any; //总列表信息
selfData: any; //自己信息
@ -18,7 +18,7 @@ export default class CareerManager extends cc.Component {
}
//初始化数据
init(data) {
this.rankList = cc.find("ScrollView", this.node).getComponent(List);
this.rankList = cc.find("ScrollView", this.node).getComponent(CareerList);
this.listData = data;
this.selfData = null;
this.rankNumber = 100;

View File

@ -0,0 +1,440 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "651",
"map": [
9,
10
],
"time": 170,
"gap": [
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
},
{
"x": 7,
"y": 2,
"z": 0
},
{
"x": 7,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 4,
"z": 0
},
{
"x": 7,
"y": 8,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": -120,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"id": 270
},
{
"block": 20,
"color": 3,
"type": 0,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -180,
"y": 360,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -60,
"y": -480,
"z": 0
},
"id": 320
},
{
"block": 4,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -240,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 5,
"type": 2,
"position": {
"x": -180,
"y": -480,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 8,
"type": 2,
"position": {
"x": 60,
"y": -480,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -480,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 1,
"type": 2,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 4,
"type": 2,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"id": 410
},
{
"block": 0,
"color": 9,
"type": 8,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"id": 410
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 420
},
{
"block": 5,
"color": 4,
"type": 3,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"lockTime": 4,
"id": 430
}
]
],
"WALL_INFO": [
[
{
"id": 652,
"num": 0,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 653,
"num": 1,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 654,
"num": 7,
"color": 5,
"special": 4,
"length": 1
},
{
"id": 655,
"num": 13,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 656,
"num": 15,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 657,
"num": 17,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 658,
"num": 21,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 659,
"num": 28,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 660,
"num": 29,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 661,
"num": 22,
"color": 7,
"special": 4,
"length": 1
},
{
"id": 662,
"num": 14,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 663,
"num": 16,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 664,
"num": 10,
"color": 1,
"special": 4,
"length": 2
},
{
"id": 665,
"num": 12,
"color": 1,
"special": 4,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "858122dd-d559-4b3b-afb6-57f4e762f7e4",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,358 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "652",
"map": [
8,
8
],
"time": 130,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 290
},
{
"block": 15,
"color": 9,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 3,
"type": 2,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 1,
"type": 2,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 2,
"type": 2,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 7,
"type": 2,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 8,
"type": 2,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 6,
"type": 2,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 380
},
{
"block": 19,
"color": 5,
"type": 3,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"lockTime": 6,
"id": 390
}
]
],
"WALL_INFO": [
[
{
"id": 653,
"num": 1,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 654,
"num": 2,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 655,
"num": 4,
"color": 2,
"special": 4,
"length": 2
},
{
"id": 656,
"num": 5,
"color": 2,
"special": 4,
"length": 0
},
{
"id": 657,
"num": 7,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 658,
"num": 11,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 659,
"num": 13,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 660,
"num": 15,
"color": 8,
"special": 4,
"length": 2
},
{
"id": 661,
"num": 17,
"color": 8,
"special": 4,
"length": 0
},
{
"id": 662,
"num": 22,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 663,
"num": 23,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 664,
"num": 19,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 665,
"num": 20,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 666,
"num": 16,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 667,
"num": 10,
"color": 3,
"special": 4,
"length": 2
},
{
"id": 668,
"num": 12,
"color": 3,
"special": 4,
"length": 0
},
{
"id": 669,
"num": 6,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 670,
"num": 8,
"color": 5,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "3d7efb92-bef7-47d6-a12d-aeb8a7a57b42",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,444 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "623",
"map": [
9,
9
],
"time": 100,
"gap": [
{
"x": 7,
"y": 7,
"z": 0
},
{
"x": 6,
"y": 7,
"z": 0
},
{
"x": 5,
"y": 7,
"z": 0
},
{
"x": 4,
"y": 7,
"z": 0
},
{
"x": 5,
"y": 6,
"z": 0
},
{
"x": 4,
"y": 6,
"z": 0
},
{
"x": 4,
"y": 5,
"z": 0
},
{
"x": 5,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"floor": 1,
"floorTime": 10,
"id": 290
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"floor": 2,
"floorTime": 12,
"id": 300
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"floor": 3,
"floorTime": 16,
"id": 310
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": -60,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"id": 350
},
{
"block": 19,
"color": 6,
"type": 0,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 1,
"type": 7,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"id": 380
},
{
"block": 4,
"color": 9,
"type": 8,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": 300,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"id": 410
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"adhesiveTime": 1,
"id": 420
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"adhesiveTime": 2,
"id": 430
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"adhesiveTime": 1,
"id": 440
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"adhesiveTime": 2,
"id": 450
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"adhesiveTime": 1,
"id": 460
}
]
],
"WALL_INFO": [
[
{
"id": 624,
"num": 1,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "05"
},
{
"id": 625,
"num": 2,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "05"
},
{
"id": 626,
"num": 8,
"color": 9,
"special": 3,
"length": 2,
"freeze": 8
},
{
"id": 627,
"num": 10,
"color": 9,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 628,
"num": 25,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 629,
"num": 28,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "27777"
},
{
"id": 630,
"num": 29,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "27777"
},
{
"id": 631,
"num": 18,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 632,
"num": 22,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 633,
"num": 9,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 634,
"num": 11,
"color": 2,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "578b6c24-15d0-47a2-9c95-d31f7d7e61bf",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,417 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "654",
"map": [
9,
9
],
"time": 145,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 4,
"type": 4,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"freezeTime": 4,
"id": 210
},
{
"block": 0,
"color": 6,
"type": 4,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"freezeTime": 13,
"id": 220
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"freezeTime": 13,
"id": 230
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"freezeTime": 13,
"id": 240
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"freezeTime": 13,
"id": 250
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": -300,
"y": -60,
"z": 0
},
"freezeTime": 13,
"id": 260
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"freezeTime": 13,
"id": 270
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"freezeTime": 13,
"id": 280
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"freezeTime": 13,
"id": 290
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": -180,
"y": 300,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"id": 340
},
{
"block": 22,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 410
},
{
"block": 1,
"color": 11,
"type": 0,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"id": 420
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 430
},
{
"block": 22,
"color": 3,
"type": 3,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"lockTime": 4,
"id": 440
},
{
"block": 0,
"color": 9,
"type": 2,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"id": 450
},
{
"block": 2,
"color": 6,
"type": 2,
"position": {
"x": -300,
"y": -300,
"z": 0
},
"id": 460
},
{
"block": 2,
"color": 4,
"type": 2,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 470
},
{
"block": 0,
"color": 2,
"type": 2,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 480
}
]
],
"WALL_INFO": [
[
{
"id": 655,
"num": 5,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 656,
"num": 6,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 657,
"num": 10,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 658,
"num": 16,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 659,
"num": 26,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 660,
"num": 27,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 661,
"num": 17,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 662,
"num": 19,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 663,
"num": 13,
"color": 9,
"special": 0,
"length": 1
},
{
"id": 664,
"num": 7,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 665,
"num": 9,
"color": 3,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "cef13ca1-bfa7-494a-a827-63a16f5ab2b3",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,356 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "655",
"map": [
9,
8
],
"time": 100,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 14,
"color": 3,
"type": 4,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"freezeTime": 6,
"id": 210
},
{
"block": 23,
"color": 3,
"type": 4,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"freezeTime": 6,
"id": 220
},
{
"block": 23,
"color": 3,
"type": 4,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"freezeTime": 6,
"id": 230
},
{
"block": 2,
"color": 6,
"type": 14,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"floor": 1,
"floorTime": 8,
"id": 240
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"floor": 2,
"floorTime": 10,
"id": 250
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"floor": 3,
"floorTime": 12,
"id": 260
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": 120,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": -240,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": -240,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -300,
"y": -120,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -120,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 6,
"type": 14,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 6,
"type": 14,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 5,
"type": 14,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"id": 410
},
{
"block": 0,
"color": 1,
"type": 14,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"id": 420
},
{
"block": 0,
"color": 6,
"type": 7,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"id": 430
},
{
"block": 2,
"color": 5,
"type": 9,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 420
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"id": 430
},
{
"block": 2,
"color": 7,
"type": 9,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 420
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"id": 430
}
]
],
"WALL_INFO": [
[
{
"id": 656,
"num": 2,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 657,
"num": 3,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 658,
"num": 9,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "081"
},
{
"id": 659,
"num": 11,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "081"
},
{
"id": 660,
"num": 15,
"color": 5,
"special": 0,
"length": 2,
"colorArray": "476466"
},
{
"id": 661,
"num": 17,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "476466"
},
{
"id": 662,
"num": 22,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 663,
"num": 23,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 664,
"num": 12,
"color": 10,
"special": 6,
"length": 1,
"lockTime": 5
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "4e71d712-078a-409c-b701-68907730028a",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,341 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "656",
"map": [
9,
9
],
"time": 110,
"gap": [
{
"x": 3,
"y": 7,
"z": 0
},
{
"x": 2,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 5,
"y": 7,
"z": 0
},
{
"x": 6,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 6,
"z": 0
},
{
"x": 2,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 11,
"color": 3,
"type": 0,
"position": {
"x": -300,
"y": -60,
"z": 0
},
"id": 210
},
{
"block": 3,
"color": 1,
"type": 9,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"adhesiveTime": 2,
"id": 220
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"adhesiveTime": 1,
"id": 230
},
{
"block": 2,
"color": 11,
"type": 8,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 240
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": -420,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"adhesiveTime": 2,
"id": 290
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"adhesiveTime": 1,
"id": 300
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"adhesiveTime": 2,
"id": 310
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"adhesiveTime": 1,
"id": 320
},
{
"block": 1,
"color": 10,
"type": 14,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 330
},
{
"block": 3,
"color": 9,
"type": 14,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 8,
"type": 14,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 2,
"type": 14,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 4,
"type": 14,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 370
}
]
],
"WALL_INFO": [
[
{
"id": 657,
"num": 1,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 658,
"num": 14,
"color": 5,
"special": 6,
"length": 1,
"lockTime": 5
},
{
"id": 659,
"num": 25,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "23"
},
{
"id": 660,
"num": 26,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "23"
},
{
"id": 661,
"num": 24,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 662,
"num": 10,
"color": 9,
"special": 0,
"length": 3
},
{
"id": 663,
"num": 13,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 664,
"num": 15,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 665,
"num": 2,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "010"
},
{
"id": 666,
"num": 3,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "010"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "bd78ffdd-8fb0-408e-a959-c04e2097d4d0",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,381 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "657",
"map": [
8,
8
],
"time": 95,
"gap": [
{
"x": 6,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 4,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 10,
"type": 8,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"floor": 1,
"floorTime": 5,
"id": 270
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"floor": 2,
"floorTime": 9,
"id": 280
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 8,
"type": 9,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 300
},
{
"block": 2,
"color": 8,
"type": 9,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"adhesiveTime": 1,
"id": 310
},
{
"block": 23,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 7,
"type": 8,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 658,
"num": 0,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 659,
"num": 1,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 660,
"num": 3,
"color": 8,
"special": 0,
"length": 3
},
{
"id": 661,
"num": 4,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 662,
"num": 5,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 663,
"num": 9,
"color": 7,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 664,
"num": 11,
"color": 7,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 665,
"num": 13,
"color": 10,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 666,
"num": 15,
"color": 10,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 667,
"num": 21,
"color": 1,
"special": 0,
"length": 3
},
{
"id": 668,
"num": 22,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 669,
"num": 23,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 670,
"num": 19,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 671,
"num": 20,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 672,
"num": 14,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 673,
"num": 10,
"color": 5,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "8338369b-f335-4313-b8d9-833e04899a22",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,406 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "658",
"map": [
9,
9
],
"time": 75,
"gap": [
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 7,
"y": 1,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 2,
"y": 6,
"z": 0
},
{
"x": 2,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 3,
"y": 7,
"z": 0
},
{
"x": 5,
"y": 7,
"z": 0
},
{
"x": 6,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 7,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 5,
"z": 0
},
{
"x": 7,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 15,
"color": 7,
"type": 0,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"id": 220
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"adhesiveTime": 2,
"id": 230
},
{
"block": 0,
"color": 11,
"type": 9,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"adhesiveTime": 1,
"id": 240
},
{
"block": 0,
"color": 11,
"type": 9,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"adhesiveTime": 2,
"id": 250
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"adhesiveTime": 1,
"id": 260
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -300,
"y": -60,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 3,
"type": 8,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 9,
"type": 7,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 7,
"type": 7,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"id": 380
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 11,
"type": 4,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"freezeTime": 5,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 659,
"num": 1,
"color": 9,
"special": 3,
"length": 2,
"freeze": 3
},
{
"id": 660,
"num": 2,
"color": 9,
"special": 3,
"length": 0,
"freeze": 3
},
{
"id": 661,
"num": 14,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 662,
"num": 26,
"color": 7,
"special": 3,
"length": 2,
"freeze": 6
},
{
"id": 663,
"num": 27,
"color": 7,
"special": 3,
"length": 0,
"freeze": 6
},
{
"id": 664,
"num": 15,
"color": 8,
"special": 0,
"length": 2,
"colorArray": "799"
},
{
"id": 665,
"num": 18,
"color": 8,
"special": 0,
"length": 0,
"colorArray": "799"
},
{
"id": 666,
"num": 13,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 667,
"num": 6,
"color": 5,
"special": 0,
"length": 2,
"colorArray": "43"
},
{
"id": 668,
"num": 10,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "43"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "d9a82e59-bb65-4b37-a16d-6ec8d6b839a3",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,317 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "659",
"map": [
9,
7
],
"time": 100,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 7,
"type": 4,
"position": {
"x": -300,
"y": 180,
"z": 0
},
"freezeTime": 6,
"id": 210
},
{
"block": 0,
"color": 3,
"type": 4,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"freezeTime": 10,
"id": 220
},
{
"block": 2,
"color": 8,
"type": 14,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"floor": 3,
"floorTime": 8,
"id": 230
},
{
"block": 22,
"color": 9,
"type": 14,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"id": 240
},
{
"block": 21,
"color": 2,
"type": 14,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 7,
"type": 14,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 3,
"type": 14,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"id": 270
},
{
"block": 3,
"color": 5,
"type": 1,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"stacking": 10,
"id": 280
},
{
"block": 0,
"color": 10,
"type": 1,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"stacking": 6,
"id": 290
},
{
"block": 0,
"color": 8,
"type": 1,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"stacking": 7,
"id": 300
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 60,
"y": -60,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -300,
"y": -180,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": -300,
"y": -300,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 5,
"type": 8,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 5,
"type": 8,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 370
}
]
],
"WALL_INFO": [
[
{
"id": 660,
"num": 2,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 661,
"num": 3,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 662,
"num": 6,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 663,
"num": 8,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 664,
"num": 12,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 665,
"num": 16,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 666,
"num": 18,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 667,
"num": 21,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 668,
"num": 22,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 669,
"num": 15,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 670,
"num": 9,
"color": 5,
"special": 6,
"length": 3,
"lockTime": 5
},
{
"id": 671,
"num": 11,
"color": 5,
"special": 6,
"length": 0,
"lockTime": 5
},
{
"id": 672,
"num": 13,
"color": 5,
"special": 6,
"length": 0,
"lockTime": 5
},
{
"id": 673,
"num": 7,
"color": 3,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "6a66f605-c3ed-478b-8ed4-66e881e7dd1f",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,372 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "660",
"map": [
8,
9
],
"time": 130,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": 60,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": -60,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"id": 230
},
{
"block": 21,
"color": 1,
"type": 0,
"position": {
"x": -120,
"y": -60,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 60,
"z": 0
},
"id": 250
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": -300,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 4,
"type": 9,
"position": {
"x": 240,
"y": 180,
"z": 0
},
"adhesiveTime": 2,
"id": 270
},
{
"block": 1,
"color": 4,
"type": 9,
"position": {
"x": 360,
"y": 300,
"z": 0
},
"adhesiveTime": 1,
"id": 280
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -180,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": -300,
"z": 0
},
"id": 330
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"id": 340
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 0,
"y": -300,
"z": 0
},
"id": 350
},
{
"block": 5,
"color": 9,
"type": 3,
"position": {
"x": 0,
"y": 180,
"z": 0
},
"lockTime": 5,
"id": 360
},
{
"block": 2,
"color": 3,
"type": 2,
"position": {
"x": -240,
"y": 180,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 7,
"type": 2,
"position": {
"x": 0,
"y": -180,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 2,
"type": 2,
"position": {
"x": -120,
"y": -420,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 10,
"type": 2,
"position": {
"x": 360,
"y": -180,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 8,
"type": 2,
"position": {
"x": 360,
"y": -420,
"z": 0
},
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 661,
"num": 1,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 662,
"num": 2,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 663,
"num": 3,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 664,
"num": 4,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 665,
"num": 5,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 666,
"num": 6,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 667,
"num": 12,
"color": 3,
"special": 3,
"length": 2,
"freeze": 11
},
{
"id": 668,
"num": 14,
"color": 3,
"special": 3,
"length": 0,
"freeze": 11
},
{
"id": 669,
"num": 24,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 670,
"num": 25,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 671,
"num": 22,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 672,
"num": 23,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 673,
"num": 20,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 674,
"num": 21,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 675,
"num": 15,
"color": 7,
"special": 3,
"length": 1,
"freeze": 4
},
{
"id": 676,
"num": 9,
"color": 5,
"special": 3,
"length": 1,
"freeze": 7
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "e44f172b-690e-45f0-8efd-37cccd4c3564",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,331 @@
{
"LEVEL_INFO": [
{
"risefall": [
{
"x": 3,
"y": 4,
"color": "10"
},
{
"x": 3,
"y": 3,
"color": "10"
},
{
"x": 4,
"y": 4,
"color": "10"
},
{
"x": 4,
"y": 3,
"color": "10"
}
],
"id": "661",
"map": [
8,
8
],
"time": 100,
"gap": [
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"floor": 1,
"floorTime": 6,
"id": 210
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 21,
"color": 8,
"type": 0,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"id": 240
},
{
"block": 22,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"adhesiveTime": 2,
"id": 360
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"id": 370
}
]
],
"WALL_INFO": [
[
{
"id": 662,
"num": 0,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 663,
"num": 1,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 664,
"num": 3,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 665,
"num": 4,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 666,
"num": 11,
"color": 10,
"special": 3,
"length": 2,
"freeze": 8
},
{
"id": 667,
"num": 13,
"color": 10,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 668,
"num": 22,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 669,
"num": 23,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 670,
"num": 19,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 671,
"num": 20,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 672,
"num": 12,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 673,
"num": 10,
"color": 9,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "321529cb-f501-4319-89c1-109d13e4bdd8",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,354 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "662",
"map": [
8,
9
],
"time": 120,
"gap": [
{
"x": 1,
"y": 1,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"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": 180,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 8,
"type": 4,
"position": {
"x": -120,
"y": 60,
"z": 0
},
"freezeTime": 12,
"id": 250
},
{
"block": 1,
"color": 1,
"type": 4,
"position": {
"x": 360,
"y": -180,
"z": 0
},
"freezeTime": 6,
"id": 260
},
{
"block": 22,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": 180,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": 60,
"z": 0
},
"id": 280
},
{
"block": 21,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": 180,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": -120,
"y": -180,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": 180,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -120,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 10,
"type": 14,
"position": {
"x": 0,
"y": -420,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 2,
"type": 14,
"position": {
"x": 120,
"y": -420,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 2,
"type": 14,
"position": {
"x": 0,
"y": -180,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 3,
"type": 14,
"position": {
"x": 120,
"y": -180,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 120,
"y": -60,
"z": 0
},
"adhesiveTime": 2,
"id": 380
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 0,
"y": -60,
"z": 0
},
"adhesiveTime": 1,
"id": 390
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": 120,
"y": 60,
"z": 0
},
"adhesiveTime": 3,
"id": 400
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": 0,
"y": 60,
"z": 0
},
"adhesiveTime": 2,
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 663,
"num": 4,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 664,
"num": 10,
"color": 2,
"special": 0,
"length": 1
},
{
"id": 665,
"num": 12,
"color": 4,
"special": 6,
"length": 2,
"lockTime": 4
},
{
"id": 666,
"num": 14,
"color": 4,
"special": 6,
"length": 0,
"lockTime": 4
},
{
"id": 667,
"num": 16,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 668,
"num": 25,
"color": 8,
"special": 3,
"length": 1,
"freeze": 9
},
{
"id": 669,
"num": 15,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 670,
"num": 11,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 671,
"num": 13,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 672,
"num": 9,
"color": 5,
"special": 3,
"length": 1,
"freeze": 5
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "14f8b4f3-bc18-41c9-9a88-f473921a2a7a",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,396 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "663",
"map": [
9,
8
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 1,
"color": 10,
"type": 9,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 230
},
{
"block": 1,
"color": 10,
"type": 9,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"adhesiveTime": 1,
"id": 240
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 250
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"id": 260
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 420,
"y": 240,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"id": 280
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -300,
"y": 0,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 60,
"y": 240,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 3,
"type": 9,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 370
},
{
"block": 1,
"color": 3,
"type": 9,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"adhesiveTime": 1,
"id": 380
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 390
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"id": 400
},
{
"block": 0,
"color": 3,
"type": 7,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"id": 410
},
{
"block": 2,
"color": 4,
"type": 8,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"id": 420
},
{
"block": 0,
"color": 5,
"type": 8,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"id": 430
},
{
"block": 0,
"color": 2,
"type": 8,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"id": 440
}
]
],
"WALL_INFO": [
[
{
"id": 664,
"num": 2,
"color": 3,
"special": 3,
"length": 2,
"freeze": 4
},
{
"id": 665,
"num": 3,
"color": 3,
"special": 3,
"length": 0,
"freeze": 4
},
{
"id": 666,
"num": 7,
"color": 6,
"special": 5,
"length": 2
},
{
"id": 667,
"num": 9,
"color": 6,
"special": 5,
"length": 0
},
{
"id": 668,
"num": 13,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 669,
"num": 17,
"color": 9,
"special": 5,
"length": 2
},
{
"id": 670,
"num": 19,
"color": 9,
"special": 5,
"length": 0
},
{
"id": 671,
"num": 22,
"color": 10,
"special": 3,
"length": 2,
"freeze": 7
},
{
"id": 672,
"num": 23,
"color": 10,
"special": 3,
"length": 0,
"freeze": 7
},
{
"id": 673,
"num": 14,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 674,
"num": 16,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 675,
"num": 12,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 676,
"num": 8,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 677,
"num": 10,
"color": 5,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "93628e83-af47-49ee-aa90-779e19540888",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,311 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "664",
"map": [
9,
7
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 10,
"type": 4,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"freezeTime": 5,
"floor": 1,
"floorTime": 6,
"id": 210
},
{
"block": 23,
"color": 10,
"type": 4,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"freezeTime": 5,
"id": 220
},
{
"block": 0,
"color": 7,
"type": 4,
"position": {
"x": -60,
"y": -300,
"z": 0
},
"freezeTime": 10,
"floor": 2,
"floorTime": 11,
"id": 230
},
{
"block": 23,
"color": 8,
"type": 4,
"position": {
"x": 60,
"y": 180,
"z": 0
},
"freezeTime": 10,
"id": 240
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 3,
"type": 9,
"position": {
"x": -300,
"y": -300,
"z": 0
},
"adhesiveTime": 2,
"id": 280
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"adhesiveTime": 1,
"id": 290
},
{
"block": 2,
"color": 8,
"type": 9,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"adhesiveTime": 2,
"id": 300
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"adhesiveTime": 1,
"id": 310
},
{
"block": 0,
"color": 10,
"type": 1,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"stacking": 3,
"id": 320
},
{
"block": 1,
"color": 1,
"type": 1,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"stacking": 4,
"id": 330
},
{
"block": 0,
"color": 7,
"type": 1,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"stacking": 4,
"id": 340
},
{
"block": 2,
"color": 6,
"type": 1,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"stacking": 4,
"id": 350
},
{
"block": 1,
"color": 7,
"type": 1,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"stacking": 6,
"id": 360
},
{
"block": 3,
"color": 5,
"type": 1,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"stacking": 7,
"id": 370
},
{
"block": 2,
"color": 4,
"type": 1,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"stacking": 8,
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 665,
"num": 2,
"color": 5,
"special": 0,
"length": 1,
"colorArray": "499"
},
{
"id": 666,
"num": 8,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 667,
"num": 10,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 668,
"num": 14,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 669,
"num": 16,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 670,
"num": 21,
"color": 7,
"special": 0,
"length": 1,
"colorArray": "606"
},
{
"id": 671,
"num": 13,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 672,
"num": 15,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 673,
"num": 7,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 674,
"num": 9,
"color": 6,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "52b831a8-04c6-48c0-b257-ea3fee13d958",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,374 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "665",
"map": [
10,
8
],
"time": 125,
"gap": [
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 2,
"y": 6,
"z": 0
},
{
"x": 8,
"y": 6,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 5,
"type": 0,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 230
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": -360,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 1,
"type": 4,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"freezeTime": 7,
"id": 320
},
{
"block": 2,
"color": 5,
"type": 4,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"freezeTime": 12,
"id": 330
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 480,
"y": -360,
"z": 0
},
"id": 340
},
{
"block": 5,
"color": 4,
"type": 8,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 6,
"type": 1,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"stacking": 8,
"id": 360
},
{
"block": 2,
"color": 5,
"type": 1,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"stacking": 1,
"id": 370
},
{
"block": 6,
"color": 3,
"type": 1,
"position": {
"x": 480,
"y": -120,
"z": 0
},
"stacking": 1,
"id": 380
},
{
"block": 10,
"color": 2,
"type": 1,
"position": {
"x": -360,
"y": -120,
"z": 0
},
"stacking": 8,
"id": 390
}
]
],
"WALL_INFO": [
[
{
"id": 666,
"num": 1,
"color": 3,
"special": 0,
"length": 3
},
{
"id": 667,
"num": 2,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 668,
"num": 3,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 669,
"num": 4,
"color": 9,
"special": 0,
"length": 1
},
{
"id": 670,
"num": 11,
"color": 1,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 671,
"num": 13,
"color": 1,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 672,
"num": 15,
"color": 8,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 673,
"num": 17,
"color": 8,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 674,
"num": 27,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 675,
"num": 24,
"color": 2,
"special": 0,
"length": 3
},
{
"id": 676,
"num": 25,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 677,
"num": 26,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 678,
"num": 21,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 679,
"num": 12,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 680,
"num": 14,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 681,
"num": 5,
"color": 5,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "4068a495-93ce-4656-8f04-7877ae78be3d",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,373 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "666",
"map": [
8,
8
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 10,
"type": 2,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"floor": 1,
"floorTime": 5,
"id": 210
},
{
"block": 0,
"color": 3,
"type": 2,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"floor": 2,
"floorTime": 8,
"id": 220
},
{
"block": 1,
"color": 1,
"type": 2,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 230
},
{
"block": 21,
"color": 7,
"type": 2,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 4,
"type": 3,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"lockTime": 5,
"id": 250
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 11,
"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": 1,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 370
},
{
"block": 22,
"color": 6,
"type": 2,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"adhesiveTime": 2,
"id": 390
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"id": 400
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"adhesiveTime": 2,
"id": 410
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 667,
"num": 0,
"color": 4,
"special": 4,
"length": 2
},
{
"id": 668,
"num": 1,
"color": 4,
"special": 4,
"length": 0
},
{
"id": 669,
"num": 3,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 670,
"num": 4,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 671,
"num": 9,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 672,
"num": 11,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 673,
"num": 13,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 674,
"num": 15,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 675,
"num": 21,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 676,
"num": 22,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 677,
"num": 18,
"color": 1,
"special": 4,
"length": 2
},
{
"id": 678,
"num": 19,
"color": 1,
"special": 4,
"length": 0
},
{
"id": 679,
"num": 12,
"color": 10,
"special": 0,
"length": 1,
"colorArray": "97"
},
{
"id": 680,
"num": 10,
"color": 3,
"special": 0,
"length": 1,
"colorArray": "28"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "5574d583-62b7-452f-a57b-2c8be827f6da",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,368 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "667",
"map": [
10,
8
],
"time": 120,
"gap": [
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 6,
"z": 0
},
{
"x": 2,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 250
},
{
"block": 22,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -360,
"y": -240,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 320
},
{
"block": 4,
"color": 5,
"type": 0,
"position": {
"x": 480,
"y": 0,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 4,
"type": 9,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 350
},
{
"block": 2,
"color": 4,
"type": 9,
"position": {
"x": 480,
"y": -360,
"z": 0
},
"adhesiveTime": 1,
"id": 360
},
{
"block": 0,
"color": 10,
"type": 14,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 8,
"type": 14,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 5,
"type": 14,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 4,
"type": 14,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 400
},
{
"block": 1,
"color": 3,
"type": 7,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 668,
"num": 1,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 669,
"num": 2,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 670,
"num": 3,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 671,
"num": 9,
"color": 3,
"special": 6,
"length": 1,
"lockTime": 4
},
{
"id": 672,
"num": 13,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 673,
"num": 15,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 674,
"num": 21,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 675,
"num": 24,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 676,
"num": 25,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 677,
"num": 18,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 678,
"num": 20,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 679,
"num": 6,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 680,
"num": 10,
"color": 7,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "68f039e3-b32a-41a7-ba1e-ce40812b6179",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,300 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "668",
"map": [
8,
8
],
"time": 200,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 8,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 230
},
{
"block": 6,
"color": 4,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 240
},
{
"block": 10,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 3,
"type": 14,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 10,
"type": 14,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 7,
"type": 14,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 7,
"type": 14,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 2,
"type": 14,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 340
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 350
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"adhesiveTime": 2,
"id": 360
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 370
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 669,
"num": 0,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 670,
"num": 1,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 671,
"num": 4,
"color": 5,
"special": 0,
"length": 1,
"colorArray": "466"
},
{
"id": 672,
"num": 11,
"color": 1,
"special": 3,
"length": 2,
"freeze": 10
},
{
"id": 673,
"num": 13,
"color": 1,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 674,
"num": 22,
"color": 10,
"special": 0,
"length": 1,
"colorArray": "92"
},
{
"id": 675,
"num": 18,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 676,
"num": 19,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 677,
"num": 10,
"color": 4,
"special": 6,
"length": 2,
"lockTime": 5
},
{
"id": 678,
"num": 12,
"color": 4,
"special": 6,
"length": 0,
"lockTime": 5
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "c6dbae77-cce3-4dc3-b53f-8b069f840f19",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,385 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "669",
"map": [
9,
8
],
"time": 135,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 10,
"type": 4,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"freezeTime": 5,
"id": 210
},
{
"block": 0,
"color": 5,
"type": 4,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"freezeTime": 11,
"id": 220
},
{
"block": 23,
"color": 5,
"type": 4,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"freezeTime": 11,
"id": 230
},
{
"block": 23,
"color": 5,
"type": 4,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"freezeTime": 11,
"id": 240
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"freezeTime": 11,
"id": 250
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"freezeTime": 11,
"id": 260
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"freezeTime": 11,
"id": 270
},
{
"block": 23,
"color": 6,
"type": 4,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"freezeTime": 11,
"id": 280
},
{
"block": 22,
"color": 6,
"type": 0,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -300,
"y": 120,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 360
},
{
"block": 21,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": -240,
"z": 0
},
"id": 370
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"id": 380
},
{
"block": 3,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": -240,
"z": 0
},
"id": 410
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"id": 420
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 430
}
]
],
"WALL_INFO": [
[
{
"id": 670,
"num": 2,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 671,
"num": 3,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 672,
"num": 7,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 673,
"num": 9,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 674,
"num": 15,
"color": 5,
"special": 3,
"length": 1,
"freeze": 13
},
{
"id": 675,
"num": 17,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 676,
"num": 19,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 677,
"num": 22,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 678,
"num": 23,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 679,
"num": 12,
"color": 9,
"special": 3,
"length": 3,
"freeze": 8
},
{
"id": 680,
"num": 14,
"color": 9,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 681,
"num": 16,
"color": 9,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 682,
"num": 8,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 683,
"num": 10,
"color": 6,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "b986a3f5-8fb4-4143-b4fd-ab1f7cdcdd84",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,544 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "670",
"map": [
10,
12
],
"time": 75,
"gap": [
{
"x": 7,
"y": 10,
"z": 0
},
{
"x": 6,
"y": 10,
"z": 0
},
{
"x": 2,
"y": 1,
"z": 0
},
{
"x": 3,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": 360,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 290
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 310
},
{
"block": 23,
"color": 6,
"type": 0,
"position": {
"x": 480,
"y": -360,
"z": 0
},
"id": 320
},
{
"block": 5,
"color": 4,
"type": 0,
"position": {
"x": -240,
"y": 360,
"z": 0
},
"id": 330
},
{
"block": 21,
"color": 4,
"type": 0,
"position": {
"x": -360,
"y": -240,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 480,
"y": -600,
"z": 0
},
"id": 350
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": -600,
"z": 0
},
"id": 360
},
{
"block": 5,
"color": 9,
"type": 0,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"id": 370
},
{
"block": 22,
"color": 9,
"type": 0,
"position": {
"x": 480,
"y": -240,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 9,
"type": 0,
"position": {
"x": 120,
"y": -600,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -360,
"y": -600,
"z": 0
},
"id": 400
},
{
"block": 10,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"id": 410
},
{
"block": 4,
"color": 5,
"type": 0,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 420
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 480,
"y": 360,
"z": 0
},
"id": 430
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 440
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 450
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 460
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 0,
"y": -600,
"z": 0
},
"id": 470
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": -600,
"z": 0
},
"id": 480
},
{
"block": 4,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 490
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": 480,
"y": 240,
"z": 0
},
"adhesiveTime": 2,
"id": 500
},
{
"block": 19,
"color": 5,
"type": 9,
"position": {
"x": 480,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 510
},
{
"block": 20,
"color": 1,
"type": 9,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"adhesiveTime": 2,
"id": 520
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": -360,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"id": 530
},
{
"block": 4,
"color": 6,
"type": 8,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 540
},
{
"block": 4,
"color": 1,
"type": 8,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 550
}
]
],
"WALL_INFO": [
[
{
"id": 671,
"num": 0,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 672,
"num": 1,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 673,
"num": 4,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 674,
"num": 5,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 675,
"num": 6,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 676,
"num": 11,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 677,
"num": 14,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 678,
"num": 19,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 679,
"num": 21,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 680,
"num": 36,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 681,
"num": 37,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 682,
"num": 33,
"color": 3,
"special": 0,
"length": 3
},
{
"id": 683,
"num": 34,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 684,
"num": 35,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 685,
"num": 25,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 686,
"num": 18,
"color": 6,
"special": 0,
"length": 1
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "72fb6919-9f37-44c6-b4a9-d42aa825491b",
"importer": "json",
"subMetas": {}
}