更新两个新玩法
This commit is contained in:
parent
9a679bc0e4
commit
150cfe0ed8
|
|
@ -4714,6 +4714,9 @@
|
|||
},
|
||||
{
|
||||
"__uuid__": "03145c50-d467-4d06-a2fc-83f38137cb92"
|
||||
},
|
||||
{
|
||||
"__uuid__": "01e8fce2-ba92-44a4-93c2-3e439b88a979"
|
||||
}
|
||||
],
|
||||
"MapBlockPrefab": {
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ export enum BlockType {
|
|||
"第二钥匙块" = 13,
|
||||
/*门钥匙 */
|
||||
"门钥匙" = 14,
|
||||
"问号块" = 16,
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -64,6 +65,8 @@ export enum BlockColor {
|
|||
"无色" = 10,
|
||||
/*障碍块 */
|
||||
"暗灰色" = 11,
|
||||
/*障碍块 */
|
||||
"问号色1" = 12
|
||||
}
|
||||
|
||||
export enum PathType {
|
||||
|
|
@ -150,6 +153,7 @@ export default class Block extends cc.Component {
|
|||
blockId: number = 0; //方块ID;
|
||||
stacking: cc.Vec2; //叠加方块
|
||||
adhesive: cc.Vec2; //粘合方块
|
||||
changeColor: number = 0; //变色块
|
||||
level: number = 0; //叠加方块层数;
|
||||
pz: boolean = false;
|
||||
over: boolean = false; //方块是否失效已消失
|
||||
|
|
@ -190,22 +194,15 @@ export default class Block extends cc.Component {
|
|||
}
|
||||
//createAd 为是否创建粘合快图片
|
||||
init(block_Info, posX, posY, node, createAd) {
|
||||
// if (block_Info.floor) {
|
||||
// console.log("floor:", block_Info.floor)
|
||||
// }
|
||||
// if (block_Info.floorTime) {
|
||||
// console.log("floorTime:", block_Info.floorTime)
|
||||
// }
|
||||
this.block_Info = this.jsonDeepClone(block_Info);
|
||||
if (node) this.block_Info.node = node;
|
||||
this.type = block_Info.type;
|
||||
this.color = block_Info.color;
|
||||
// if (this.color >= 12)
|
||||
// this.changeColor = this.color;
|
||||
// else
|
||||
// this.changeColor = 0;
|
||||
this.blockId = block_Info.id;
|
||||
//console.log("方块类型",this.type,"方块颜色",this.color,"方块ID",this.blockId);
|
||||
// if(posX&&posY){
|
||||
// this.posX = posX;
|
||||
// this.posY = posY;
|
||||
// }
|
||||
|
||||
// console.log("方块层级",this.node.zIndex);
|
||||
this.initColor();
|
||||
|
|
@ -294,7 +291,6 @@ export default class Block extends cc.Component {
|
|||
//初始化方块类型
|
||||
initType() {
|
||||
let posConfig = cc.fx.GameConfig.PROP_INFO[this.block_Info.block];
|
||||
|
||||
switch (this.type) {
|
||||
case BlockType.炸弹块:
|
||||
let boom = cc.instantiate(MapConroler._instance.Block_Prop[this.type]);
|
||||
|
|
@ -387,6 +383,35 @@ export default class Block extends cc.Component {
|
|||
this.node.children[i].active = false;
|
||||
}
|
||||
break;
|
||||
case BlockType.问号块:
|
||||
let question = cc.instantiate(MapConroler._instance.Block_Prop[12]);
|
||||
question.parent = this.node;
|
||||
let name2 = "10color" + this.block_Info.block;
|
||||
let number = 5;
|
||||
let blockSpriteFrame = MapConroler._instance.Block_Color[number]._spriteFrames;
|
||||
var spriteFrame2 = blockSpriteFrame[name2];
|
||||
question.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame2;
|
||||
let freezeX2 = posConfig.pos6.x - (this.node.width * (this.node.anchorX - 0.5)); let freezeY2 = posConfig.pos6.y + this.node.height / 2;
|
||||
if (this.block_Info.block == 2) {
|
||||
question.setPosition(freezeX2 + 4, freezeY2 - 10);
|
||||
}
|
||||
else question.setPosition(freezeX2, freezeY2);
|
||||
question.getComponent("Question").init(this.block_Info.questionTime);
|
||||
question.getChildByName("time").setPosition(posConfig.pos5.x - 10 - freezeX2, posConfig.pos5.y - 2 - freezeY2);
|
||||
break;
|
||||
}
|
||||
if (this.block_Info.lock != undefined && this.block_Info.lock != null) {
|
||||
let lock = cc.instantiate(MapConroler._instance.Block_Prop[3]);
|
||||
lock.parent = this.node;
|
||||
if (this.block_Info.lock == true) {
|
||||
lock.color = cc.color(0, 0, 0);
|
||||
}
|
||||
else {
|
||||
lock.color = cc.color(0, 200, 255);
|
||||
}
|
||||
|
||||
lock.setPosition(posConfig.pos1.x, posConfig.pos1.y);
|
||||
lock.getComponent("Lock").init(this.block_Info.lockTime, "block");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -394,11 +419,20 @@ export default class Block extends cc.Component {
|
|||
initColor() {
|
||||
let name = this.color + "color" + this.block_Info.block;
|
||||
let number = Math.floor((this.color - 1) / 2);
|
||||
|
||||
//特殊方块,可移动不可消除类型
|
||||
if (this.color == 11) {
|
||||
name = "0color" + this.block_Info.block;
|
||||
number = 5;
|
||||
}
|
||||
else if (this.type == BlockType.问号块) {
|
||||
return;
|
||||
}
|
||||
// else if (this.color > 11 && this.color < 22) {
|
||||
// let color = this.color - 11;
|
||||
// name = color + "color" + this.block_Info.block;
|
||||
// number = Math.floor((color - 1) / 2);
|
||||
// }
|
||||
let blockSpriteFrame = MapConroler._instance.Block_Color[number]._spriteFrames;
|
||||
var spriteFrame = blockSpriteFrame[name];
|
||||
// if(this.type == BlockType.冻结块){
|
||||
|
|
@ -558,7 +592,9 @@ export default class Block extends cc.Component {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (this.block_Info.lock) {
|
||||
return;
|
||||
}
|
||||
let jg = MapConroler._instance.checkPass(this.node, this.allBlocks);
|
||||
|
||||
if (jg >= 0) {
|
||||
|
|
@ -745,6 +781,9 @@ export default class Block extends cc.Component {
|
|||
// hammerBtn.getComponent("btnControl").setTouch(true);
|
||||
// return;
|
||||
// }
|
||||
if (this.type == BlockType.冻结块 || this.type == BlockType.问号块) {
|
||||
return;
|
||||
}
|
||||
MapConroler._instance.node.parent.getChildByName("Mask").active = false;
|
||||
this.eliminate2();
|
||||
this.isTouch = false;
|
||||
|
|
@ -1066,15 +1105,7 @@ export default class Block extends cc.Component {
|
|||
|
||||
}
|
||||
MapConroler._instance.startHammer(pos);
|
||||
if (this.type == BlockType.冻结块) {
|
||||
MapConroler._instance.ishammer = false;
|
||||
if (MapConroler._instance.hammer == true) MapConroler._instance.hammer = false;
|
||||
setTimeout(() => {
|
||||
this.node.getChildByName("freeze").getComponent("Freeze").reduce(2);
|
||||
}, 1000);
|
||||
return;
|
||||
}
|
||||
else if (this.type == BlockType.上锁块) {
|
||||
if (this.type == BlockType.上锁块) {
|
||||
MapConroler._instance.ishammer = false;
|
||||
if (MapConroler._instance.hammer == true) MapConroler._instance.hammer = false;
|
||||
setTimeout(() => {
|
||||
|
|
@ -1309,6 +1340,28 @@ export default class Block extends cc.Component {
|
|||
}
|
||||
}
|
||||
|
||||
//问号状态恢复成普通颜色
|
||||
resetQuestionColor() {
|
||||
this.type = 0;
|
||||
this.initColor();
|
||||
}
|
||||
|
||||
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);
|
||||
|
||||
} else {
|
||||
this.block_Info.lock = true;
|
||||
|
||||
this.node.getChildByName("lock").color = cc.color(0, 0, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
initBlocks() {
|
||||
this.allBlocks = [];
|
||||
|
||||
|
|
|
|||
|
|
@ -141,8 +141,8 @@ export default class JiaZai extends cc.Component {
|
|||
|
||||
// 获取CareerList组件实例
|
||||
if (cc.fx.GameConfig.GM_INFO.address == "" || cc.fx.GameConfig.GM_INFO.address == "其他") {
|
||||
// let top = this.node.getChildByName("Load").getChildByName("Top");
|
||||
// top.getChildByName("posBtn").getChildByName("red").active = true;
|
||||
let top = this.node.getChildByName("Load").getChildByName("Top");
|
||||
top.getChildByName("posBtn").getChildByName("red").active = true;
|
||||
}
|
||||
// //console.log("加载关卡配置2");
|
||||
// window.initMgr();
|
||||
|
|
@ -884,18 +884,7 @@ export default class JiaZai extends cc.Component {
|
|||
//@ts-ignore
|
||||
wx.offHide(this.onHideListener);
|
||||
}
|
||||
Utils.getCityRank((res) => {
|
||||
if (res.code === 1) {
|
||||
if (res.data.length > 0) {
|
||||
for (let i = 0; i < res.data.length; i++) {
|
||||
if (res.data[i]._id === cc.fx.GameConfig.GM_INFO.uid) {
|
||||
cc.fx.GameConfig.GM_INFO.cityRank = i + 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}, cc.fx.GameConfig.GM_INFO.address);
|
||||
|
||||
if (this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl")._touch) {
|
||||
this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl").setTouch(false);
|
||||
let version = cc.fx.GameTool.getWechatGameVersion();
|
||||
|
|
@ -2477,8 +2466,9 @@ export default class JiaZai extends cc.Component {
|
|||
rankData: JSON.parse(JSON.stringify(rankData)),
|
||||
topData: JSON.parse(JSON.stringify(topData))
|
||||
}
|
||||
|
||||
// console.log("自己的addLevel", cc.fx.GameConfig.GM_INFO.addLevel);
|
||||
if (cc.fx.GameConfig.GM_INFO.addLevel > 4) {
|
||||
// console.log("______________自己入职了");
|
||||
this.addSelfToRank(rankData);
|
||||
}
|
||||
for (let i = 0; i < rankData.length; i++) {
|
||||
|
|
@ -2523,6 +2513,7 @@ export default class JiaZai extends cc.Component {
|
|||
name = name;
|
||||
}
|
||||
let selfData = {
|
||||
id: cc.fx.GameConfig.GM_INFO.uid,
|
||||
username: cc.fx.GameConfig.GM_INFO.username,
|
||||
addLevel: cc.fx.GameConfig.GM_INFO.addLevel,
|
||||
useravatar: name,
|
||||
|
|
@ -2533,7 +2524,6 @@ export default class JiaZai extends cc.Component {
|
|||
rankingData = item.rankingData;
|
||||
}
|
||||
})
|
||||
|
||||
if (rankingData.length >= 8) {
|
||||
let jg = false;
|
||||
for (let j = 0; j < 8; j++) {
|
||||
|
|
@ -2543,7 +2533,9 @@ export default class JiaZai extends cc.Component {
|
|||
}
|
||||
}
|
||||
if (!jg) {
|
||||
for (let i = 0; i < rankingData.length; i++) {
|
||||
let length = rankingData.length;
|
||||
if (length > 8) length = 8;
|
||||
for (let i = 0; i < length; i++) {
|
||||
if (rankingData[i].addLevel < selfData.addLevel) {
|
||||
rankingData.splice(i, 0, selfData);
|
||||
self = true
|
||||
|
|
@ -2622,6 +2614,16 @@ export default class JiaZai extends cc.Component {
|
|||
if (nowTime - address.time > 60 * 60 * 24) {
|
||||
this.runAuthorize();
|
||||
} else {
|
||||
// if (cc.fx.GameConfig.GM_INFO.address == "" || cc.fx.GameConfig.GM_INFO.address == null || cc.fx.GameConfig.GM_INFO.address == undefined) {
|
||||
// cc.fx.GameConfig.GM_INFO.address = "其他";
|
||||
// let locationInfo = {
|
||||
// type: "errorCode1",
|
||||
// result: cc.fx.GameConfig.GM_INFO.address,
|
||||
// info: ""
|
||||
// }
|
||||
// cc.fx.GameTool.shushu_Track("location", locationInfo);
|
||||
// cc.fx.GameConfig.GM_INFO.address = "其他";
|
||||
// }
|
||||
careerList.scrollToCity(cc.fx.GameConfig.GM_INFO.address, 1.0, 0.5); // 1秒动画,屏幕30%位置
|
||||
top.getChildByName("posBtn").active = false;
|
||||
top.getChildByName("topBtn").active = true;
|
||||
|
|
@ -2631,6 +2633,13 @@ export default class JiaZai extends cc.Component {
|
|||
else {
|
||||
if (cc.fx.GameConfig.GM_INFO.address == "" || cc.fx.GameConfig.GM_INFO.address == null || cc.fx.GameConfig.GM_INFO.address == undefined) {
|
||||
cc.fx.GameConfig.GM_INFO.address = "其他";
|
||||
let locationInfo = {
|
||||
type: "errorCode1",
|
||||
result: cc.fx.GameConfig.GM_INFO.address,
|
||||
info: ""
|
||||
}
|
||||
cc.fx.GameTool.shushu_Track("location", locationInfo);
|
||||
cc.fx.GameConfig.GM_INFO.address = "其他";
|
||||
}
|
||||
careerList.scrollToCity(cc.fx.GameConfig.GM_INFO.address, 1.0, 0.5); // 1秒动画,屏幕30%位置
|
||||
top.getChildByName("posBtn").active = false;
|
||||
|
|
|
|||
|
|
@ -177,6 +177,7 @@ export default class MapConroler extends cc.Component {
|
|||
private magicEffectIndex: number = 0;
|
||||
private magicEffect1: cc.Node = null; // 第一套特效节点
|
||||
private magicEffect2: cc.Node = null; // 第二套特效节点
|
||||
questionArray: any[];
|
||||
|
||||
onLoad() {
|
||||
|
||||
|
|
@ -248,13 +249,20 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
Utils.getCityRank((res) => {
|
||||
if (res.code === 1) {
|
||||
// console.log("城市排行数据:", res.data);
|
||||
if (res.data.length > 0) {
|
||||
for (let i = 0; i < res.data.length; i++) {
|
||||
if (res.data[i]._id === cc.fx.GameConfig.GM_INFO.uid) {
|
||||
if (res.data[i].addLevel <= cc.fx.GameConfig.GM_INFO.addLevel) {
|
||||
cc.fx.GameConfig.GM_INFO.cityRank = i + 1;
|
||||
this.cityRank = cc.fx.GameConfig.GM_INFO.cityRank;
|
||||
// console.log("我的排名:", cc.fx.GameConfig.GM_INFO.cityRank, "榜单里没有,从比较中得到");
|
||||
break;
|
||||
}
|
||||
if (i == res.data.length - 1) {
|
||||
cc.fx.GameConfig.GM_INFO.cityRank = i + 2;
|
||||
this.cityRank = cc.fx.GameConfig.GM_INFO.cityRank;
|
||||
// console.log("我的排名:", cc.fx.GameConfig.GM_INFO.cityRank, "我不在绑,且比不过最后一名");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -496,6 +504,7 @@ export default class MapConroler extends cc.Component {
|
|||
this.riseFallBlcok = [];
|
||||
this.mapBlockArray = [];
|
||||
this.freezeArray = [];
|
||||
this.questionArray = [];
|
||||
this.lockArray = [];
|
||||
this.lockArray2 = [];
|
||||
this.count_Time = 0;
|
||||
|
|
@ -1719,6 +1728,7 @@ export default class MapConroler extends cc.Component {
|
|||
return jg;
|
||||
}
|
||||
|
||||
|
||||
if (wallArray[i].getComponent("Wall").color != node.getComponent("Block").color) {
|
||||
// console.log("颜色不一致,结果失败");
|
||||
jg = false;
|
||||
|
|
@ -1732,6 +1742,10 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (node.getComponent("Block").type == 16) {
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
if (jg == true && node.getComponent("Block").type == 5) {
|
||||
for (let j = 0; j < wallArray.length; j++) {
|
||||
if (wallArray[j].getComponent("Wall").special == 1 && wallArray[j].getComponent("Wall").wall_Info.length != 0) {
|
||||
|
|
@ -1961,6 +1975,31 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
}
|
||||
|
||||
let questionBlock = this.node.children.filter(child => {
|
||||
if (child.getComponent("Block")) {
|
||||
if (child.getComponent("Block").type == 16)
|
||||
return child
|
||||
}
|
||||
});
|
||||
if (questionBlock.length > 0) {
|
||||
for (let i = 0; i < questionBlock.length; i++) {
|
||||
questionBlock[i].getChildByName("question").getComponent("Question").reduce(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
let lockBlock = this.node.children.filter(child => {
|
||||
if (child.getComponent("Block")) {
|
||||
if (child.getComponent("Block").block_Info.lock != undefined)
|
||||
return child
|
||||
}
|
||||
});
|
||||
if (lockBlock.length > 0) {
|
||||
for (let i = 0; i < lockBlock.length; i++) {
|
||||
lockBlock[i].getComponent("Block").changeSwitch();
|
||||
}
|
||||
}
|
||||
|
||||
// if (node.getComponent("Block").type == 2 || node.getComponent("Block").type == 4) {
|
||||
//普通钥匙块
|
||||
if (node.getComponent("Block").type == 2) {
|
||||
|
|
@ -2070,11 +2109,17 @@ export default class MapConroler extends cc.Component {
|
|||
if (res.code === 1) {
|
||||
if (res.data.length > 0) {
|
||||
for (let i = 0; i < res.data.length; i++) {
|
||||
if (res.data[i]._id === cc.fx.GameConfig.GM_INFO.uid) {
|
||||
if (res.data[i].addLevel <= (cc.fx.GameConfig.GM_INFO.addLevel + 1)) {
|
||||
cc.fx.GameConfig.GM_INFO.cityRank = i + 1;
|
||||
this.cityRank = cc.fx.GameConfig.GM_INFO.cityRank;
|
||||
// console.log("我的排名:", cc.fx.GameConfig.GM_INFO.cityRank, "榜单里没有,从比较中得到");
|
||||
break;
|
||||
}
|
||||
if (i == res.data.length - 1) {
|
||||
cc.fx.GameConfig.GM_INFO.cityRank = i + 2;
|
||||
this.cityRank = cc.fx.GameConfig.GM_INFO.cityRank;
|
||||
// console.log("我的排名:", cc.fx.GameConfig.GM_INFO.cityRank, "我不在绑,且比不过最后一名");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -3687,7 +3732,7 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
}
|
||||
else if (this.blocks[i].getComponent("Block").type == 4) {
|
||||
if (this.blocks[i].getComponent("Block").block_Info.floor != undefined || this.blocks[i].getComponent("Block").block_Info.floor == null) {
|
||||
if (this.blocks[i].getComponent("Block").block_Info.floor == undefined || this.blocks[i].getComponent("Block").block_Info.floor == null) {
|
||||
this.freezeArray.push(this.blocks[i]);
|
||||
}
|
||||
}
|
||||
|
|
@ -3699,6 +3744,11 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
}
|
||||
}
|
||||
else if (this.blocks[i].getComponent("Block").type == 16) {
|
||||
if (this.blocks[i].getComponent("Block").block_Info.floor == undefined || this.blocks[i].getComponent("Block").block_Info.floor == null) {
|
||||
this.questionArray.push(this.blocks[i]);
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (!this.blocks[i].getComponent("Block").isEliminatedByHammer) {
|
||||
if (this.blocks[i].getComponent("Block").block_Info.floor == undefined || this.blocks[i].getComponent("Block").block_Info.floor == null) {
|
||||
|
|
@ -4005,12 +4055,12 @@ export default class MapConroler extends cc.Component {
|
|||
let shu = block.getComponent("Block").shu;
|
||||
let direction = wall.node.parent.name;
|
||||
if (direction == "left" || direction == "right") {
|
||||
if (wall.wall_Info.length >= shu) {
|
||||
if (wall.length >= shu) {
|
||||
jg = true;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (wall.wall_Info.length >= heng) {
|
||||
if (wall.length >= heng) {
|
||||
jg = true;
|
||||
}
|
||||
}
|
||||
|
|
@ -4020,12 +4070,19 @@ export default class MapConroler extends cc.Component {
|
|||
return jg;
|
||||
}
|
||||
|
||||
//判断方块是否是可移动类型
|
||||
//判断方块是否是可移动类型,或者可消除类型
|
||||
blockCanMove(block) {
|
||||
if (block.getComponent("Block").type == 10 || block.getComponent("Block").type == 3
|
||||
|| block.getComponent("Block").type == 4) {
|
||||
|| block.getComponent("Block").type == 4 || block.getComponent("Block").type == 16) {
|
||||
return false;
|
||||
}
|
||||
//如果方块有锁,并且锁关着,则不能通过
|
||||
else if (block.getComponent("Block").block_Info.lock != undefined && block.getComponent("Block").block_Info.lock != null) {
|
||||
if (block.getComponent("Block").block_Info.lock == true) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -4098,7 +4155,8 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
}
|
||||
}
|
||||
//是变色门关卡,并且消除的块是当前颜色最后一个,对变色门中该颜色做消除处理
|
||||
|
||||
//如果变色门是打开状态,且当前颜色是最后一个颜色,那么游戏结束
|
||||
if (openResult == true && this.changeColor == true) {
|
||||
result = true;
|
||||
}
|
||||
|
|
@ -4216,7 +4274,7 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
|
||||
if (cc.fx.GameConfig.GM_INFO.addLevel == 5) {
|
||||
// alert("弹出入职界面");eeeeeeeeeeeeeeee
|
||||
// alert("弹出入职界面");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -4586,6 +4644,16 @@ export default class MapConroler extends cc.Component {
|
|||
if (nowTime - address.time > 60 * 60 * 24) {
|
||||
this.runAuthorize();
|
||||
} else {
|
||||
// if (cc.fx.GameConfig.GM_INFO.address == "" || cc.fx.GameConfig.GM_INFO.address == null || cc.fx.GameConfig.GM_INFO.address == undefined) {
|
||||
// cc.fx.GameConfig.GM_INFO.address = "其他";
|
||||
// let locationInfo = {
|
||||
// type: "errorCode1",
|
||||
// result: cc.fx.GameConfig.GM_INFO.address,
|
||||
// info: ""
|
||||
// }
|
||||
// cc.fx.GameTool.shushu_Track("location", locationInfo);
|
||||
// cc.fx.GameConfig.GM_INFO.address = "其他";
|
||||
// }
|
||||
}
|
||||
}
|
||||
//有缓存,并且授权了
|
||||
|
|
|
|||
|
|
@ -1786,7 +1786,6 @@ export namespace MiniGameSdk {
|
|||
API._ge.payEvent(payAmount, "CNY", orderId, payReason, "微信");
|
||||
}
|
||||
console.log("版本:", version);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -724,7 +724,6 @@ export default class Wall extends cc.Component {
|
|||
}
|
||||
if (MapConroler._instance.teamDoors[0].wall_Info.longAndShort[0] == 1 && MapConroler._instance.teamDoors[0].order == true) {
|
||||
var temp = this.wall_Info;
|
||||
debugger;
|
||||
}
|
||||
if (MapConroler._instance.teamDoors[0].order == false) {
|
||||
//上来是开满的
|
||||
|
|
|
|||
|
|
@ -1412,10 +1412,14 @@ export default class Utils {
|
|||
cc.fx.GameConfig.GM_INFO.uid = uid;
|
||||
}
|
||||
|
||||
let address = data;
|
||||
if (address == "" || address == null || address == undefined) {
|
||||
address = "其他";
|
||||
}
|
||||
let setData = {
|
||||
uid: cc.fx.GameConfig.GM_INFO.uid,
|
||||
action: 'read',
|
||||
address: data,
|
||||
address: address,
|
||||
}
|
||||
|
||||
console.log("_______________s:", setData);
|
||||
|
|
|
|||
|
|
@ -396,9 +396,9 @@ var GameTool = {
|
|||
}
|
||||
Utils.setUserLevel((data) => {
|
||||
if (callBack) {
|
||||
// console.log("获取到的IP信息:", data, data.data.address, data.data.IP);
|
||||
if (data.code == 1) {
|
||||
if (updateLocation == true) {
|
||||
if (cc.fx.GameConfig.GM_INFO.address == "") {
|
||||
if (cc.fx.GameConfig.GM_INFO.address == "" || cc.fx.GameConfig.GM_INFO.address == null || cc.fx.GameConfig.GM_INFO.address == undefined) {
|
||||
cc.fx.GameConfig.GM_INFO.address = data.data.address;
|
||||
Utils.setCityInfo(null, data.data.address, true);
|
||||
}
|
||||
|
|
@ -410,6 +410,13 @@ var GameTool = {
|
|||
}
|
||||
cc.fx.GameTool.shushu_Track("location", locationInfo);
|
||||
}
|
||||
else {
|
||||
if (cc.fx.GameConfig.GM_INFO.address == "" || cc.fx.GameConfig.GM_INFO.address == null || cc.fx.GameConfig.GM_INFO.address == undefined) {
|
||||
cc.fx.GameConfig.GM_INFO.address = data.data.address;
|
||||
}
|
||||
}
|
||||
}
|
||||
// console.log("获取到的IP信息:", data, data.data.address, data.data.IP);
|
||||
callBack(data);
|
||||
}
|
||||
})
|
||||
|
|
@ -419,8 +426,8 @@ var GameTool = {
|
|||
//关卡上限
|
||||
maxLevel() {
|
||||
let jg = false;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 709) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 710;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 729) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 730;
|
||||
jg = true;
|
||||
}
|
||||
return jg;
|
||||
|
|
@ -1590,6 +1597,7 @@ var GameTool = {
|
|||
|
||||
onShowVideo(callback: Function, videoData: any) {
|
||||
console.log("调用广告");
|
||||
//@ts-ignore
|
||||
if ((typeof wx !== 'undefined' && wx !== null) || (typeof tt !== 'undefined' && tt !== null)) {
|
||||
let scene = null;
|
||||
if (videoData.current_page == "HomeScene") {
|
||||
|
|
@ -1793,7 +1801,9 @@ var GameTool = {
|
|||
|
||||
requestSubscribe() {
|
||||
if (cc.sys.platform === cc.sys.WECHAT_GAME) {
|
||||
//@ts-ignore
|
||||
if (typeof wx === 'undefined') return;
|
||||
//@ts-ignore
|
||||
wx.requestSubscribeMessage({
|
||||
tmplIds: ['BIsiZH6pcs4T9FLp0IAZ8d07zS0ELi7vX5RX8P38gN0'],
|
||||
success: (res) => {
|
||||
|
|
|
|||
86
assets/Script/prop/Question.ts
Normal file
86
assets/Script/prop/Question.ts
Normal file
|
|
@ -0,0 +1,86 @@
|
|||
// 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();
|
||||
|
||||
}
|
||||
|
||||
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) {}
|
||||
}
|
||||
10
assets/Script/prop/Question.ts.meta
Normal file
10
assets/Script/prop/Question.ts.meta
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"ver": "1.1.0",
|
||||
"uuid": "94636634-5546-415c-b04d-f6acb91e2407",
|
||||
"importer": "typescript",
|
||||
"isPlugin": false,
|
||||
"loadPluginInWeb": true,
|
||||
"loadPluginInNative": true,
|
||||
"loadPluginInEditor": false,
|
||||
"subMetas": {}
|
||||
}
|
||||
|
|
@ -6,364 +6,613 @@
|
|||
<dict>
|
||||
<key>0color0.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1125,1728},{122,129}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{122,129}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{122,129}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{122,129}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1364,367},{122,129}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>0color1.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{974,1854},{244,130}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{244,130}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{244,130}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1249,498},{244,130}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{244,130}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{244,130}</string>
|
||||
</dict>
|
||||
<key>0color10.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{2,1127},{244,371}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{244,371}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{244,371}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1,377},{244,371}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{244,371}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{244,371}</string>
|
||||
</dict>
|
||||
<key>0color11.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{738,1486},{366,254}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{366,254}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{366,254}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{739,370},{366,254}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{366,254}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{366,254}</string>
|
||||
</dict>
|
||||
<key>0color12.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{368,2},{246,370}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{246,370}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{246,370}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{491,374},{246,370}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{246,370}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{246,370}</string>
|
||||
</dict>
|
||||
<key>0color13.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1371,2},{363,249}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{363,249}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{363,249}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{363,249}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1493,1},{363,249}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>0color14.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1241,736},{364,251}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{364,251}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{364,251}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1240,1},{364,251}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{364,251}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{364,251}</string>
|
||||
</dict>
|
||||
<key>0color15.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1117,2},{364,252}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{364,252}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{364,252}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{995,367},{364,252}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{364,252}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{364,252}</string>
|
||||
</dict>
|
||||
<key>0color16.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{616,2},{243,368}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{243,368}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{243,368}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{243,368}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1,750},{243,368}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>0color17.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{491,745},{242,369}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{242,369}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{242,369}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{242,369}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{371,750},{242,369}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>0color18.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{2,378},{364,374}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{364,374}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{364,374}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1,1},{364,374}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{364,374}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{364,374}</string>
|
||||
</dict>
|
||||
<key>0color19.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1743,1114},{246,248}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{246,248}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{246,248}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{246,248}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1610,632},{246,248}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>0color2.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{994,1473},{127,254}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{127,254}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{127,254}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{742,738},{127,254}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{127,254}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{127,254}</string>
|
||||
</dict>
|
||||
<key>0color20.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1743,868},{244,249}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{244,249}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{244,249}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{244,249}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1364,632},{244,249}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>0color21.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1494,733},{247,252}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{247,252}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{247,252}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1115,733},{247,252}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{247,252}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{247,252}</string>
|
||||
</dict>
|
||||
<key>0color22.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1743,376},{244,251}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{244,251}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{244,251}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1495,386},{244,251}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{244,251}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{244,251}</string>
|
||||
</dict>
|
||||
<key>0color3.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{366,1873},{362,132}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{362,132}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{362,132}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1493,252},{362,132}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{362,132}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{362,132}</string>
|
||||
</dict>
|
||||
<key>0color4.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{615,1116},{122,368}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{122,368}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{122,368}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{610,1},{122,368}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{122,368}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{122,368}</string>
|
||||
</dict>
|
||||
<key>0color5.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1256,1728},{242,253}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{242,253}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{242,253}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{871,738},{242,253}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{242,253}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{242,253}</string>
|
||||
</dict>
|
||||
<key>0color6.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{248,1127},{241,371}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{241,371}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{241,371}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{367,1},{241,371}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{241,371}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{241,371}</string>
|
||||
</dict>
|
||||
<key>0color7.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{1109,370},{364,252}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{364,252}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{364,252}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{986,1},{364,252}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{364,252}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{364,252}</string>
|
||||
</dict>
|
||||
<key>0color8.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{246,1500},{242,371}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{242,371}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{242,371}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{247,377},{242,371}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{242,371}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{242,371}</string>
|
||||
</dict>
|
||||
<key>0color9.png</key>
|
||||
<dict>
|
||||
<key>aliases</key>
|
||||
<array/>
|
||||
<key>spriteOffset</key>
|
||||
<key>frame</key>
|
||||
<string>{{857,372},{367,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{367,250}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{367,250}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{734,1},{367,250}}</string>
|
||||
<key>textureRotated</key>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{367,250}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{367,250}</string>
|
||||
</dict>
|
||||
<key>10color0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{994,1729},{122,129}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{122,129}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{122,129}</string>
|
||||
</dict>
|
||||
<key>10color1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{730,1872},{242,132}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{242,132}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{242,132}</string>
|
||||
</dict>
|
||||
<key>10color10.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,754},{244,371}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{244,371}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{244,371}</string>
|
||||
</dict>
|
||||
<key>10color11.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{861,2},{366,254}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{366,254}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{366,254}</string>
|
||||
</dict>
|
||||
<key>10color12.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{490,1500},{246,370}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{246,370}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{246,370}</string>
|
||||
</dict>
|
||||
<key>10color13.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1363,368},{363,249}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{363,249}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{363,249}</string>
|
||||
</dict>
|
||||
<key>10color14.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{993,1107},{364,251}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{364,251}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{364,251}</string>
|
||||
</dict>
|
||||
<key>10color15.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{987,741},{364,252}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{364,252}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{364,252}</string>
|
||||
</dict>
|
||||
<key>10color16.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{612,374},{243,368}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{243,368}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{243,368}</string>
|
||||
</dict>
|
||||
<key>10color17.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{368,374},{242,369}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{242,369}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{242,369}</string>
|
||||
</dict>
|
||||
<key>10color18.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,2},{364,374}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{364,374}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{364,374}</string>
|
||||
</dict>
|
||||
<key>10color19.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1495,987},{246,248}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{246,248}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{246,248}</string>
|
||||
</dict>
|
||||
<key>10color2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1743,2},{126,252}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{126,252}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{126,252}</string>
|
||||
</dict>
|
||||
<key>10color20.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1743,622},{244,249}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{244,249}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{244,249}</string>
|
||||
</dict>
|
||||
<key>10color21.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1246,1102},{247,252}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{247,252}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{247,252}</string>
|
||||
</dict>
|
||||
<key>10color22.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1743,130},{244,251}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{244,251}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{244,251}</string>
|
||||
</dict>
|
||||
<key>10color3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1873},{362,132}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{362,132}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{362,132}</string>
|
||||
</dict>
|
||||
<key>10color4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{491,1116},{122,368}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{122,368}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{122,368}</string>
|
||||
</dict>
|
||||
<key>10color5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1123,1473},{242,253}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{242,253}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{242,253}</string>
|
||||
</dict>
|
||||
<key>10color6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{248,754},{241,371}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{241,371}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{241,371}</string>
|
||||
</dict>
|
||||
<key>10color7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{739,1113},{364,252}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{364,252}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{364,252}</string>
|
||||
</dict>
|
||||
<key>10color8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1500},{242,371}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{242,371}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{242,371}</string>
|
||||
</dict>
|
||||
<key>10color9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{735,744},{367,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{367,250}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{367,250}</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>metadata</key>
|
||||
<dict>
|
||||
<key>format</key>
|
||||
<integer>3</integer>
|
||||
<key>pixelFormat</key>
|
||||
<string>RGBA8888</string>
|
||||
<key>premultiplyAlpha</key>
|
||||
<false/>
|
||||
<integer>2</integer>
|
||||
<key>realTextureFileName</key>
|
||||
<string>block6.png</string>
|
||||
<key>size</key>
|
||||
<string>{1857,994}</string>
|
||||
<string>{2048,2048}</string>
|
||||
<key>smartupdate</key>
|
||||
<string>$TexturePacker:SmartUpdate:99bd26bd7ff0e9aa157d7979f357f6de:307103781d40fdc2b3f32f556a0ddc23:311a5ee8e5275e9162079c3fdb057572$</string>
|
||||
<string>$TexturePacker:SmartUpdate:500dcef4e913925b97d88f5dda3e2d4d$</string>
|
||||
<key>textureFileName</key>
|
||||
<string>block6.png</string>
|
||||
</dict>
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
"importer": "asset",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"size": {
|
||||
"width": 1857,
|
||||
"height": 994
|
||||
"width": 2048,
|
||||
"height": 2048
|
||||
},
|
||||
"type": "Texture Packer",
|
||||
"subMetas": {
|
||||
|
|
@ -16,11 +16,11 @@
|
|||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1364,
|
||||
"trimY": 367,
|
||||
"trimX": 1125,
|
||||
"trimY": 1728,
|
||||
"width": 122,
|
||||
"height": 129,
|
||||
"rawWidth": 122,
|
||||
|
|
@ -42,8 +42,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1249,
|
||||
"trimY": 498,
|
||||
"trimX": 974,
|
||||
"trimY": 1854,
|
||||
"width": 244,
|
||||
"height": 130,
|
||||
"rawWidth": 244,
|
||||
|
|
@ -65,8 +65,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1,
|
||||
"trimY": 377,
|
||||
"trimX": 2,
|
||||
"trimY": 1127,
|
||||
"width": 244,
|
||||
"height": 371,
|
||||
"rawWidth": 244,
|
||||
|
|
@ -88,8 +88,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 739,
|
||||
"trimY": 370,
|
||||
"trimX": 738,
|
||||
"trimY": 1486,
|
||||
"width": 366,
|
||||
"height": 254,
|
||||
"rawWidth": 366,
|
||||
|
|
@ -111,8 +111,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 491,
|
||||
"trimY": 374,
|
||||
"trimX": 368,
|
||||
"trimY": 2,
|
||||
"width": 246,
|
||||
"height": 370,
|
||||
"rawWidth": 246,
|
||||
|
|
@ -131,11 +131,11 @@
|
|||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1493,
|
||||
"trimY": 1,
|
||||
"trimX": 1371,
|
||||
"trimY": 2,
|
||||
"width": 363,
|
||||
"height": 249,
|
||||
"rawWidth": 363,
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1240,
|
||||
"trimY": 1,
|
||||
"trimX": 1241,
|
||||
"trimY": 736,
|
||||
"width": 364,
|
||||
"height": 251,
|
||||
"rawWidth": 364,
|
||||
|
|
@ -180,8 +180,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 995,
|
||||
"trimY": 367,
|
||||
"trimX": 1117,
|
||||
"trimY": 2,
|
||||
"width": 364,
|
||||
"height": 252,
|
||||
"rawWidth": 364,
|
||||
|
|
@ -200,11 +200,11 @@
|
|||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1,
|
||||
"trimY": 750,
|
||||
"trimX": 616,
|
||||
"trimY": 2,
|
||||
"width": 243,
|
||||
"height": 368,
|
||||
"rawWidth": 243,
|
||||
|
|
@ -223,11 +223,11 @@
|
|||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 371,
|
||||
"trimY": 750,
|
||||
"trimX": 491,
|
||||
"trimY": 745,
|
||||
"width": 242,
|
||||
"height": 369,
|
||||
"rawWidth": 242,
|
||||
|
|
@ -249,8 +249,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1,
|
||||
"trimY": 1,
|
||||
"trimX": 2,
|
||||
"trimY": 378,
|
||||
"width": 364,
|
||||
"height": 374,
|
||||
"rawWidth": 364,
|
||||
|
|
@ -269,11 +269,11 @@
|
|||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1610,
|
||||
"trimY": 632,
|
||||
"trimX": 1743,
|
||||
"trimY": 1114,
|
||||
"width": 246,
|
||||
"height": 248,
|
||||
"rawWidth": 246,
|
||||
|
|
@ -295,8 +295,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 742,
|
||||
"trimY": 738,
|
||||
"trimX": 994,
|
||||
"trimY": 1473,
|
||||
"width": 127,
|
||||
"height": 254,
|
||||
"rawWidth": 127,
|
||||
|
|
@ -315,11 +315,11 @@
|
|||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1364,
|
||||
"trimY": 632,
|
||||
"trimX": 1743,
|
||||
"trimY": 868,
|
||||
"width": 244,
|
||||
"height": 249,
|
||||
"rawWidth": 244,
|
||||
|
|
@ -341,7 +341,7 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1115,
|
||||
"trimX": 1494,
|
||||
"trimY": 733,
|
||||
"width": 247,
|
||||
"height": 252,
|
||||
|
|
@ -364,8 +364,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1495,
|
||||
"trimY": 386,
|
||||
"trimX": 1743,
|
||||
"trimY": 376,
|
||||
"width": 244,
|
||||
"height": 251,
|
||||
"rawWidth": 244,
|
||||
|
|
@ -387,8 +387,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1493,
|
||||
"trimY": 252,
|
||||
"trimX": 366,
|
||||
"trimY": 1873,
|
||||
"width": 362,
|
||||
"height": 132,
|
||||
"rawWidth": 362,
|
||||
|
|
@ -410,8 +410,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 610,
|
||||
"trimY": 1,
|
||||
"trimX": 615,
|
||||
"trimY": 1116,
|
||||
"width": 122,
|
||||
"height": 368,
|
||||
"rawWidth": 122,
|
||||
|
|
@ -433,8 +433,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 871,
|
||||
"trimY": 738,
|
||||
"trimX": 1256,
|
||||
"trimY": 1728,
|
||||
"width": 242,
|
||||
"height": 253,
|
||||
"rawWidth": 242,
|
||||
|
|
@ -456,8 +456,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 367,
|
||||
"trimY": 1,
|
||||
"trimX": 248,
|
||||
"trimY": 1127,
|
||||
"width": 241,
|
||||
"height": 371,
|
||||
"rawWidth": 241,
|
||||
|
|
@ -479,8 +479,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 986,
|
||||
"trimY": 1,
|
||||
"trimX": 1109,
|
||||
"trimY": 370,
|
||||
"width": 364,
|
||||
"height": 252,
|
||||
"rawWidth": 364,
|
||||
|
|
@ -502,8 +502,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 247,
|
||||
"trimY": 377,
|
||||
"trimX": 246,
|
||||
"trimY": 1500,
|
||||
"width": 242,
|
||||
"height": 371,
|
||||
"rawWidth": 242,
|
||||
|
|
@ -525,8 +525,537 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 734,
|
||||
"trimY": 1,
|
||||
"trimX": 857,
|
||||
"trimY": 372,
|
||||
"width": 367,
|
||||
"height": 250,
|
||||
"rawWidth": 367,
|
||||
"rawHeight": 250,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color0.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "236dd11d-b4af-483c-95bd-fcbf21c5de2f",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 994,
|
||||
"trimY": 1729,
|
||||
"width": 122,
|
||||
"height": 129,
|
||||
"rawWidth": 122,
|
||||
"rawHeight": 129,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color1.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "473f3859-76f5-4f75-9fa7-2c487bd05fb9",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 730,
|
||||
"trimY": 1872,
|
||||
"width": 242,
|
||||
"height": 132,
|
||||
"rawWidth": 242,
|
||||
"rawHeight": 132,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color10.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "cb933148-97e1-4b1c-95d6-1340e5a049e2",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 754,
|
||||
"width": 244,
|
||||
"height": 371,
|
||||
"rawWidth": 244,
|
||||
"rawHeight": 371,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color11.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "66facf05-8ddb-4be7-9b6f-e9c558b8f39a",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 861,
|
||||
"trimY": 2,
|
||||
"width": 366,
|
||||
"height": 254,
|
||||
"rawWidth": 366,
|
||||
"rawHeight": 254,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color12.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "5abe9928-b92e-46db-b949-4e5d2cc9bab3",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 490,
|
||||
"trimY": 1500,
|
||||
"width": 246,
|
||||
"height": 370,
|
||||
"rawWidth": 246,
|
||||
"rawHeight": 370,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color13.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "c68eac4b-8a69-4193-a24f-90a8d251452b",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1363,
|
||||
"trimY": 368,
|
||||
"width": 363,
|
||||
"height": 249,
|
||||
"rawWidth": 363,
|
||||
"rawHeight": 249,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color14.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "cb83c1dc-be75-42d9-9113-85c8890d045e",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 993,
|
||||
"trimY": 1107,
|
||||
"width": 364,
|
||||
"height": 251,
|
||||
"rawWidth": 364,
|
||||
"rawHeight": 251,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color15.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "7c87c922-c402-4f0e-bc65-eda5b6586a9c",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 987,
|
||||
"trimY": 741,
|
||||
"width": 364,
|
||||
"height": 252,
|
||||
"rawWidth": 364,
|
||||
"rawHeight": 252,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color16.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "a1537e37-16ac-4a5d-a149-04666606e62c",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 612,
|
||||
"trimY": 374,
|
||||
"width": 243,
|
||||
"height": 368,
|
||||
"rawWidth": 243,
|
||||
"rawHeight": 368,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color17.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "f58f3c47-fdb4-49ee-95f4-ddf5b213ae58",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 368,
|
||||
"trimY": 374,
|
||||
"width": 242,
|
||||
"height": 369,
|
||||
"rawWidth": 242,
|
||||
"rawHeight": 369,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color18.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "9c9297c8-ece4-499d-ae4a-41c67bea419f",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 2,
|
||||
"width": 364,
|
||||
"height": 374,
|
||||
"rawWidth": 364,
|
||||
"rawHeight": 374,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color19.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "858c9275-59ad-4d4c-9fdf-a87c47aca89b",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1495,
|
||||
"trimY": 987,
|
||||
"width": 246,
|
||||
"height": 248,
|
||||
"rawWidth": 246,
|
||||
"rawHeight": 248,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color2.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "24a91b17-d09f-43f9-8f93-4b02ef04feaf",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1743,
|
||||
"trimY": 2,
|
||||
"width": 126,
|
||||
"height": 252,
|
||||
"rawWidth": 126,
|
||||
"rawHeight": 252,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color20.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "5884ad03-ca7b-4d83-87c8-4a32612d92a5",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1743,
|
||||
"trimY": 622,
|
||||
"width": 244,
|
||||
"height": 249,
|
||||
"rawWidth": 244,
|
||||
"rawHeight": 249,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color21.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "6e64b30f-1c0d-4be0-8323-e503e5f481ee",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1246,
|
||||
"trimY": 1102,
|
||||
"width": 247,
|
||||
"height": 252,
|
||||
"rawWidth": 247,
|
||||
"rawHeight": 252,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color22.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "5b144bb2-0033-40c9-80ad-b5926e317859",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1743,
|
||||
"trimY": 130,
|
||||
"width": 244,
|
||||
"height": 251,
|
||||
"rawWidth": 244,
|
||||
"rawHeight": 251,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color3.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "0c82a24f-8b39-43e3-804d-4cf31dfed407",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1873,
|
||||
"width": 362,
|
||||
"height": 132,
|
||||
"rawWidth": 362,
|
||||
"rawHeight": 132,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color4.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "9eab0257-bda8-4e39-909b-cff33fb449a4",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 491,
|
||||
"trimY": 1116,
|
||||
"width": 122,
|
||||
"height": 368,
|
||||
"rawWidth": 122,
|
||||
"rawHeight": 368,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color5.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "d987f54e-6c9e-421e-ac4f-0d07154e300c",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1123,
|
||||
"trimY": 1473,
|
||||
"width": 242,
|
||||
"height": 253,
|
||||
"rawWidth": 242,
|
||||
"rawHeight": 253,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color6.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "845d56f0-8190-441c-ae6d-086fcbbee4c4",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 248,
|
||||
"trimY": 754,
|
||||
"width": 241,
|
||||
"height": 371,
|
||||
"rawWidth": 241,
|
||||
"rawHeight": 371,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color7.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "fe1b4743-fef7-4594-82d2-92f6d8100e6d",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 739,
|
||||
"trimY": 1113,
|
||||
"width": 364,
|
||||
"height": 252,
|
||||
"rawWidth": 364,
|
||||
"rawHeight": 252,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color8.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "a7356055-def0-420f-9aba-862d2c7e888f",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1500,
|
||||
"width": 242,
|
||||
"height": 371,
|
||||
"rawWidth": 242,
|
||||
"rawHeight": 371,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"10color9.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "55992ea1-c4c6-42e9-b236-6e9feb5c6d7b",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 735,
|
||||
"trimY": 744,
|
||||
"width": 367,
|
||||
"height": 250,
|
||||
"rawWidth": 367,
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 449 KiB |
|
|
@ -8,8 +8,8 @@
|
|||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 1857,
|
||||
"height": 994,
|
||||
"width": 2048,
|
||||
"height": 2048,
|
||||
"platformSettings": {},
|
||||
"subMetas": {}
|
||||
}
|
||||
|
|
@ -8,8 +8,8 @@
|
|||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 668,
|
||||
"height": 160,
|
||||
"width": 403,
|
||||
"height": 94,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"pass_rate_label": {
|
||||
|
|
|
|||
359
assets/custom/Json/level711.json
Normal file
359
assets/custom/Json/level711.json
Normal file
|
|
@ -0,0 +1,359 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "711",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 2,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 712,
|
||||
"num": 0,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 713,
|
||||
"num": 1,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 714,
|
||||
"num": 26,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 715,
|
||||
"num": 27,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 716,
|
||||
"num": 12,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 717,
|
||||
"num": 14,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 718,
|
||||
"num": 16,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 719,
|
||||
"num": 3,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 720,
|
||||
"num": 29,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 721,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 31,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 15,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 31,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 17,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 31,
|
||||
"order": false
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level711.json.meta
Normal file
6
assets/custom/Json/level711.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "c589b5a1-7f61-45a0-b345-7086f93e3a7e",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
455
assets/custom/Json/level712.json
Normal file
455
assets/custom/Json/level712.json
Normal file
|
|
@ -0,0 +1,455 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "712",
|
||||
"map": [
|
||||
9,
|
||||
10
|
||||
],
|
||||
"time": 160,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 10,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 12,
|
||||
"id": 490
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 713,
|
||||
"num": 2,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 714,
|
||||
"num": 3,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 715,
|
||||
"num": 4,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 716,
|
||||
"num": 5,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 717,
|
||||
"num": 9,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 718,
|
||||
"num": 13,
|
||||
"color": 1,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 719,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 720,
|
||||
"num": 21,
|
||||
"color": 4,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 721,
|
||||
"num": 26,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 27,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 23,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 24,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 25,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 16,
|
||||
"color": 4,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 18,
|
||||
"color": 4,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 8,
|
||||
"color": 1,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level712.json.meta
Normal file
6
assets/custom/Json/level712.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "5b4ff637-f260-4a62-af72-6a2c67bff658",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
416
assets/custom/Json/level713.json
Normal file
416
assets/custom/Json/level713.json
Normal file
|
|
@ -0,0 +1,416 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "713",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 3,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 714,
|
||||
"num": 1,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 715,
|
||||
"num": 2,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 716,
|
||||
"num": 13,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 717,
|
||||
"num": 15,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 718,
|
||||
"num": 23,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 719,
|
||||
"num": 24,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 720,
|
||||
"num": 4,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 721,
|
||||
"num": 5,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 26,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 27,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 19,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 12,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 14,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 6,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level713.json.meta
Normal file
6
assets/custom/Json/level713.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "73634cb6-905e-4d43-b277-009c6c561f59",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
416
assets/custom/Json/level714.json
Normal file
416
assets/custom/Json/level714.json
Normal file
|
|
@ -0,0 +1,416 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "714",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 125,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 10,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 410
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 715,
|
||||
"num": 0,
|
||||
"color": 1,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 716,
|
||||
"num": 1,
|
||||
"color": 1,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 717,
|
||||
"num": 8,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 718,
|
||||
"num": 10,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 719,
|
||||
"num": 12,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 720,
|
||||
"num": 16,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 721,
|
||||
"num": 18,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 23,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 24,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 25,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 14,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 26,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 4,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 5,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level714.json.meta
Normal file
6
assets/custom/Json/level714.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "ba5335b0-09b1-4168-8d40-7f52b12f58eb",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
367
assets/custom/Json/level715.json
Normal file
367
assets/custom/Json/level715.json
Normal file
|
|
@ -0,0 +1,367 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "715",
|
||||
"map": [
|
||||
10,
|
||||
8
|
||||
],
|
||||
"time": 140,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 12,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 6,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 10,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 3,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 716,
|
||||
"num": 1,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 717,
|
||||
"num": 2,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 718,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 719,
|
||||
"num": 11,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 720,
|
||||
"num": 13,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 721,
|
||||
"num": 15,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 17,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 25,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 26,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 27,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 22,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 12,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "630300"
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 14,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "630300"
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 4,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level715.json.meta
Normal file
6
assets/custom/Json/level715.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "d3889722-01f2-4499-86f6-ef9ad5bec9a5",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
381
assets/custom/Json/level716.json
Normal file
381
assets/custom/Json/level716.json
Normal file
|
|
@ -0,0 +1,381 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "716",
|
||||
"map": [
|
||||
7,
|
||||
11
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 6,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 6,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 7,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 717,
|
||||
"num": 2,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 718,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 719,
|
||||
"num": 4,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 720,
|
||||
"num": 5,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 721,
|
||||
"num": 6,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 18,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 20,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 24,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 25,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 22,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 8,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "611"
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 9,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "92828"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level716.json.meta
Normal file
6
assets/custom/Json/level716.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "35c9a7b6-1611-4c2b-bfbc-0363a9591f2a",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
279
assets/custom/Json/level717.json
Normal file
279
assets/custom/Json/level717.json
Normal file
|
|
@ -0,0 +1,279 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "717",
|
||||
"map": [
|
||||
7,
|
||||
9
|
||||
],
|
||||
"time": 165,
|
||||
"gap": [
|
||||
{
|
||||
"x": 5,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 2,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 2,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 2,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 360
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 718,
|
||||
"num": 4,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 719,
|
||||
"num": 5,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 720,
|
||||
"num": 9,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 721,
|
||||
"num": 11,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 13,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 22,
|
||||
"color": 2,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 23,
|
||||
"color": 2,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 12,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "23802808"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level717.json.meta
Normal file
6
assets/custom/Json/level717.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "4f507603-8c4c-4000-9655-b3dc00c908a7",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
376
assets/custom/Json/level718.json
Normal file
376
assets/custom/Json/level718.json
Normal file
|
|
@ -0,0 +1,376 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "718",
|
||||
"map": [
|
||||
8,
|
||||
9
|
||||
],
|
||||
"time": 130,
|
||||
"gap": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 4,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 6,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 11,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 3,
|
||||
"id": 380
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 719,
|
||||
"num": 0,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "",
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 720,
|
||||
"num": 1,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "",
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 721,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 14,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 16,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 22,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 23,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 24,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 17,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 730,
|
||||
"num": 5,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 8,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 10,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level718.json.meta
Normal file
6
assets/custom/Json/level718.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "95985f27-ef45-41ad-8fd0-2d700f4b8d3c",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
413
assets/custom/Json/level719.json
Normal file
413
assets/custom/Json/level719.json
Normal file
|
|
@ -0,0 +1,413 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "719",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 130,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 4,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 4,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 10,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 720,
|
||||
"num": 13,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 721,
|
||||
"num": 15,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 17,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 19,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 14,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 16,
|
||||
"color": 4,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 28,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 29,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 730,
|
||||
"num": 18,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 20,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 2,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 12,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level719.json.meta
Normal file
6
assets/custom/Json/level719.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "f9bb0720-f03f-4599-b387-19100ed8c3bc",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
336
assets/custom/Json/level720.json
Normal file
336
assets/custom/Json/level720.json
Normal file
|
|
@ -0,0 +1,336 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"color": "1"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 4,
|
||||
"color": "1"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 4,
|
||||
"color": "1"
|
||||
}
|
||||
],
|
||||
"id": "720",
|
||||
"map": [
|
||||
9,
|
||||
7
|
||||
],
|
||||
"time": 90,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 9,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 721,
|
||||
"num": 0,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 722,
|
||||
"num": 1,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 20,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 12,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 14,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 9,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 11,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 730,
|
||||
"num": 13,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 5,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "86"
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 7,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "86"
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 15,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "15"
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 17,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "15"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level720.json.meta
Normal file
6
assets/custom/Json/level720.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "fde8d625-f98f-4eef-a605-5df278e2bb29",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
390
assets/custom/Json/level721.json
Normal file
390
assets/custom/Json/level721.json
Normal file
|
|
@ -0,0 +1,390 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "721",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 120,
|
||||
"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": -300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 7,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 11,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 10,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 4,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 3,
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 430
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 722,
|
||||
"num": 2,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 723,
|
||||
"num": 4,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 6,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 9,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 11,
|
||||
"color": 3,
|
||||
"special": 6,
|
||||
"length": 3,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 13,
|
||||
"color": 3,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 15,
|
||||
"color": 3,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 18,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 730,
|
||||
"num": 20,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 25,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 23,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 12,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level721.json.meta
Normal file
6
assets/custom/Json/level721.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "98e7222e-8446-41c4-8cae-b1f28ea3366a",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
420
assets/custom/Json/level722.json
Normal file
420
assets/custom/Json/level722.json
Normal file
|
|
@ -0,0 +1,420 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "722",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 723,
|
||||
"num": 0,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 724,
|
||||
"num": 1,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 4,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 27,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 28,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 29,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 730,
|
||||
"num": 24,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 25,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 17,
|
||||
"color": 1,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 21,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 18,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 20,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 6,
|
||||
"color": 9,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 12,
|
||||
"color": 9,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level722.json.meta
Normal file
6
assets/custom/Json/level722.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "ad602302-b707-428f-9164-1979ba92430a",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
501
assets/custom/Json/level723.json
Normal file
501
assets/custom/Json/level723.json
Normal file
|
|
@ -0,0 +1,501 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "723",
|
||||
"map": [
|
||||
10,
|
||||
11
|
||||
],
|
||||
"time": 140,
|
||||
"gap": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 4,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 10,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 10,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 724,
|
||||
"num": 7,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 725,
|
||||
"num": 8,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 12,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 14,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 16,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 18,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 730,
|
||||
"num": 31,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 32,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 21,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 28,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 15,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 17,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 1,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "85855"
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 2,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "85855"
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 3,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "85855"
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 24,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "27"
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 25,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "27"
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 26,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "27"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level723.json.meta
Normal file
6
assets/custom/Json/level723.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "a21996f8-a425-450f-92ab-7eb1a517cbfd",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
475
assets/custom/Json/level724.json
Normal file
475
assets/custom/Json/level724.json
Normal file
|
|
@ -0,0 +1,475 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "724",
|
||||
"map": [
|
||||
11,
|
||||
10
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 4,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 10,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 10,
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 450
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 725,
|
||||
"num": 11,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 726,
|
||||
"num": 13,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 727,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 728,
|
||||
"num": 25,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 27,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 730,
|
||||
"num": 35,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 37,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 38,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 24,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 26,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 16,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 19,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 21,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 12,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 14,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level724.json.meta
Normal file
6
assets/custom/Json/level724.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "226f81b1-d664-48ef-a9bd-1d4ad45c11c4",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
366
assets/custom/Json/level725.json
Normal file
366
assets/custom/Json/level725.json
Normal file
|
|
@ -0,0 +1,366 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "425",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 120,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 3,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 14,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 426,
|
||||
"num": 0,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 427,
|
||||
"num": 1,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 428,
|
||||
"num": 2,
|
||||
"color": 5,
|
||||
"special": 5,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 429,
|
||||
"num": 4,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 430,
|
||||
"num": 5,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 431,
|
||||
"num": 13,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 432,
|
||||
"num": 15,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 433,
|
||||
"num": 26,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 434,
|
||||
"num": 27,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 435,
|
||||
"num": 22,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 436,
|
||||
"num": 23,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 437,
|
||||
"num": 12,
|
||||
"color": 2,
|
||||
"special": 5,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 438,
|
||||
"num": 14,
|
||||
"color": 2,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level725.json.meta
Normal file
6
assets/custom/Json/level725.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "8776bbef-e721-4dac-a6c3-5d4d13d9db57",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
521
assets/custom/Json/level726.json
Normal file
521
assets/custom/Json/level726.json
Normal file
|
|
@ -0,0 +1,521 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "726",
|
||||
"map": [
|
||||
11,
|
||||
13
|
||||
],
|
||||
"time": 120,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 5,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 10,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 490
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 500
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 510
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 520
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 490
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 500
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 510
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 520
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 427,
|
||||
"num": 0,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 428,
|
||||
"num": 1,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 429,
|
||||
"num": 8,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 430,
|
||||
"num": 9,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 431,
|
||||
"num": 10,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 432,
|
||||
"num": 12,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 433,
|
||||
"num": 14,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 434,
|
||||
"num": 26,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 435,
|
||||
"num": 28,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 436,
|
||||
"num": 29,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 437,
|
||||
"num": 30,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 438,
|
||||
"num": 25,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 439,
|
||||
"num": 27,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 440,
|
||||
"num": 17,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 441,
|
||||
"num": 19,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 442,
|
||||
"num": 21,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 443,
|
||||
"num": 11,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 444,
|
||||
"num": 13,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 445,
|
||||
"num": 37,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 446,
|
||||
"num": 38,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 447,
|
||||
"num": 39,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level726.json.meta
Normal file
6
assets/custom/Json/level726.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "d7ac082a-13be-417a-8c74-f664f6cf8698",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
442
assets/custom/Json/level727.json
Normal file
442
assets/custom/Json/level727.json
Normal file
|
|
@ -0,0 +1,442 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "727",
|
||||
"map": [
|
||||
11,
|
||||
11
|
||||
],
|
||||
"time": 60,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 18,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 18,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 16,
|
||||
"color": 3,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 15,
|
||||
"color": 1,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 480
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 728,
|
||||
"num": 4,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 729,
|
||||
"num": 5,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 730,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 12,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 16,
|
||||
"color": 3,
|
||||
"special": 1,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 18,
|
||||
"color": 3,
|
||||
"special": 1,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 20,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 24,
|
||||
"color": 3,
|
||||
"special": 1,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 26,
|
||||
"color": 3,
|
||||
"special": 1,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 30,
|
||||
"color": 1,
|
||||
"special": 1,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 31,
|
||||
"color": 1,
|
||||
"special": 1,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 19,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 13,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 15,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 17,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level727.json.meta
Normal file
6
assets/custom/Json/level727.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "fccb2eeb-2d43-4857-bb1a-2b2f778fde89",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
439
assets/custom/Json/level728.json
Normal file
439
assets/custom/Json/level728.json
Normal file
|
|
@ -0,0 +1,439 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "728",
|
||||
"map": [
|
||||
10,
|
||||
11
|
||||
],
|
||||
"time": 90,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 6,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 10,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 16,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 8,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 17,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 12,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 729,
|
||||
"num": 0,
|
||||
"color": 1,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 730,
|
||||
"num": 2,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 14,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 16,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 18,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 20,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 22,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 24,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 35,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 33,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 21,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 23,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 17,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 19,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 13,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 15,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level728.json.meta
Normal file
6
assets/custom/Json/level728.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "cbc19950-0a57-4f14-a6e2-59ab740d2e10",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
622
assets/custom/Json/level729.json
Normal file
622
assets/custom/Json/level729.json
Normal file
|
|
@ -0,0 +1,622 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "729",
|
||||
"map": [
|
||||
10,
|
||||
14
|
||||
],
|
||||
"time": 90,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 8,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -720,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -720,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -720,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 490
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 500
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 510
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 520
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 530
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 540
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 550
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -720,
|
||||
"z": 0
|
||||
},
|
||||
"id": 560
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 570
|
||||
},
|
||||
{
|
||||
"block": 13,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 600
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 590
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 600
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 610
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 730,
|
||||
"num": 0,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 731,
|
||||
"num": 1,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 2,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 5,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 6,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 9,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 10,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 11,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 13,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 15,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 25,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 27,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 37,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 38,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 39,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 33,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 34,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 24,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 26,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 12,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 14,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level729.json.meta
Normal file
6
assets/custom/Json/level729.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "64e4a8d0-ed73-4926-bcd2-b8f9b9bc5df1",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
515
assets/custom/Json/level730.json
Normal file
515
assets/custom/Json/level730.json
Normal file
|
|
@ -0,0 +1,515 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "730",
|
||||
"map": [
|
||||
10,
|
||||
10
|
||||
],
|
||||
"time": 80,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 3,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 490
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 4,
|
||||
"id": 500
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 6,
|
||||
"id": 510
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"id": 520
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 3,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 10,
|
||||
"id": 530
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 731,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 1,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 732,
|
||||
"num": 3,
|
||||
"color": 2,
|
||||
"special": 1,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 4,
|
||||
"color": 1,
|
||||
"special": 1,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 5,
|
||||
"color": 1,
|
||||
"special": 1,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 9,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 17,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 23,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 28,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 29,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 26,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 27,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 20,
|
||||
"color": 3,
|
||||
"special": 1,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 22,
|
||||
"color": 3,
|
||||
"special": 1,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 14,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 16,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 8,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 10,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level730.json.meta
Normal file
6
assets/custom/Json/level730.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "10c3de00-8055-4bd9-a5dc-930f24015bc7",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
435
assets/prefab/prop/question.prefab
Normal file
435
assets/prefab/prop/question.prefab
Normal 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": "question",
|
||||
"_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": true,
|
||||
"_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__": "94636Y0VUZBXLBN9qy5HiQH",
|
||||
"_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
|
||||
}
|
||||
]
|
||||
9
assets/prefab/prop/question.prefab.meta
Normal file
9
assets/prefab/prop/question.prefab.meta
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "01e8fce2-ba92-44a4-93c2-3e439b88a979",
|
||||
"importer": "prefab",
|
||||
"optimizationPolicy": "AUTO",
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false,
|
||||
"subMetas": {}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user