更改 较多关卡配置文件

This commit is contained in:
YZ\249929363 2025-07-21 16:01:57 +08:00
parent 4f020d19d0
commit becd89158f
262 changed files with 2021 additions and 969 deletions

View File

@ -18,6 +18,9 @@
}, },
{ {
"__id__": 4 "__id__": 4
},
{
"__id__": 330
} }
], ],
"_active": false, "_active": false,
@ -15141,5 +15144,130 @@
"__id__": 87 "__id__": 87
}, },
"_id": "0dna+7W/NMp6RyIrSQLx5u" "_id": "0dna+7W/NMp6RyIrSQLx5u"
},
{
"__type__": "cc.Node",
"_name": "New Label",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 331
},
{
"__id__": 332
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 66.74,
"height": 23.94
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
41.784,
1898.03,
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": "21Nnf4GPVCHqI0NNdx6GDw"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 330
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "749531",
"_N$string": "749531",
"_fontSize": 20,
"_lineHeight": 19.96,
"_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": "d4fwmbx0ZMzqfBeHQk0zBv"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 330
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_left": 8.414000000000001,
"_right": 0,
"_top": 10,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "ce7XDOgWxAkqd9NR85oHSL"
} }
] ]

View File

@ -195,7 +195,7 @@ export default class JiaZai extends cc.Component {
let switchButtons = health.getComponent("heathnum").switchButtons; let switchButtons = health.getComponent("heathnum").switchButtons;
let coin = health.getComponent("heathnum").coin; let coin = health.getComponent("heathnum").coin;
// 启动弹窗自己的倒计时 // 启动弹窗自己的倒计时
if (cc.fx.GameConfig.GM_INFO.hp < 5) { if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_max) {
this.startHeathTimeCutDown(timeNode); this.startHeathTimeCutDown(timeNode);
} }
if (cc.fx.GameConfig.GM_INFO.hp == 0) { if (cc.fx.GameConfig.GM_INFO.hp == 0) {
@ -209,11 +209,11 @@ export default class JiaZai extends cc.Component {
if (switchButtons[1]) { switchButtons[1].active = false; swichs[1].active = true; } if (switchButtons[1]) { switchButtons[1].active = false; swichs[1].active = true; }
} }
} else if (cc.fx.GameConfig.GM_INFO.hp < 5 && cc.fx.GameConfig.GM_INFO.hp > 0) { } else if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_max && cc.fx.GameConfig.GM_INFO.hp > 0) {
// 体力小于5但大于0显示spriteFrames[1],只显示第一个按钮 // 体力小于5但大于0显示spriteFrames[1],只显示第一个按钮
if (switchButtons[0]) { switchButtons[0].active = true; swichs[0].active = false; } if (switchButtons[0]) { switchButtons[0].active = true; swichs[0].active = false; }
if (switchButtons[1]) { switchButtons[1].active = false; swichs[1].active = true; } if (switchButtons[1]) { switchButtons[1].active = false; swichs[1].active = true; }
} else if (cc.fx.GameConfig.GM_INFO.hp >= 5) { } else if (cc.fx.GameConfig.GM_INFO.hp >= cc.fx.GameConfig.GM_INFO.hp_max) {
// 体力为5显示spriteFrames[0],只显示第一个按钮 // 体力为5显示spriteFrames[0],只显示第一个按钮
if (switchButtons[0]) { switchButtons[0].active = true; swichs[0].active = true; } if (switchButtons[0]) { switchButtons[0].active = true; swichs[0].active = true; }
@ -268,7 +268,7 @@ export default class JiaZai extends cc.Component {
if (this.Stamina && this.Stamina.getChildByName("time")) { if (this.Stamina && this.Stamina.getChildByName("time")) {
this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp; this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
} }
if (cc.fx.GameConfig.GM_INFO.hp < 5) { if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_max) {
MiniGameSdk.API.showToast("恢复一点体力"); MiniGameSdk.API.showToast("恢复一点体力");
cc.fx.GameTool.setUserHealth(1, (data) => { cc.fx.GameTool.setUserHealth(1, (data) => {
cc.fx.GameTool.getHealth(null); cc.fx.GameTool.getHealth(null);
@ -366,6 +366,7 @@ export default class JiaZai extends cc.Component {
if (cc.fx.GameConfig.GM_INFO.min_Time != 0) { if (cc.fx.GameConfig.GM_INFO.min_Time != 0) {
let time = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); let time = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time);
this.Stamina.getChildByName("time").getComponent(cc.Label).string = time; this.Stamina.getChildByName("time").getComponent(cc.Label).string = time;
console.log("______________________启动计时器");
this.startTimeCutDown(); this.startTimeCutDown();
} }
} }
@ -458,7 +459,7 @@ export default class JiaZai extends cc.Component {
this.RewardNode = null; this.RewardNode = null;
this.RewardNode = cc.instantiate(JiaZai.cachedRewardPrefab); this.RewardNode = cc.instantiate(JiaZai.cachedRewardPrefab);
this.node.addChild(this.RewardNode); this.node.addChild(this.RewardNode);
this.RewardNode.getComponent("RewardWindow").init(data); this.RewardNode.getComponent("Reward").init(data);
} }
this.updatePower(); this.updatePower();
} }
@ -570,6 +571,8 @@ export default class JiaZai extends cc.Component {
console.log("需要补发数据", order); console.log("需要补发数据", order);
if (order.itemid == "gold_1" || order.itemid == "gold_2" || order.itemid == "gold_3" if (order.itemid == "gold_1" || order.itemid == "gold_2" || order.itemid == "gold_3"
|| order.itemid == "gold_4" || order.itemid == "gold_5" || order.itemid == "gold_6" || order.itemid == "gold_4" || order.itemid == "gold_5" || order.itemid == "gold_6"
|| order.itemid == "unlimited_health_bundle_1" || order.itemid == "unlimited_health_bundle_2"
|| order.itemid == "unlimited_health_bundle_3"
) { ) {
this.openLoad(); this.openLoad();
console.log("补发名称:", order.itemid); console.log("补发名称:", order.itemid);

View File

@ -296,12 +296,12 @@ export default class MapConroler extends cc.Component {
this.magicNode.children[1].active = false; this.magicNode.children[1].active = false;
this.magicNode.children[2].active = false; this.magicNode.children[2].active = false;
} }
if (cc.fx.GameConfig.GM_INFO.hammerFirst== true) { if (cc.fx.GameConfig.GM_INFO.hammerFirst == true) {
this.hammerNode.children[0].active = true; this.hammerNode.children[0].active = true;
this.hammerNode.children[1].active = false; this.hammerNode.children[1].active = false;
this.hammerNode.children[2].active = false; this.hammerNode.children[2].active = false;
} }
if (cc.fx.GameConfig.GM_INFO.freezeFirst == true ) { if (cc.fx.GameConfig.GM_INFO.freezeFirst == true) {
this.iceNode.children[0].active = true; this.iceNode.children[0].active = true;
this.iceNode.children[1].active = false; this.iceNode.children[1].active = false;
this.iceNode.children[2].active = false; this.iceNode.children[2].active = false;
@ -389,11 +389,15 @@ export default class MapConroler extends cc.Component {
// block.getChildByName("num").getComponent(cc.Label).string = i + ":" + j; // block.getChildByName("num").getComponent(cc.Label).string = i + ":" + j;
block.setPosition(cc.v2(startX + i * 120, startY + j * 120)) block.setPosition(cc.v2(startX + i * 120, startY + j * 120))
if (risefall != null) { if (risefall != null) {
if (risefall.length > 0) {
if (this.mapRiseFall(cc.v2(i, j), risefall, block)) { if (this.mapRiseFall(cc.v2(i, j), risefall, block)) {
this.riseFallBlcok.push(block); this.riseFallBlcok.push(block);
} }
} }
}
if (gap != null) { if (gap != null) {
if (gap.length > 0) {
if (!this.mapGap(cc.v2(i, j), gap) || i == 0 || i == this.mapWidth - 1 if (!this.mapGap(cc.v2(i, j), gap) || i == 0 || i == this.mapWidth - 1
|| j == 0 || j == this.mapHeight - 1) { || j == 0 || j == this.mapHeight - 1) {
block.opacity = 254; block.opacity = 254;
@ -403,6 +407,7 @@ export default class MapConroler extends cc.Component {
} }
else this.mapInfo.push(block); else this.mapInfo.push(block);
} }
}
else { else {
if (i == 0 || i == this.mapWidth - 1 if (i == 0 || i == this.mapWidth - 1
|| j == 0 || j == this.mapHeight - 1) { || j == 0 || j == this.mapHeight - 1) {
@ -427,15 +432,15 @@ export default class MapConroler extends cc.Component {
this.guideNode.getComponent(Animation).play(); this.guideNode.getComponent(Animation).play();
} }
if (cc.fx.GameConfig.GM_INFO.hammerFirst== true ) { if (cc.fx.GameConfig.GM_INFO.hammerFirst == true) {
this.guideItem.active = true; this.guideItem.active = true;
this.setPropNum(); this.setPropNum();
} }
if ( cc.fx.GameConfig.GM_INFO.freezeFirst == true ) { if (cc.fx.GameConfig.GM_INFO.freezeFirst == true) {
this.guideItem.active = true; this.guideItem.active = true;
this.setPropNum(); this.setPropNum();
} }
if ( cc.fx.GameConfig.GM_INFO.magicAFirst == true) { if (cc.fx.GameConfig.GM_INFO.magicAFirst == true) {
this.guideItem.active = true; this.guideItem.active = true;
this.setPropNum(); this.setPropNum();
} }
@ -924,11 +929,16 @@ export default class MapConroler extends cc.Component {
//升降地块判断 //升降地块判断
mapRiseFall(point, risefall, block) { mapRiseFall(point, risefall, block) {
for (let i = 0; i < risefall.length; i++) { for (let i = 0; i < risefall.length; i++) {
if (point.x == risefall[i].pos.x && point.y == risefall[i].pos.y) { if (point.x == risefall[i].x && point.y == risefall[i].y) {
block.getChildByName("risefall").active = true; block.getChildByName("riseup").active = true;
let spriteName = "riseup" + risefall[i].color;
let spriteName2 = "risefall" + risefall[i].color;
let icon = block.getComponent("MapBlock").riseFall.getSpriteFrame(spriteName);
let icon2 = block.getComponent("MapBlock").riseFall.getSpriteFrame(spriteName2);
block.getChildByName("risefall").getComponent(cc.Sprite).spriteFrame = icon2;
block.getChildByName("riseup").getComponent(cc.Sprite).spriteFrame = icon;
block.getChildByName("risefall").active = false;
block.getChildByName('risefall').getChildByName("color").getComponent(cc.Label).string = risefall[i].color + ""; block.getChildByName('risefall').getChildByName("color").getComponent(cc.Label).string = risefall[i].color + "";
block.getChildByName('risefall').addComponent(cc.BoxCollider);
block.getChildByName('risefall').getComponent(cc.BoxCollider).size = cc.size(110, 110);
return true; return true;
} }
} }
@ -940,13 +950,12 @@ export default class MapConroler extends cc.Component {
for (let i = 0; i < this.riseFallBlcok.length; i++) { for (let i = 0; i < this.riseFallBlcok.length; i++) {
if (color == this.riseFallBlcok[i].getChildByName("risefall").getChildByName("color").getComponent(cc.Label).string) { if (color == this.riseFallBlcok[i].getChildByName("risefall").getChildByName("color").getComponent(cc.Label).string) {
if (down) { if (down) {
this.riseFallBlcok[i].getChildByName("risefall").active = false; this.riseFallBlcok[i].getChildByName("risefall").active = true;
this.riseFallBlcok[i].getChildByName('risefall').removeComponent(cc.BoxCollider); this.riseFallBlcok[i].getChildByName("riseup").active = false;
} }
else { else {
this.riseFallBlcok[i].getChildByName("risefall").active = true; this.riseFallBlcok[i].getChildByName("risefall").active = false;
this.riseFallBlcok[i].getChildByName('risefall').addComponent(cc.BoxCollider); this.riseFallBlcok[i].getChildByName("riseup").active = true;
this.riseFallBlcok[i].getChildByName('risefall').getComponent(cc.BoxCollider).size = cc.size(110, 110);
} }
} }
@ -1470,7 +1479,7 @@ export default class MapConroler extends cc.Component {
// alert("游戏成功"); // alert("游戏成功");
MiniGameSdk.API.showToast(cc.fx.GameConfig.GM_INFO.level); MiniGameSdk.API.showToast(cc.fx.GameConfig.GM_INFO.level);
this.gameWin = true; this.gameWin = true;
if (cc.fx.GameConfig.GM_INFO.hp < 5) { if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_max) {
console.log("恢复一点体力", cc.fx.GameConfig.GM_INFO.level); console.log("恢复一点体力", cc.fx.GameConfig.GM_INFO.level);
if (!this.powerState) { if (!this.powerState) {
cc.fx.GameTool.setUserHealth(1, (data) => { cc.fx.GameTool.setUserHealth(1, (data) => {
@ -1562,10 +1571,10 @@ export default class MapConroler extends cc.Component {
console.log("新手引导开启"); console.log("新手引导开启");
cc.fx.GameConfig.GM_INFO.hammerFirst = true; cc.fx.GameConfig.GM_INFO.hammerFirst = true;
} }
if (cc.fx.GameConfig.GM_INFO.level +1== 11) { if (cc.fx.GameConfig.GM_INFO.level + 1 == 11) {
cc.fx.GameConfig.GM_INFO.freezeFirst = true; cc.fx.GameConfig.GM_INFO.freezeFirst = true;
} }
if (cc.fx.GameConfig.GM_INFO.level+1 == 16) { if (cc.fx.GameConfig.GM_INFO.level + 1 == 16) {
cc.fx.GameConfig.GM_INFO.magicAFirst = true; cc.fx.GameConfig.GM_INFO.magicAFirst = true;
} }
@ -1735,13 +1744,13 @@ export default class MapConroler extends cc.Component {
return; return;
} }
if (this.new_item == 3) { if (this.new_item == 3) {
if (cc.fx.GameConfig.GM_INFO.level+1 == 8) { if (cc.fx.GameConfig.GM_INFO.level + 1 == 8) {
cc.fx.GameConfig.GM_INFO.hammerFirst = true; cc.fx.GameConfig.GM_INFO.hammerFirst = true;
} }
if (cc.fx.GameConfig.GM_INFO.level+1 == 11) { if (cc.fx.GameConfig.GM_INFO.level + 1 == 11) {
cc.fx.GameConfig.GM_INFO.freezeFirst = true; cc.fx.GameConfig.GM_INFO.freezeFirst = true;
} }
if (cc.fx.GameConfig.GM_INFO.level+1 == 16) { if (cc.fx.GameConfig.GM_INFO.level + 1 == 16) {
cc.fx.GameConfig.GM_INFO.magicAFirst = true; cc.fx.GameConfig.GM_INFO.magicAFirst = true;
} }

View File

@ -5,7 +5,7 @@
// Learn life-cycle callbacks: // Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html // - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
const {ccclass, property} = cc._decorator; const { ccclass, property } = cc._decorator;
@ccclass @ccclass
export default class NewClass extends cc.Component { export default class NewClass extends cc.Component {
@ -16,6 +16,9 @@ export default class NewClass extends cc.Component {
@property @property
block_Id: string = ''; block_Id: string = '';
@property(cc.SpriteAtlas)
riseFall: cc.SpriteAtlas = null;
// LIFE-CYCLE CALLBACKS: // LIFE-CYCLE CALLBACKS:
posX: number = 0; //地图块的X坐标 posX: number = 0; //地图块的X坐标
@ -23,18 +26,19 @@ export default class NewClass extends cc.Component {
direction: string = ""; //地图块的方向 direction: string = ""; //地图块的方向
// onLoad () {} // onLoad () {}
start () { start() {
this.direction = ""; this.direction = "";
this.block_Id = ""; this.block_Id = "";
// this.node.getChildByName("num").getComponent(cc.Label).string = this.direction; // this.node.getChildByName("num").getComponent(cc.Label).string = this.direction;
} }
setDiraction(direction){ setDiraction(direction) {
this.direction = direction; this.direction = direction;
// this.node.getChildByName("num").getComponent(cc.Label).string = this.direction; // this.node.getChildByName("num").getComponent(cc.Label).string = this.direction;
} }
init(posX,posY){ init(posX, posY) {
this.posX = posX; this.posX = posX;
this.posY = posY; this.posY = posY;
} }

View File

@ -393,7 +393,7 @@ export default class SceneManager extends cc.Component {
this.RewardNode = cc.instantiate(SceneManager.cachedRewardPrefab); this.RewardNode = cc.instantiate(SceneManager.cachedRewardPrefab);
this.node.addChild(this.RewardNode); this.node.addChild(this.RewardNode);
this.RewardNode.zIndex = 99; this.RewardNode.zIndex = 99;
this.RewardNode.getComponent("RewardWindow").init(data); this.RewardNode.getComponent("Reward").init(data);
} }
} }

View File

@ -101,7 +101,11 @@ export class GameConfig {
shushu_AccountId: string; //数数账号ID shushu_AccountId: string; //数数账号ID
uid: string; //用户和后端唯一id uid: string; //用户和后端唯一id
userPowerTime: number; //用户体力恢复时间 userPowerTime: number; //用户体力恢复时间
freezeFirst: boolean; hammerFirst: boolean; magicAFirst: boolean; freezeFirst: boolean; //冻结道具第一次
hammerFirst: boolean; //锤子道具第一次
magicAFirst: boolean; //魔法棒道具第一次
hp_Max: number; //体力最大值
doubleCoin: boolean;//是否翻倍
}; };
@ -109,6 +113,7 @@ export class GameConfig {
//游戏内信息 //游戏内信息
static get Instance() { static get Instance() {
@ -246,10 +251,11 @@ export class GameConfig {
shushu_AccountId: "", //数数账号ID shushu_AccountId: "", //数数账号ID
uid: "", //用户和后端唯一id uid: "", //用户和后端唯一id
userPowerTime: 0, //用户体力恢复时间 userPowerTime: 0, //用户体力恢复时间
freezeFirst: false, freezeFirst: false, //冻结道具第一次
hammerFirst: false, //锤子道具第一次
hammerFirst: false, magicAFirst: false, //魔法棒道具第一次
magicAFirst: false, hp_Max: 5, //体力最大值
doubleCoin: false, //是否双倍
}; };
// this.setCode(this.getKey("scode")); // this.setCode(this.getKey("scode"));
// this.GM_INFO.level = 0; // this.GM_INFO.level = 0;

View File

@ -31,12 +31,20 @@ export default class Utils {
} }
/**道具直购接口*/ /**道具直购接口*/
static buyProp(id, count, price, callBack) { static buyProp(id, count, price, systemType, productId, callBack) {
console.log("请求uid:" + Utils.uid, "请求id:" + id, "请求数量:" + count, "请求价格:" + price); console.log("请求uid:" + Utils.uid, "请求id:" + id, "请求数量:" + count, "请求价格:" + price);
Utils.POST("wx/orderPaySig", { uid: Utils.uid, itemid: id, itemCount: count, itemPrice: price }, res => { Utils.POST("wx/orderPaySig", { uid: Utils.uid, itemid: id, itemCount: count, itemPrice: price }, res => {
if (res.code == 1) { if (res.code == 1) {
Utils.outTradeNo = res.data.outTradeNo; Utils.outTradeNo = res.data.outTradeNo;
const data = {
price: price,
payment_name: productId,
payment_num: 1,
type: systemType,
}
cc.fx.GameTool.shushu_Track("init_order", data);
console.log("创建的最新订单的订单号:", Utils.outTradeNo);
// let timeoutId: number; // let timeoutId: number;
// const timeoutDuration = 30000; // 30 秒超时时间 // const timeoutDuration = 30000; // 30 秒超时时间
// // 设置超时定时器 // // 设置超时定时器
@ -110,6 +118,7 @@ export default class Utils {
} }
let orderTemp = Utils.outTradeNo; let orderTemp = Utils.outTradeNo;
if (order) orderTemp = order; if (order) orderTemp = order;
console.log("告知服务器发货的订单号:", orderTemp);
Utils.POST("wx/getOrderReward", { outTradeNo: orderTemp }, res => { Utils.POST("wx/getOrderReward", { outTradeNo: orderTemp }, res => {
console.log("告知服务器发货:", res); console.log("告知服务器发货:", res);
if (res.code === 1) { if (res.code === 1) {

View File

@ -617,7 +617,7 @@ var GameTool = {
//设置用户体力值 有可能加,有可能定时器减 //设置用户体力值 有可能加,有可能定时器减
setUserHealth(health, callback) { setUserHealth(health, callback) {
if (health > 0) { if (health > 0) {
if (cc.fx.GameConfig.GM_INFO.hp < 5) { if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_max) {
cc.fx.GameConfig.GM_INFO.hp += health; cc.fx.GameConfig.GM_INFO.hp += health;
} }
} }
@ -987,7 +987,7 @@ var GameTool = {
cc.fx.GameTool.changeCoin(5000); cc.fx.GameTool.changeCoin(5000);
coin = 5000; coin = 5000;
price = 1800; price = 1800;
this.setUserPowerTime(60); this.setUserPowerTime(1800);
// MiniGameSdk.API.showToast("获得无限体力小组合包"); // MiniGameSdk.API.showToast("获得无限体力小组合包");
rewardData = [ rewardData = [
{ type: "coin", count: coin }, { type: "coin", count: coin },

View File

@ -15,7 +15,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,45}</string> <string>{122,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,565},{122,45}}</string> <string>{{628,1023},{122,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -30,9 +30,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{243,45}</string> <string>{243,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{125,565},{243,45}}</string> <string>{{205,733},{243,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>10down3.png</key> <key>10down3.png</key>
<dict> <dict>
@ -45,9 +45,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,45}</string> <string>{363,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{370,565},{363,45}}</string> <string>{{237,368},{363,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>10down4.png</key> <key>10down4.png</key>
<dict> <dict>
@ -60,7 +60,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,124}</string> <string>{45,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{735,565},{45,124}}</string> <string>{{237,1019},{45,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -75,9 +75,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,245}</string> <string>{45,245}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,612},{45,245}}</string> <string>{{331,378},{45,245}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>10down6.png</key> <key>10down6.png</key>
<dict> <dict>
@ -90,7 +90,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,365}</string> <string>{45,365}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{248,612},{45,365}}</string> <string>{{299,143},{45,365}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -105,7 +105,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,45}</string> <string>{122,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,1},{122,45}}</string> <string>{{793,949},{122,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -120,7 +120,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{243,45}</string> <string>{243,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{125,1},{243,45}}</string> <string>{{378,378},{243,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -135,7 +135,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,45}</string> <string>{363,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{370,1},{363,45}}</string> <string>{{299,190},{363,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -150,9 +150,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,124}</string> <string>{45,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{735,1},{45,124}}</string> <string>{{913,1},{45,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>1down5.png</key> <key>1down5.png</key>
<dict> <dict>
@ -165,7 +165,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,245}</string> <string>{45,245}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,48},{45,245}}</string> <string>{{666,49},{45,245}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -180,9 +180,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,365}</string> <string>{45,365}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{248,48},{45,365}}</string> <string>{{64,1},{45,365}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>2down1.png</key> <key>2down1.png</key>
<dict> <dict>
@ -195,7 +195,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,45}</string> <string>{122,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{861,1},{122,45}}</string> <string>{{793,996},{122,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -210,7 +210,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{243,45}</string> <string>{243,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{615,48},{243,45}}</string> <string>{{378,425},{243,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -225,7 +225,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,45}</string> <string>{363,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,95},{363,45}}</string> <string>{{299,237},{363,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -240,9 +240,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,124}</string> <string>{45,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{860,48},{45,124}}</string> <string>{{960,1},{45,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>2down5.png</key> <key>2down5.png</key>
<dict> <dict>
@ -251,13 +251,13 @@
<key>spriteOffset</key> <key>spriteOffset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>spriteSize</key> <key>spriteSize</key>
<string>{45,245}</string> <string>{61,266}</string>
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,245}</string> <string>{61,266}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{366,95},{45,245}}</string> <string>{{1,757},{61,266}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>2down6.png</key> <key>2down6.png</key>
<dict> <dict>
@ -266,13 +266,13 @@
<key>spriteOffset</key> <key>spriteOffset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>spriteSize</key> <key>spriteSize</key>
<string>{45,365}</string> <string>{61,386}</string>
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,365}</string> <string>{61,386}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{613,95},{45,365}}</string> <string>{{1,1},{61,386}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>3down1.png</key> <key>3down1.png</key>
<dict> <dict>
@ -285,9 +285,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,45}</string> <string>{122,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,142},{122,45}}</string> <string>{{913,127},{122,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>3down2.png</key> <key>3down2.png</key>
<dict> <dict>
@ -300,7 +300,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{243,45}</string> <string>{243,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{125,142},{243,45}}</string> <string>{{378,472},{243,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -315,7 +315,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,45}</string> <string>{363,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{370,142},{363,45}}</string> <string>{{299,284},{363,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -330,9 +330,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,124}</string> <string>{45,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{735,142},{45,124}}</string> <string>{{380,747},{45,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>3down5.png</key> <key>3down5.png</key>
<dict> <dict>
@ -345,7 +345,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,245}</string> <string>{45,245}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,189},{45,245}}</string> <string>{{666,96},{45,245}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -360,9 +360,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,365}</string> <string>{45,365}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{248,189},{45,365}}</string> <string>{{111,1},{45,365}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>4down1.png</key> <key>4down1.png</key>
<dict> <dict>
@ -375,9 +375,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,45}</string> <string>{122,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{861,142},{122,45}}</string> <string>{{960,127},{122,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>4down2.png</key> <key>4down2.png</key>
<dict> <dict>
@ -390,7 +390,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{243,45}</string> <string>{243,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{615,189},{243,45}}</string> <string>{{378,519},{243,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -405,7 +405,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,45}</string> <string>{363,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,236},{363,45}}</string> <string>{{299,331},{363,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -420,9 +420,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,124}</string> <string>{45,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{860,189},{45,124}}</string> <string>{{380,873},{45,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>4down5.png</key> <key>4down5.png</key>
<dict> <dict>
@ -435,7 +435,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,245}</string> <string>{45,245}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{366,236},{45,245}}</string> <string>{{666,143},{45,245}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -450,9 +450,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,365}</string> <string>{45,365}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{613,236},{45,365}}</string> <string>{{158,1},{45,365}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>5down1.png</key> <key>5down1.png</key>
<dict> <dict>
@ -465,9 +465,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,45}</string> <string>{122,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,283},{122,45}}</string> <string>{{911,251},{122,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>5down2.png</key> <key>5down2.png</key>
<dict> <dict>
@ -480,7 +480,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{243,45}</string> <string>{243,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{125,283},{243,45}}</string> <string>{{378,566},{243,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -495,9 +495,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,45}</string> <string>{363,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{370,283},{363,45}}</string> <string>{{49,389},{363,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>5down4.png</key> <key>5down4.png</key>
<dict> <dict>
@ -510,9 +510,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,124}</string> <string>{45,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{735,283},{45,124}}</string> <string>{{915,759},{45,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>5down5.png</key> <key>5down5.png</key>
<dict> <dict>
@ -525,7 +525,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,245}</string> <string>{45,245}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,330},{45,245}}</string> <string>{{664,190},{45,245}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -540,9 +540,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,365}</string> <string>{45,365}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{248,330},{45,365}}</string> <string>{{205,1},{45,365}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>6down1.png</key> <key>6down1.png</key>
<dict> <dict>
@ -555,9 +555,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,45}</string> <string>{122,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{861,283},{122,45}}</string> <string>{{958,251},{122,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>6down2.png</key> <key>6down2.png</key>
<dict> <dict>
@ -570,9 +570,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{243,45}</string> <string>{243,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{615,330},{243,45}}</string> <string>{{64,754},{243,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>6down3.png</key> <key>6down3.png</key>
<dict> <dict>
@ -585,9 +585,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,45}</string> <string>{363,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,377},{363,45}}</string> <string>{{96,368},{363,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>6down4.png</key> <key>6down4.png</key>
<dict> <dict>
@ -600,9 +600,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,124}</string> <string>{45,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{860,330},{45,124}}</string> <string>{{962,759},{45,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>6down5.png</key> <key>6down5.png</key>
<dict> <dict>
@ -615,7 +615,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,245}</string> <string>{45,245}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{366,377},{45,245}}</string> <string>{{664,237},{45,245}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -630,9 +630,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,365}</string> <string>{45,365}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{613,377},{45,365}}</string> <string>{{252,1},{45,365}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>7down1.png</key> <key>7down1.png</key>
<dict> <dict>
@ -645,7 +645,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,46}</string> <string>{122,46}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{861,565},{122,46}}</string> <string>{{793,901},{122,46}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -660,7 +660,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{244,46}</string> <string>{244,46}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{615,612},{244,46}}</string> <string>{{664,284},{244,46}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -675,7 +675,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{364,46}</string> <string>{364,46}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,659},{364,46}}</string> <string>{{299,1},{364,46}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -690,9 +690,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{46,124}</string> <string>{46,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{861,613},{46,124}}</string> <string>{{542,613},{46,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>7down5.png</key> <key>7down5.png</key>
<dict> <dict>
@ -705,7 +705,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{46,246}</string> <string>{46,246}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{367,659},{46,246}}</string> <string>{{665,1},{46,246}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -720,9 +720,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{46,366}</string> <string>{46,366}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{615,661},{46,366}}</string> <string>{{1,389},{46,366}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>8down1.png</key> <key>8down1.png</key>
<dict> <dict>
@ -735,7 +735,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,45}</string> <string>{122,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,424},{122,45}}</string> <string>{{380,999},{122,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -750,9 +750,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{243,45}</string> <string>{243,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{125,424},{243,45}}</string> <string>{{111,733},{243,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>8down3.png</key> <key>8down3.png</key>
<dict> <dict>
@ -765,9 +765,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,45}</string> <string>{363,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{370,424},{363,45}}</string> <string>{{143,368},{363,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>8down4.png</key> <key>8down4.png</key>
<dict> <dict>
@ -780,9 +780,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,124}</string> <string>{45,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{735,424},{45,124}}</string> <string>{{917,885},{45,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>8down5.png</key> <key>8down5.png</key>
<dict> <dict>
@ -795,7 +795,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,245}</string> <string>{45,245}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,471},{45,245}}</string> <string>{{664,332},{45,245}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -810,7 +810,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,365}</string> <string>{45,365}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{248,471},{45,365}}</string> <string>{{299,49},{45,365}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -825,7 +825,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{122,45}</string> <string>{122,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{861,424},{122,45}}</string> <string>{{504,1015},{122,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -840,9 +840,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{243,45}</string> <string>{243,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{615,471},{243,45}}</string> <string>{{158,733},{243,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>9down3.png</key> <key>9down3.png</key>
<dict> <dict>
@ -855,9 +855,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{363,45}</string> <string>{363,45}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,518},{363,45}}</string> <string>{{190,368},{363,45}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>9down4.png</key> <key>9down4.png</key>
<dict> <dict>
@ -870,7 +870,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,124}</string> <string>{45,124}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{860,471},{45,124}}</string> <string>{{111,978},{45,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -885,9 +885,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,245}</string> <string>{45,245}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{366,518},{45,245}}</string> <string>{{284,378},{45,245}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>9down6.png</key> <key>9down6.png</key>
<dict> <dict>
@ -900,7 +900,307 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{45,365}</string> <string>{45,365}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{613,518},{45,365}}</string> <string>{{299,96},{45,365}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>risefall1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{284,625},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>risefall10.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{793,779},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>risefall2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{887,515},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>risefall3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{887,637},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>risefall4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{427,741},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>risefall5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{427,863},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>risefall6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{549,771},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>risefall7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{549,893},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>risefall8.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{671,779},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>risefall9.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{120,120}</string>
<key>spriteSourceSize</key>
<string>{120,120}</string>
<key>textureRect</key>
<string>{{671,901},{120,120}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>riseup1.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{623,379},{126,134}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>riseup10.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{726,651},{126,134}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>riseup2.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{751,379},{126,134}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>riseup3.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{623,515},{126,134}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>riseup4.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{759,515},{126,134}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>riseup5.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{406,613},{126,134}}</string>
<key>textureRotated</key>
<true/>
</dict>
<key>riseup6.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{252,747},{126,134}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>riseup7.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{252,883},{126,134}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>riseup8.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{879,379},{126,134}}</string>
<key>textureRotated</key>
<false/>
</dict>
<key>riseup9.png</key>
<dict>
<key>aliases</key>
<array/>
<key>spriteOffset</key>
<string>{0,0}</string>
<key>spriteSize</key>
<string>{126,134}</string>
<key>spriteSourceSize</key>
<string>{126,134}</string>
<key>textureRect</key>
<string>{{590,643},{126,134}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -916,9 +1216,9 @@
<key>realTextureFileName</key> <key>realTextureFileName</key>
<string>down.png</string> <string>down.png</string>
<key>size</key> <key>size</key>
<string>{986,708}</string> <string>{1008,1069}</string>
<key>smartupdate</key> <key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:e71e00cbca228ccc0b15a23585e90eb3:c43c34fe0ac0b70e0467bdecae7396c0:1f82f659e2591d395bca4b2a7c74dd8a$</string> <string>$TexturePacker:SmartUpdate:bcd0c185191512da3445ee7c39e234b1:03c71043c08664016169e35c84d6ee5a:1f82f659e2591d395bca4b2a7c74dd8a$</string>
<key>textureFileName</key> <key>textureFileName</key>
<string>down.png</string> <string>down.png</string>
</dict> </dict>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 101 KiB

View File

@ -19,19 +19,22 @@
"_children": [ "_children": [
{ {
"__id__": 2 "__id__": 2
},
{
"__id__": 7
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 8 "__id__": 13
}, },
{ {
"__id__": 9 "__id__": 14
} }
], ],
"_prefab": { "_prefab": {
"__id__": 10 "__id__": 15
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -80,6 +83,184 @@
"groupIndex": 1, "groupIndex": 1,
"_id": "" "_id": ""
}, },
{
"__type__": "cc.Node",
"_name": "riseup",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 3
},
{
"__id__": 4
},
{
"__id__": 5
}
],
"_prefab": {
"__id__": 6
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 120,
"height": 120
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": ""
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__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__": "c22a3wcU/tBdJ/qjn/Q6uuA",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"auto_update_point": false,
"_id": ""
},
{
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 2
},
"_enabled": true,
"_draw_collide": false,
"can_move": false,
"_collide_shape": 1,
"collide_group_id": 0,
"collide_scle": 1,
"_radius": 50,
"_size": {
"__type__": "cc.Size",
"width": 110,
"height": 110
},
"_polygon_points": [
{
"__type__": "cc.Vec2",
"x": -45,
"y": -45
},
{
"__type__": "cc.Vec2",
"x": 45,
"y": -45
},
{
"__type__": "cc.Vec2",
"x": 60,
"y": 40
},
{
"__type__": "cc.Vec2",
"x": 0,
"y": 70
},
{
"__type__": "cc.Vec2",
"x": -60,
"y": 40
}
],
"_offset": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"data_string": "",
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 2
},
"asset": {
"__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5"
},
"fileId": "54EhKJk8RO3ZqCwIuQNcqR",
"sync": false
},
{ {
"__type__": "cc.Node", "__type__": "cc.Node",
"_name": "risefall", "_name": "risefall",
@ -89,17 +270,17 @@
}, },
"_children": [ "_children": [
{ {
"__id__": 3 "__id__": 8
} }
], ],
"_active": false, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 6 "__id__": 11
} }
], ],
"_prefab": { "_prefab": {
"__id__": 7 "__id__": 12
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -153,19 +334,19 @@
"_name": "color", "_name": "color",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 2 "__id__": 7
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 4 "__id__": 9
} }
], ],
"_prefab": { "_prefab": {
"__id__": 5 "__id__": 10
}, },
"_opacity": 255, "_opacity": 0,
"_color": { "_color": {
"__type__": "cc.Color", "__type__": "cc.Color",
"r": 0, "r": 0,
@ -217,7 +398,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 3 "__id__": 8
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
@ -248,7 +429,7 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 2 "__id__": 7
}, },
"asset": { "asset": {
"__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5" "__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5"
@ -261,7 +442,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 2 "__id__": 7
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
@ -291,12 +472,12 @@
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
"__id__": 2 "__id__": 7
}, },
"asset": { "asset": {
"__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5" "__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5"
}, },
"fileId": "54EhKJk8RO3ZqCwIuQNcqR", "fileId": "3dMeOJ0YNFE7bL+Lq7EnZ/",
"sync": false "sync": false
}, },
{ {
@ -343,6 +524,9 @@
"_enabled": true, "_enabled": true,
"label": null, "label": null,
"block_Id": "", "block_Id": "",
"riseFall": {
"__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf"
},
"_id": "" "_id": ""
}, },
{ {

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "1001", "id": "1001",
"map": [ "map": [
6, 6,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "1", "id": "1",
"map": [ "map": [
6, 6,
@ -22,7 +23,6 @@
"z": 0 "z": 0
}, },
"id": 210 "id": 210
}, },
{ {
"block": 5, "block": 5,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "10", "id": "10",
"map": [ "map": [
5, 5,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "100", "id": "100",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "101", "id": "101",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "102", "id": "102",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "103", "id": "103",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "104", "id": "104",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "105", "id": "105",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "106", "id": "106",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "107", "id": "107",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "108", "id": "108",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "109", "id": "109",
"map": [ "map": [
11, 11,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "11", "id": "11",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "110", "id": "110",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "111", "id": "111",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "112", "id": "112",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "113", "id": "113",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "114", "id": "114",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "115", "id": "115",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "116", "id": "116",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "118", "id": "118",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "119", "id": "119",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "12", "id": "12",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "120", "id": "120",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "121", "id": "121",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "122", "id": "122",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "123", "id": "123",
"map": [ "map": [
6, 6,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "124", "id": "124",
"map": [ "map": [
11, 11,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "125", "id": "125",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "126", "id": "126",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "127", "id": "127",
"map": [ "map": [
6, 6,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "128", "id": "128",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "13", "id": "13",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "130", "id": "130",
"map": [ "map": [
11, 11,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "64", "id": "64",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "132", "id": "132",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "133", "id": "133",
"map": [ "map": [
11, 11,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "134", "id": "134",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "135", "id": "135",
"map": [ "map": [
11, 11,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "137", "id": "137",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "138", "id": "138",
"map": [ "map": [
11, 11,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "14", "id": "14",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "140", "id": "140",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "141", "id": "141",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "143", "id": "143",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "144", "id": "144",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "145", "id": "145",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "146", "id": "146",
"map": [ "map": [
11, 11,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "147", "id": "147",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "148", "id": "148",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "149", "id": "149",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "15", "id": "15",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "150", "id": "150",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "151", "id": "151",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "152", "id": "152",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "153", "id": "153",
"map": [ "map": [
11, 11,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "154", "id": "154",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "155", "id": "155",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "156", "id": "156",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "157", "id": "157",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "158", "id": "158",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "159", "id": "159",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "16", "id": "16",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "160", "id": "160",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "161", "id": "161",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "162", "id": "162",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "163", "id": "163",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "164", "id": "164",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "165", "id": "165",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "166", "id": "166",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "167", "id": "167",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "168", "id": "168",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "169", "id": "169",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "17", "id": "17",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "170", "id": "170",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "171", "id": "171",
"map": [ "map": [
7, 7,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "172", "id": "172",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "173", "id": "173",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "174", "id": "174",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "175", "id": "175",
"map": [ "map": [
10, 10,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "176", "id": "176",
"map": [ "map": [
9, 9,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "177", "id": "177",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "178", "id": "178",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "179", "id": "179",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "18", "id": "18",
"map": [ "map": [
11, 11,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "180", "id": "180",
"map": [ "map": [
8, 8,

View File

@ -1,6 +1,7 @@
{ {
"LEVEL_INFO": [ "LEVEL_INFO": [
{ {
"risefall": [],
"id": "181", "id": "181",
"map": [ "map": [
8, 8,

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