更新修复粘合块BUG 增加新的关卡,631为实验关
This commit is contained in:
parent
c1f8554c71
commit
6cf179abaa
File diff suppressed because it is too large
Load Diff
|
|
@ -625,7 +625,7 @@ export default class Block extends cc.Component {
|
|||
else if (this.type == BlockType.粘合块) {
|
||||
this.removeAllAdhesive(true);
|
||||
this.block_Info.node = null;
|
||||
this.restoreNomal(this.posX, this.posY, false);
|
||||
// this.restoreNomal(this.posX, this.posY, false);
|
||||
}
|
||||
else if (this.type == BlockType.星星块) {
|
||||
cc.fx.AudioManager._instance.playEffect("starBlock", null);
|
||||
|
|
@ -1487,8 +1487,10 @@ export default class Block extends cc.Component {
|
|||
let x = this.posX + pos.x;
|
||||
let y = this.posY + pos.y;
|
||||
if (MapConroler._instance.mapBlocksWall[x][y]) {
|
||||
if (MapConroler._instance.mapBlocksWall[x][y].getComponent("MapBlock"))
|
||||
if (MapConroler._instance.mapBlocksWall[x][y].getComponent("MapBlock")) {
|
||||
MapConroler._instance.mapBlocksWall[x][y].getComponent("MapBlock").block_Id = "";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
64
assets/Script/Career.ts
Normal file
64
assets/Script/Career.ts
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
import CollisionDetection from "./CollisionDetection";
|
||||
import MapConroler from "./Map";
|
||||
import Utils from "./module/Pay/Utils";
|
||||
|
||||
const { ccclass, property } = cc._decorator;
|
||||
|
||||
@ccclass
|
||||
export default class Career extends cc.Component {
|
||||
// 游戏当日闯关排行信息
|
||||
private careerInfo: any = {};
|
||||
// LIFE-CYCLE CALLBACKS:
|
||||
// @property(cc.SpriteAtlas)
|
||||
// UI: cc.SpriteAtlas = null;
|
||||
private initialTouchOffset: cc.Vec2 = null;
|
||||
private offsetTolerance = 100; // 偏移容忍度;
|
||||
|
||||
|
||||
|
||||
onLoad() {
|
||||
|
||||
}
|
||||
|
||||
start() {
|
||||
console.log("根据服务器信息去拿当日前6,以及省市第一信息");
|
||||
let careerInfo = Utils.getDailyQuestInfo(() => {
|
||||
debugger;
|
||||
this.careerInfo = careerInfo;
|
||||
this.init();
|
||||
});
|
||||
}
|
||||
|
||||
init() {
|
||||
console.log("根据服务器信息去拿当日前6,以及省市第一信息", this.careerInfo);
|
||||
var dailyQuestInfo = this.careerInfo.dailyQuestInfo;
|
||||
if (dailyQuestInfo) {
|
||||
let dailyQuestInfoList = dailyQuestInfo.dailyQuestInfoList;
|
||||
if (dailyQuestInfoList) {
|
||||
dailyQuestInfoList.forEach((item) => {
|
||||
if (item.questId == 1) {
|
||||
// 当日前6
|
||||
console.log("当日前6", item);
|
||||
let info = {
|
||||
rank: item.rank,
|
||||
score: item.score,
|
||||
time: item.time,
|
||||
}
|
||||
cc.fx.StorageMessage.setStorage("dailyQuestInfoList", info);
|
||||
// 省市第一
|
||||
console.log("省市第一", item);
|
||||
let rankOne = {
|
||||
rank: item.rank,
|
||||
score: item.score,
|
||||
time: item.time,
|
||||
}
|
||||
cc.fx.StorageMessage.setStorage("provinceQuestInfoList", info);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -554,6 +554,7 @@ export default class GameManager extends cc.Component {
|
|||
cc.fx.GameConfig.GM_INFO.userPowerTime = 0;
|
||||
cc.fx.StorageMessage.setStorage("userPowerTime", 0);
|
||||
}
|
||||
|
||||
}
|
||||
//本地有缓存
|
||||
else {
|
||||
|
|
|
|||
|
|
@ -1433,6 +1433,9 @@ export default class MapConroler extends cc.Component {
|
|||
// console.log("得到左边墙壁数组",date6);
|
||||
if (leftWalls.length != 0) {
|
||||
let result = this.detectingBlock("left", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks);
|
||||
if (result == false) {
|
||||
// console.log("碰到左边缘,检测到有块");
|
||||
}
|
||||
if (result == true) result = this.passWall(result, leftWalls, node);
|
||||
// console.log("碰到左边缘结果:",jg);
|
||||
if (result) {
|
||||
|
|
@ -1463,7 +1466,9 @@ export default class MapConroler extends cc.Component {
|
|||
|
||||
if (rightWalls.length != 0) {
|
||||
let result = this.detectingBlock("right", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks);
|
||||
|
||||
if (result == false) {
|
||||
// console.log("碰到右边缘,检测到有块");
|
||||
}
|
||||
if (result == true) result = this.passWall(result, rightWalls, node);
|
||||
// console.log("碰到右边缘结果:",jg);
|
||||
if (result) {
|
||||
|
|
@ -1497,6 +1502,9 @@ export default class MapConroler extends cc.Component {
|
|||
|
||||
if (downWalls.length != 0) {
|
||||
let result = this.detectingBlock("down", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks);
|
||||
if (result == false) {
|
||||
// console.log("碰到下边缘,检测到有块");
|
||||
}
|
||||
if (result == true) result = this.passWall(result, downWalls, node);
|
||||
// console.log("碰到下边缘结果:",jg);
|
||||
if (result) {
|
||||
|
|
@ -1529,7 +1537,9 @@ export default class MapConroler extends cc.Component {
|
|||
|
||||
if (upWalls.length != 0) {
|
||||
let result = this.detectingBlock("up", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks);
|
||||
|
||||
if (result == false) {
|
||||
// console.log("碰到上边缘,检测到有块");
|
||||
}
|
||||
if (result == true) result = this.passWall(result, upWalls, node);
|
||||
// console.log("碰到上边缘结果:", result);
|
||||
if (result) {
|
||||
|
|
@ -1551,12 +1561,14 @@ export default class MapConroler extends cc.Component {
|
|||
|
||||
changeState(type) {
|
||||
if (type) {
|
||||
//开关门的门统一处理
|
||||
if (this.openWall.length != 0) {
|
||||
cc.fx.AudioManager._instance.playEffect("lockDoor", null);
|
||||
for (let i = 0; i < this.openWall.length; i++) {
|
||||
this.openWall[i].getChildByName("wall").getComponent("Wall").changeLock();
|
||||
}
|
||||
}
|
||||
//长短门状态变化
|
||||
if (this.longAndShortWall.length != 0) {
|
||||
// cc.fx.AudioManager._instance.playEffect("lockDoor", null);
|
||||
for (let i = 0; i < this.longAndShortWall.length; i++) {
|
||||
|
|
@ -1564,6 +1576,7 @@ export default class MapConroler extends cc.Component {
|
|||
this.longAndShortWall[i].getChildByName("wall").getComponent("Wall").changeLongAndShort();
|
||||
}
|
||||
}
|
||||
//粘合块解锁状态变化
|
||||
if (this.adhesiveBlock.length != 0) {
|
||||
for (let i = 0; i < this.adhesiveBlock.length; i++) {
|
||||
if (this.adhesiveBlock[i])
|
||||
|
|
@ -1607,35 +1620,42 @@ export default class MapConroler extends cc.Component {
|
|||
colorArray.push(wallArray[i].getComponent("Wall"));
|
||||
}
|
||||
if (wallArray[i].parent.getChildByName("length").active) {
|
||||
// console.log("尝试通过长短门,结果失败");
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
if (wallArray[i].getComponent("Wall").special == 2) {
|
||||
console.log("尝试通过开关门:", wallArray[i].getComponent("Wall").open);
|
||||
// console.log("尝试通过开关门:", wallArray[i].getComponent("Wall").open);
|
||||
}
|
||||
if (wallArray[i].getComponent("Wall").special == 2 && wallArray[i].getComponent("Wall").open == false) {
|
||||
// console.log("尝试通过开关门,结果失败门关着");
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
if (wallArray[i].getComponent("Wall").special == 3) {
|
||||
// console.log("尝试通过冻结门,结果失败");
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
if (wallArray[i].getComponent("Wall").special == 4 || wallArray[i].getComponent("Wall").special == 5) {
|
||||
// console.log("尝试通过旋转门,结果失败");
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
if (wallArray[i].getComponent("Wall").special == 6) {
|
||||
// console.log("尝试通过上锁,结果失败");
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
|
||||
if (wallArray[i].getComponent("Wall").color != node.getComponent("Block").color) {
|
||||
// console.log("颜色不一致,结果失败");
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
if (node.getComponent("Block").type == 5) {
|
||||
if (wallArray[i].getComponent("Wall").special != 1) {
|
||||
// console.log("尝试通过星星门,结果失败");
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
|
|
@ -1649,7 +1669,7 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
}
|
||||
// const date8 = new Date().getTime();
|
||||
// console.log("检测颜色是否能够通过门",date8);
|
||||
// console.log("检测颜色是否能够通过门", jg);
|
||||
if (jg == true) {
|
||||
this.checkColor(node.getComponent("Block").color, false);
|
||||
if (wallArray[0].getComponent("Wall").colorArray.length > 0) {
|
||||
|
|
@ -1705,7 +1725,7 @@ export default class MapConroler extends cc.Component {
|
|||
id = this.mapBlocksWall[x][y].getComponent("MapBlock").block_Id;
|
||||
jg = this.checkAllDirections(id, direction, x, y);
|
||||
if (!jg) {
|
||||
// console.log("方向检测没过");
|
||||
console.log("方向检测没过,中间有夹杂块");
|
||||
i = 1000000;
|
||||
return jg;
|
||||
}
|
||||
|
|
@ -1722,7 +1742,7 @@ export default class MapConroler extends cc.Component {
|
|||
if (direction == "left") {
|
||||
if (this.mapBlocksWall[x - 1][y].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x - 1][y].getComponent("MapBlock").block_Id != "Wall"
|
||||
&& this.mapBlocksWall[x - 1][y].getComponent("MapBlock").block_Id != id) {
|
||||
// console.log("左侧有物体")
|
||||
console.log("左侧有物体")
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
|
|
@ -1733,7 +1753,7 @@ export default class MapConroler extends cc.Component {
|
|||
if ((x - 2) >= 0) {
|
||||
if (this.mapBlocksWall[x - 2][y].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x - 2][y].getComponent("MapBlock").block_Id != "Wall"
|
||||
&& this.mapBlocksWall[x - 2][y].getComponent("MapBlock").block_Id != id) {
|
||||
// console.log("左侧有物体")
|
||||
console.log("左侧有物体")
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
|
|
@ -1746,7 +1766,8 @@ export default class MapConroler extends cc.Component {
|
|||
else if (direction == "right") {
|
||||
if (this.mapBlocksWall[x + 1][y].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x + 1][y].getComponent("MapBlock").block_Id != "Wall"
|
||||
&& this.mapBlocksWall[x + 1][y].getComponent("MapBlock").block_Id != id) {
|
||||
// console.log("右侧有物体")
|
||||
console.log("右侧有物体", (x + 1), y)
|
||||
console.log(this.mapBlocksWall[x + 1][y].getComponent("MapBlock").block_Id)
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
|
|
@ -1757,7 +1778,7 @@ export default class MapConroler extends cc.Component {
|
|||
if ((x + 2) <= this.mapBlocksWall.length - 1) {
|
||||
if (this.mapBlocksWall[x + 2][y].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x + 2][y].getComponent("MapBlock").block_Id != "Wall"
|
||||
&& this.mapBlocksWall[x + 2][y].getComponent("MapBlock").block_Id != id) {
|
||||
// console.log("右侧有物体")
|
||||
console.log("右侧有物体")
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
|
|
@ -1770,7 +1791,7 @@ export default class MapConroler extends cc.Component {
|
|||
if (direction == "up") {
|
||||
if (this.mapBlocksWall[x][y + 1].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x][y + 1].getComponent("MapBlock").block_Id != "Wall"
|
||||
&& this.mapBlocksWall[x][y + 1].getComponent("MapBlock").block_Id != id) {
|
||||
// console.log("上侧有物体")
|
||||
console.log("上侧有物体")
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
|
|
@ -1781,7 +1802,7 @@ export default class MapConroler extends cc.Component {
|
|||
if ((y + 2) <= this.mapBlocksWall[x].length - 1) {
|
||||
if (this.mapBlocksWall[x][y + 2].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x][y + 2].getComponent("MapBlock").block_Id != "Wall"
|
||||
&& this.mapBlocksWall[x][y + 2].getComponent("MapBlock").block_Id != id) {
|
||||
// console.log("上侧有物体")
|
||||
console.log("上侧有物体")
|
||||
jg = false;
|
||||
return jg;
|
||||
}
|
||||
|
|
@ -4136,6 +4157,5 @@ export default class MapConroler extends cc.Component {
|
|||
if (this.hitSoundCount > 0 && this.hitSoundTime && Date.now() - this.hitSoundTime > 3000) {
|
||||
this.hitSoundCount = 0;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -531,7 +531,7 @@ export default class Wall extends cc.Component {
|
|||
|
||||
//变色门变色具体执行方法
|
||||
changeColor() {
|
||||
console.log("变色门变色数组数量", this.colorArray.length);
|
||||
// console.log("变色门变色数组数量", this.colorArray.length);
|
||||
if (this.colorArray.length > 1 && this.color == this.colorArray[0]) {
|
||||
let firstItem = this.colorArray.shift(); // 移除第一项
|
||||
this.colorArray.push(firstItem); // 将第一项添加到数组末尾
|
||||
|
|
|
|||
|
|
@ -399,8 +399,8 @@ var GameTool = {
|
|||
//关卡上限
|
||||
maxLevel() {
|
||||
let jg = false;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 609) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 610;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 629) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 630;
|
||||
jg = true;
|
||||
}
|
||||
return jg;
|
||||
|
|
@ -1223,6 +1223,7 @@ var GameTool = {
|
|||
cc.fx.GameConfig.GM_INFO.magicAmount += propData.magic_wand;
|
||||
cc.fx.GameTool.setUserProp(0, num, (data) => {
|
||||
})
|
||||
|
||||
const data1 = {
|
||||
change_reason: "shop",
|
||||
id: 2001,
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ export default class Adhesive extends cc.Component {
|
|||
this.lockTime--;
|
||||
NumberToImage.numberToImageNodes(this.lockTime, 20, 8, "time_", this.node.getChildByName("heng").getChildByName("num"), false);
|
||||
NumberToImage.numberToImageNodes(this.lockTime, 20, 8, "time_", this.node.getChildByName("shu").getChildByName("num"), false);
|
||||
if (this.lockTime <= 0) {
|
||||
if (this.lockTime == 0) {
|
||||
this.target.getComponent("Block").removeSpecailAdhesive(false);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
526
assets/career/prefab/careerCityItem.prefab
Normal file
526
assets/career/prefab/careerCityItem.prefab
Normal file
|
|
@ -0,0 +1,526 @@
|
|||
[
|
||||
{
|
||||
"__type__": "cc.Prefab",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"_native": "",
|
||||
"data": {
|
||||
"__id__": 1
|
||||
},
|
||||
"optimizationPolicy": 0,
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "careerCityItem",
|
||||
"_objFlags": 0,
|
||||
"_parent": null,
|
||||
"_children": [
|
||||
{
|
||||
"__id__": 2
|
||||
},
|
||||
{
|
||||
"__id__": 5
|
||||
},
|
||||
{
|
||||
"__id__": 8
|
||||
},
|
||||
{
|
||||
"__id__": 11
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [],
|
||||
"_prefab": {
|
||||
"__id__": 14
|
||||
},
|
||||
"_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": [
|
||||
-308.638,
|
||||
174.221,
|
||||
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": "New Sprite(Splash)",
|
||||
"_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": 200,
|
||||
"height": 200
|
||||
},
|
||||
"_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": {
|
||||
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
|
||||
},
|
||||
"_type": 0,
|
||||
"_sizeMode": 0,
|
||||
"_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": "f0xXtNtjdI9J4jmOqz3XAO",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "level",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 6
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 7
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 0,
|
||||
"g": 0,
|
||||
"b": 0,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 22.25,
|
||||
"height": 50.4
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-1.083,
|
||||
-76.891,
|
||||
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.Label",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 5
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_string": "1",
|
||||
"_N$string": "1",
|
||||
"_fontSize": 40,
|
||||
"_lineHeight": 40,
|
||||
"_enableWrapText": true,
|
||||
"_N$file": null,
|
||||
"_isSystemFontUsed": true,
|
||||
"_spacingX": 0,
|
||||
"_batchAsBitmap": false,
|
||||
"_styleFlags": 0,
|
||||
"_underlineHeight": 0,
|
||||
"_N$horizontalAlign": 1,
|
||||
"_N$verticalAlign": 1,
|
||||
"_N$fontFamily": "Arial",
|
||||
"_N$overflow": 0,
|
||||
"_N$cacheMode": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "c3gvb6kbZHc5f5r4PZ6uqE",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "name",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 9
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 10
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 0,
|
||||
"g": 0,
|
||||
"b": 0,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 160,
|
||||
"height": 50.4
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
2.166,
|
||||
-35.77,
|
||||
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.Label",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 8
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_string": "玩家名字",
|
||||
"_N$string": "玩家名字",
|
||||
"_fontSize": 40,
|
||||
"_lineHeight": 40,
|
||||
"_enableWrapText": true,
|
||||
"_N$file": null,
|
||||
"_isSystemFontUsed": true,
|
||||
"_spacingX": 0,
|
||||
"_batchAsBitmap": false,
|
||||
"_styleFlags": 0,
|
||||
"_underlineHeight": 0,
|
||||
"_N$horizontalAlign": 1,
|
||||
"_N$verticalAlign": 1,
|
||||
"_N$fontFamily": "Arial",
|
||||
"_N$overflow": 0,
|
||||
"_N$cacheMode": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "9efxRc89hKiLjCfKdeRqUb",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "icon",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 12
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 13
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 8,
|
||||
"b": 8,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 100,
|
||||
"height": 100
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
42.24,
|
||||
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__": 11
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
|
||||
},
|
||||
"_type": 0,
|
||||
"_sizeMode": 0,
|
||||
"_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": "6c9kbYYzROW581yj6a4ppI",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "",
|
||||
"sync": false
|
||||
}
|
||||
]
|
||||
933
assets/career/prefab/careerRankCity.prefab
Normal file
933
assets/career/prefab/careerRankCity.prefab
Normal file
|
|
@ -0,0 +1,933 @@
|
|||
[
|
||||
{
|
||||
"__type__": "cc.Prefab",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"_native": "",
|
||||
"data": {
|
||||
"__id__": 1
|
||||
},
|
||||
"optimizationPolicy": 0,
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "careerRankCity",
|
||||
"_objFlags": 0,
|
||||
"_parent": null,
|
||||
"_children": [
|
||||
{
|
||||
"__id__": 2
|
||||
},
|
||||
{
|
||||
"__id__": 5
|
||||
},
|
||||
{
|
||||
"__id__": 8
|
||||
},
|
||||
{
|
||||
"__id__": 11
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [],
|
||||
"_prefab": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_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,
|
||||
-197.819,
|
||||
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": "New Sprite(Splash)",
|
||||
"_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": 650,
|
||||
"height": 400
|
||||
},
|
||||
"_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": {
|
||||
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
|
||||
},
|
||||
"_type": 0,
|
||||
"_sizeMode": 0,
|
||||
"_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": "86M32ooG1B36Cs0SLR/bSg",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "New Label",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 6
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 7
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 0,
|
||||
"g": 0,
|
||||
"b": 0,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 211.11,
|
||||
"height": 50.4
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-210.516,
|
||||
156.995,
|
||||
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.Label",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 5
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_string": " 广东分公司",
|
||||
"_N$string": " 广东分公司",
|
||||
"_fontSize": 40,
|
||||
"_lineHeight": 40,
|
||||
"_enableWrapText": true,
|
||||
"_N$file": null,
|
||||
"_isSystemFontUsed": true,
|
||||
"_spacingX": 0,
|
||||
"_batchAsBitmap": false,
|
||||
"_styleFlags": 0,
|
||||
"_underlineHeight": 0,
|
||||
"_N$horizontalAlign": 1,
|
||||
"_N$verticalAlign": 1,
|
||||
"_N$fontFamily": "Arial",
|
||||
"_N$overflow": 0,
|
||||
"_N$cacheMode": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "d8n0LZVd1NZpMiWF35Qq2S",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "New Label",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 9
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 10
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 0,
|
||||
"g": 0,
|
||||
"b": 0,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 106.74,
|
||||
"height": 50.4
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
256.901,
|
||||
156.995,
|
||||
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.Label",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 8
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_string": "999人",
|
||||
"_N$string": "999人",
|
||||
"_fontSize": 40,
|
||||
"_lineHeight": 40,
|
||||
"_enableWrapText": true,
|
||||
"_N$file": null,
|
||||
"_isSystemFontUsed": true,
|
||||
"_spacingX": 0,
|
||||
"_batchAsBitmap": false,
|
||||
"_styleFlags": 0,
|
||||
"_underlineHeight": 0,
|
||||
"_N$horizontalAlign": 1,
|
||||
"_N$verticalAlign": 1,
|
||||
"_N$fontFamily": "Arial",
|
||||
"_N$overflow": 0,
|
||||
"_N$cacheMode": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "aaq+3Og81H+5AI0j+Ru298",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "careerCityItem",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [
|
||||
{
|
||||
"__id__": 12
|
||||
},
|
||||
{
|
||||
"__id__": 15
|
||||
},
|
||||
{
|
||||
"__id__": 18
|
||||
},
|
||||
{
|
||||
"__id__": 21
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [],
|
||||
"_prefab": {
|
||||
"__id__": 24
|
||||
},
|
||||
"_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": [
|
||||
-197.638,
|
||||
11.221,
|
||||
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": "New Sprite(Splash)",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 11
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 13
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 14
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 0,
|
||||
"g": 255,
|
||||
"b": 158,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 200,
|
||||
"height": 200
|
||||
},
|
||||
"_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__": 12
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
|
||||
},
|
||||
"_type": 0,
|
||||
"_sizeMode": 0,
|
||||
"_fillType": 0,
|
||||
"_fillCenter": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"_fillStart": 0,
|
||||
"_fillRange": 0,
|
||||
"_isTrimmedMode": true,
|
||||
"_atlas": null,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 11
|
||||
},
|
||||
"asset": {
|
||||
"__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242"
|
||||
},
|
||||
"fileId": "f0xXtNtjdI9J4jmOqz3XAO",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "level",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 11
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 16
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 17
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 0,
|
||||
"g": 0,
|
||||
"b": 0,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 22.25,
|
||||
"height": 50.4
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-1.083,
|
||||
-76.891,
|
||||
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.Label",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 15
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_string": "1",
|
||||
"_N$string": "1",
|
||||
"_fontSize": 40,
|
||||
"_lineHeight": 40,
|
||||
"_enableWrapText": true,
|
||||
"_N$file": null,
|
||||
"_isSystemFontUsed": true,
|
||||
"_spacingX": 0,
|
||||
"_batchAsBitmap": false,
|
||||
"_styleFlags": 0,
|
||||
"_underlineHeight": 0,
|
||||
"_N$horizontalAlign": 1,
|
||||
"_N$verticalAlign": 1,
|
||||
"_N$fontFamily": "Arial",
|
||||
"_N$overflow": 0,
|
||||
"_N$cacheMode": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 11
|
||||
},
|
||||
"asset": {
|
||||
"__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242"
|
||||
},
|
||||
"fileId": "c3gvb6kbZHc5f5r4PZ6uqE",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "name",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 11
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 19
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 20
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 0,
|
||||
"g": 0,
|
||||
"b": 0,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 160,
|
||||
"height": 50.4
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
2.166,
|
||||
-35.77,
|
||||
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.Label",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 18
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_string": "玩家名字",
|
||||
"_N$string": "玩家名字",
|
||||
"_fontSize": 40,
|
||||
"_lineHeight": 40,
|
||||
"_enableWrapText": true,
|
||||
"_N$file": null,
|
||||
"_isSystemFontUsed": true,
|
||||
"_spacingX": 0,
|
||||
"_batchAsBitmap": false,
|
||||
"_styleFlags": 0,
|
||||
"_underlineHeight": 0,
|
||||
"_N$horizontalAlign": 1,
|
||||
"_N$verticalAlign": 1,
|
||||
"_N$fontFamily": "Arial",
|
||||
"_N$overflow": 0,
|
||||
"_N$cacheMode": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 11
|
||||
},
|
||||
"asset": {
|
||||
"__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242"
|
||||
},
|
||||
"fileId": "9efxRc89hKiLjCfKdeRqUb",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "icon",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 11
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 22
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 23
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 8,
|
||||
"b": 8,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 100,
|
||||
"height": 100
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
42.24,
|
||||
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__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
|
||||
},
|
||||
"_type": 0,
|
||||
"_sizeMode": 0,
|
||||
"_fillType": 0,
|
||||
"_fillCenter": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"_fillStart": 0,
|
||||
"_fillRange": 0,
|
||||
"_isTrimmedMode": true,
|
||||
"_atlas": null,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 11
|
||||
},
|
||||
"asset": {
|
||||
"__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242"
|
||||
},
|
||||
"fileId": "6c9kbYYzROW581yj6a4ppI",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 11
|
||||
},
|
||||
"asset": {
|
||||
"__uuid__": "cf9a58fa-4925-484b-9738-11cf5e82a242"
|
||||
},
|
||||
"fileId": "1cSX2dRV1BrL1A/ZwpfMsX",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "",
|
||||
"sync": false
|
||||
}
|
||||
]
|
||||
526
assets/career/prefab/careerRankItem.prefab
Normal file
526
assets/career/prefab/careerRankItem.prefab
Normal file
|
|
@ -0,0 +1,526 @@
|
|||
[
|
||||
{
|
||||
"__type__": "cc.Prefab",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"_native": "",
|
||||
"data": {
|
||||
"__id__": 1
|
||||
},
|
||||
"optimizationPolicy": 0,
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "careerRankItem",
|
||||
"_objFlags": 0,
|
||||
"_parent": null,
|
||||
"_children": [
|
||||
{
|
||||
"__id__": 2
|
||||
},
|
||||
{
|
||||
"__id__": 5
|
||||
},
|
||||
{
|
||||
"__id__": 8
|
||||
},
|
||||
{
|
||||
"__id__": 11
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [],
|
||||
"_prefab": {
|
||||
"__id__": 14
|
||||
},
|
||||
"_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,
|
||||
299.103,
|
||||
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": "New Sprite(Splash)",
|
||||
"_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": 200,
|
||||
"height": 300
|
||||
},
|
||||
"_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": {
|
||||
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
|
||||
},
|
||||
"_type": 0,
|
||||
"_sizeMode": 0,
|
||||
"_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": "f0xXtNtjdI9J4jmOqz3XAO",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "rank",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 6
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 7
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 0,
|
||||
"g": 0,
|
||||
"b": 0,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 120,
|
||||
"height": 50.4
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
124.562,
|
||||
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.Label",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 5
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_string": "董事长",
|
||||
"_N$string": "董事长",
|
||||
"_fontSize": 40,
|
||||
"_lineHeight": 40,
|
||||
"_enableWrapText": true,
|
||||
"_N$file": null,
|
||||
"_isSystemFontUsed": true,
|
||||
"_spacingX": 0,
|
||||
"_batchAsBitmap": false,
|
||||
"_styleFlags": 0,
|
||||
"_underlineHeight": 0,
|
||||
"_N$horizontalAlign": 1,
|
||||
"_N$verticalAlign": 1,
|
||||
"_N$fontFamily": "Arial",
|
||||
"_N$overflow": 0,
|
||||
"_N$cacheMode": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "c3gvb6kbZHc5f5r4PZ6uqE",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "name",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 9
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 10
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 0,
|
||||
"g": 0,
|
||||
"b": 0,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 160,
|
||||
"height": 50.4
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
0,
|
||||
-107.254,
|
||||
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.Label",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 8
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_string": "玩家名字",
|
||||
"_N$string": "玩家名字",
|
||||
"_fontSize": 40,
|
||||
"_lineHeight": 40,
|
||||
"_enableWrapText": true,
|
||||
"_N$file": null,
|
||||
"_isSystemFontUsed": true,
|
||||
"_spacingX": 0,
|
||||
"_batchAsBitmap": false,
|
||||
"_styleFlags": 0,
|
||||
"_underlineHeight": 0,
|
||||
"_N$horizontalAlign": 1,
|
||||
"_N$verticalAlign": 1,
|
||||
"_N$fontFamily": "Arial",
|
||||
"_N$overflow": 0,
|
||||
"_N$cacheMode": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "9efxRc89hKiLjCfKdeRqUb",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "icon",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 12
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 13
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 8,
|
||||
"b": 8,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 100,
|
||||
"height": 100
|
||||
},
|
||||
"_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__": 11
|
||||
},
|
||||
"_enabled": true,
|
||||
"_materials": [
|
||||
{
|
||||
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
|
||||
}
|
||||
],
|
||||
"_srcBlendFactor": 770,
|
||||
"_dstBlendFactor": 771,
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
|
||||
},
|
||||
"_type": 0,
|
||||
"_sizeMode": 0,
|
||||
"_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": "6c9kbYYzROW581yj6a4ppI",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "",
|
||||
"sync": false
|
||||
}
|
||||
]
|
||||
335
assets/custom/Json/level611.json
Normal file
335
assets/custom/Json/level611.json
Normal file
|
|
@ -0,0 +1,335 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "611",
|
||||
"map": [
|
||||
8,
|
||||
9
|
||||
],
|
||||
"time": 165,
|
||||
"gap": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 6,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 10,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 612,
|
||||
"num": 2,
|
||||
"color": 1,
|
||||
"special": 6,
|
||||
"length": 1,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 613,
|
||||
"num": 5,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 614,
|
||||
"num": 6,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 615,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 616,
|
||||
"num": 16,
|
||||
"color": 7,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": false
|
||||
},
|
||||
{
|
||||
"id": 617,
|
||||
"num": 26,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 618,
|
||||
"num": 27,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 619,
|
||||
"num": 23,
|
||||
"color": 3,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": false
|
||||
},
|
||||
{
|
||||
"id": 620,
|
||||
"num": 17,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 621,
|
||||
"num": 19,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 622,
|
||||
"num": 7,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 9,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
405
assets/custom/Json/level612.json
Normal file
405
assets/custom/Json/level612.json
Normal file
|
|
@ -0,0 +1,405 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "612",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 110,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 9,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 613,
|
||||
"num": 0,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 614,
|
||||
"num": 1,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 615,
|
||||
"num": 2,
|
||||
"color": 7,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 616,
|
||||
"num": 3,
|
||||
"color": 7,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 617,
|
||||
"num": 9,
|
||||
"color": 5,
|
||||
"special": 4,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 618,
|
||||
"num": 19,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 619,
|
||||
"num": 24,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 620,
|
||||
"num": 25,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 621,
|
||||
"num": 20,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 622,
|
||||
"num": 21,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 12,
|
||||
"color": 4,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 14,
|
||||
"color": 4,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
328
assets/custom/Json/level613.json
Normal file
328
assets/custom/Json/level613.json
Normal file
|
|
@ -0,0 +1,328 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "613",
|
||||
"map": [
|
||||
7,
|
||||
10
|
||||
],
|
||||
"time": 120,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 614,
|
||||
"num": 10,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 3,
|
||||
"freeze": 13
|
||||
},
|
||||
{
|
||||
"id": 615,
|
||||
"num": 12,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 13
|
||||
},
|
||||
{
|
||||
"id": 616,
|
||||
"num": 14,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 13
|
||||
},
|
||||
{
|
||||
"id": 617,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "14"
|
||||
},
|
||||
{
|
||||
"id": 618,
|
||||
"num": 5,
|
||||
"color": 7,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 619,
|
||||
"num": 6,
|
||||
"color": 7,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 620,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 621,
|
||||
"num": 13,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 622,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 23,
|
||||
"color": 8,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 24,
|
||||
"color": 8,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 20,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "89"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
308
assets/custom/Json/level614.json
Normal file
308
assets/custom/Json/level614.json
Normal file
|
|
@ -0,0 +1,308 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "614",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 100,
|
||||
"gap": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 615,
|
||||
"num": 0,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "34344"
|
||||
},
|
||||
{
|
||||
"id": 616,
|
||||
"num": 1,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "34344"
|
||||
},
|
||||
{
|
||||
"id": 617,
|
||||
"num": 7,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 618,
|
||||
"num": 15,
|
||||
"color": 6,
|
||||
"special": 6,
|
||||
"length": 1,
|
||||
"lockTime": 5
|
||||
},
|
||||
{
|
||||
"id": 619,
|
||||
"num": 23,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 620,
|
||||
"num": 24,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "878788"
|
||||
},
|
||||
{
|
||||
"id": 621,
|
||||
"num": 25,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "878788"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
395
assets/custom/Json/level615.json
Normal file
395
assets/custom/Json/level615.json
Normal file
|
|
@ -0,0 +1,395 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "615",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 80,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 7,
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 7,
|
||||
"id": 440
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 616,
|
||||
"num": 0,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 617,
|
||||
"num": 1,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 618,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 619,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 620,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 621,
|
||||
"num": 15,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 622,
|
||||
"num": 24,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 25,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 21,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 22,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 14,
|
||||
"color": 10,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 12,
|
||||
"color": 4,
|
||||
"special": 2,
|
||||
"length": 1,
|
||||
"lock": false
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
399
assets/custom/Json/level616.json
Normal file
399
assets/custom/Json/level616.json
Normal file
|
|
@ -0,0 +1,399 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "616",
|
||||
"map": [
|
||||
10,
|
||||
9
|
||||
],
|
||||
"time": 160,
|
||||
"gap": [
|
||||
{
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 6,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 5,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 617,
|
||||
"num": 2,
|
||||
"color": 7,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 3
|
||||
},
|
||||
{
|
||||
"id": 618,
|
||||
"num": 3,
|
||||
"color": 7,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 3
|
||||
},
|
||||
{
|
||||
"id": 619,
|
||||
"num": 10,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 620,
|
||||
"num": 12,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 621,
|
||||
"num": 20,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 622,
|
||||
"num": 22,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 27,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 28,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 19,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 21,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 9,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 11,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
389
assets/custom/Json/level617.json
Normal file
389
assets/custom/Json/level617.json
Normal file
|
|
@ -0,0 +1,389 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "617",
|
||||
"map": [
|
||||
9,
|
||||
10
|
||||
],
|
||||
"time": 120,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 10,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 5,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 618,
|
||||
"num": 2,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 619,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 620,
|
||||
"num": 7,
|
||||
"color": 3,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 621,
|
||||
"num": 8,
|
||||
"color": 3,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 622,
|
||||
"num": 11,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 13,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 18,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 28,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 22,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 12,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 14,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
425
assets/custom/Json/level618.json
Normal file
425
assets/custom/Json/level618.json
Normal file
|
|
@ -0,0 +1,425 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "618",
|
||||
"map": [
|
||||
10,
|
||||
9
|
||||
],
|
||||
"time": 150,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 13,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 8,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 10,
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 619,
|
||||
"num": 2,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 620,
|
||||
"num": 3,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 621,
|
||||
"num": 13,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 622,
|
||||
"num": 20,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 24,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 26,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 28,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 37,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 34,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 35,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 25,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 27,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 14,
|
||||
"color": 2,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 6
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 21,
|
||||
"color": 2,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 6
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
422
assets/custom/Json/level619.json
Normal file
422
assets/custom/Json/level619.json
Normal file
|
|
@ -0,0 +1,422 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "619",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 80,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 360,
|
||||
"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": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 6,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 490
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 620,
|
||||
"num": 0,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "90"
|
||||
},
|
||||
{
|
||||
"id": 621,
|
||||
"num": 4,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 622,
|
||||
"num": 5,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 15,
|
||||
"color": 5,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 24,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 25,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 20,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1,
|
||||
"colorArray": "37"
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 14,
|
||||
"color": 9,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 12,
|
||||
"color": 3,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
287
assets/custom/Json/level620.json
Normal file
287
assets/custom/Json/level620.json
Normal file
|
|
@ -0,0 +1,287 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "620",
|
||||
"map": [
|
||||
7,
|
||||
9
|
||||
],
|
||||
"time": 105,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 8,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 350
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 621,
|
||||
"num": 0,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 622,
|
||||
"num": 2,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 4,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 12,
|
||||
"color": 3,
|
||||
"special": 6,
|
||||
"length": 1,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 17,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 18,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 13,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 15,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 7,
|
||||
"color": 5,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 8
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 9,
|
||||
"color": 5,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 8
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
415
assets/custom/Json/level621.json
Normal file
415
assets/custom/Json/level621.json
Normal file
|
|
@ -0,0 +1,415 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "621",
|
||||
"map": [
|
||||
10,
|
||||
8
|
||||
],
|
||||
"time": 100,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 7,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 6,
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 622,
|
||||
"num": 2,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 623,
|
||||
"num": 5,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 11,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 13,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 15,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 15
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 17,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 15
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 27,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 24,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 18,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 20,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 12,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 14,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 6,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 635,
|
||||
"num": 8,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
403
assets/custom/Json/level622.json
Normal file
403
assets/custom/Json/level622.json
Normal file
|
|
@ -0,0 +1,403 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "622",
|
||||
"map": [
|
||||
9,
|
||||
10
|
||||
],
|
||||
"time": 120,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 15,
|
||||
"color": 7,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 12,
|
||||
"id": 440
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 623,
|
||||
"num": 1,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 624,
|
||||
"num": 2,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 9,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 13,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 15,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 17,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 23,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 25,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 6
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 26,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 6
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 16,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 18,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 10,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 635,
|
||||
"num": 12,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
377
assets/custom/Json/level623.json
Normal file
377
assets/custom/Json/level623.json
Normal file
|
|
@ -0,0 +1,377 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "623",
|
||||
"map": [
|
||||
8,
|
||||
11
|
||||
],
|
||||
"time": 130,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 10,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 37,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 30,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 624,
|
||||
"num": 2,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 625,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 4,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 5,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 18,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "07"
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 20,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "07"
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 17,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "21"
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 19,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "21"
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 32,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 33,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 34,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 635,
|
||||
"num": 35,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
292
assets/custom/Json/level624.json
Normal file
292
assets/custom/Json/level624.json
Normal file
|
|
@ -0,0 +1,292 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "624",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 120,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 4,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 4,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 625,
|
||||
"num": 0,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 626,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 11,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 13,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 21,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 22,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 18,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 12,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 10,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
351
assets/custom/Json/level625.json
Normal file
351
assets/custom/Json/level625.json
Normal file
|
|
@ -0,0 +1,351 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "625",
|
||||
"map": [
|
||||
8,
|
||||
9
|
||||
],
|
||||
"time": 135,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 626,
|
||||
"num": 0,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 627,
|
||||
"num": 3,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 4,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 6,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 12,
|
||||
"color": 9,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 14,
|
||||
"color": 9,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 23,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 20,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 21,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 635,
|
||||
"num": 13,
|
||||
"color": 7,
|
||||
"special": 4,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 636,
|
||||
"num": 15,
|
||||
"color": 7,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 637,
|
||||
"num": 17,
|
||||
"color": 7,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
389
assets/custom/Json/level626.json
Normal file
389
assets/custom/Json/level626.json
Normal file
|
|
@ -0,0 +1,389 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "626",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 90,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 5,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 4,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 4,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 4,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 8,
|
||||
"id": 430
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 627,
|
||||
"num": 2,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 628,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 4,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 17,
|
||||
"color": 1,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 29,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 30,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 28,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 635,
|
||||
"num": 20,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 636,
|
||||
"num": 14,
|
||||
"color": 10,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 637,
|
||||
"num": 16,
|
||||
"color": 10,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 638,
|
||||
"num": 6,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
357
assets/custom/Json/level627.json
Normal file
357
assets/custom/Json/level627.json
Normal file
|
|
@ -0,0 +1,357 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "627",
|
||||
"map": [
|
||||
7,
|
||||
9
|
||||
],
|
||||
"time": 100,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 5,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 13,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 628,
|
||||
"num": 4,
|
||||
"color": 5,
|
||||
"special": 3,
|
||||
"length": 3,
|
||||
"freeze": 15
|
||||
},
|
||||
{
|
||||
"id": 629,
|
||||
"num": 5,
|
||||
"color": 5,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 15
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 6,
|
||||
"color": 5,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 15
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 12,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 14,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 21,
|
||||
"color": 3,
|
||||
"special": 3,
|
||||
"length": 3,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 635,
|
||||
"num": 22,
|
||||
"color": 3,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 636,
|
||||
"num": 23,
|
||||
"color": 3,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 637,
|
||||
"num": 13,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 638,
|
||||
"num": 15,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 639,
|
||||
"num": 7,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 640,
|
||||
"num": 9,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
298
assets/custom/Json/level628.json
Normal file
298
assets/custom/Json/level628.json
Normal file
|
|
@ -0,0 +1,298 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "628",
|
||||
"map": [
|
||||
6,
|
||||
10
|
||||
],
|
||||
"time": 150,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 5,
|
||||
"id": 370
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 629,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 630,
|
||||
"num": 3,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 7,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 11,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "428"
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "428"
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 23,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 635,
|
||||
"num": 18,
|
||||
"color": 1,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 636,
|
||||
"num": 19,
|
||||
"color": 1,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 637,
|
||||
"num": 10,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "5733"
|
||||
},
|
||||
{
|
||||
"id": 638,
|
||||
"num": 12,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "5733"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
350
assets/custom/Json/level629.json
Normal file
350
assets/custom/Json/level629.json
Normal file
|
|
@ -0,0 +1,350 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "629",
|
||||
"map": [
|
||||
7,
|
||||
9
|
||||
],
|
||||
"time": 160,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 6,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 2,
|
||||
"floorTime": 10,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 2,
|
||||
"floorTime": 10,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 10,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"floor": 3,
|
||||
"floorTime": 15,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"floor": 3,
|
||||
"floorTime": 15,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 630,
|
||||
"num": 1,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 631,
|
||||
"num": 3,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 4,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 8,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 10,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 635,
|
||||
"num": 12,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 636,
|
||||
"num": 14,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 637,
|
||||
"num": 16,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 638,
|
||||
"num": 20,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 639,
|
||||
"num": 21,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 640,
|
||||
"num": 18,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 641,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
415
assets/custom/Json/level630.json
Normal file
415
assets/custom/Json/level630.json
Normal file
|
|
@ -0,0 +1,415 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "630",
|
||||
"map": [
|
||||
9,
|
||||
10
|
||||
],
|
||||
"time": 145,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"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": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 10,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 4,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 631,
|
||||
"num": 1,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 632,
|
||||
"num": 2,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 633,
|
||||
"num": 6,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 634,
|
||||
"num": 13,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 635,
|
||||
"num": 15,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 636,
|
||||
"num": 17,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 637,
|
||||
"num": 19,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 638,
|
||||
"num": 26,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 639,
|
||||
"num": 27,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 640,
|
||||
"num": 28,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 641,
|
||||
"num": 16,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 642,
|
||||
"num": 12,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 643,
|
||||
"num": 14,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 644,
|
||||
"num": 10,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
106
assets/custom/Json/level631.json
Normal file
106
assets/custom/Json/level631.json
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "5",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 200,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 12,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"lockTime": 3,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"lockTime": 3,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 6,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"num": 13,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -598,7 +598,6 @@ export default class NewClass extends cc.Component {
|
|||
// }
|
||||
// cc.fx.GameTool.shushu_Track("payment", dataSuccess);
|
||||
let name = "购买金币道具:" + productId;
|
||||
|
||||
MiniGameSdk.API.yinli_Pay(price, Utils.outTradeNo, name);
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user