Commit 0cf0e2a4 authored by zjz1994's avatar zjz1994

Merge branch 'dev' of http://gitlab2.dui88.com/wanghongyuan/xiaoxiaole into 樱花825

# Conflicts:
#	egret/src/something/chapters/Chapter31.ts
修改关卡
parents b6fecd81 c6feb6f1
......@@ -543,7 +543,7 @@ export default class MainBase extends eui.UILayer {
return new Promise((r) => {
NetManager.ins.hc_advert(() => {
r();
})
},3)
});
}
......@@ -639,7 +639,7 @@ export default class MainBase extends eui.UILayer {
//获取分享加体力的shareCode,不影响初始化场景,不进await
NetManager.ins.getUserShareCode(() => { })
MapScene.adData = DataManager.ins.getData('hc_advert');
MapScene.adData = DataManager.ins.getData('hc_advert_3');
Buried.init();
///////////
......
......@@ -179,7 +179,7 @@ export class DataManager extends ABDataManager {
* @returns {any}
*/
// tslint:disable-next-line:cyclomatic-complexity
public updateData(name: number, result: any, param?: any): Data {
public updateData(name: any, result: any, param?: any): Data {
let data: Data;
switch (name) {
case NetName.GET_ROLE:
......@@ -617,8 +617,13 @@ export class DataManager extends ABDataManager {
this._getRecordData.update(result);
data = this._getRecordData;
default:
if(name=="hc_advert"){
this[this.getKey(name+"_"+param.type)] = result;
console.log("新广告,分展示位单个区别获取",name,result,param);
}else{
this[this.getKey(name)] = result;
}
}
this.dispatchEvent(new egret.Event('dataUpdate', false, false, name));
return data || result;
}
......
......@@ -1461,7 +1461,7 @@ export class NetManager extends ABNetManager {
this.send(net);
}
public hc_advert(callback: Function): void {
public hc_advert(callback: Function,type): void {
var deviceId:string = '';
var cityCode:string = '';
const net: INetData = {
......@@ -1472,7 +1472,8 @@ export class NetManager extends ABNetManager {
param: {
activityId: DataManager.ins.customCfgData.actId,
deviceId:deviceId,
cityCode:cityCode
cityCode:cityCode,
type:type
},
hideMsg: true,
callback: callback
......
......@@ -3452,7 +3452,8 @@ export default class MainScene extends Scene {
}
//如果只有步数转化的,不能再进结算,
else {
// /**
//一次大消除结束
/**
var effectElements = [], elements = [];
for(var i = Tool.colNum * Tool.rowNum - 1; i >= 0; i--) {
var lat = this.lattices[i];
......@@ -3469,7 +3470,7 @@ export default class MainScene extends Scene {
this.eliminate();
return;
}
// */
*/
// else{
// console.log("可以结束");
// }
......
......@@ -5,6 +5,7 @@ import { Tool } from "../something/Tool";
import { Lattice } from "../something/class/Lattice";
import { RecoverName } from "../something/enum/RecoverName";
import { StateType } from "../something/enum/StateType";
import Block from "../something/block/Block";
/**
* fish爆炸
*/
......@@ -15,11 +16,14 @@ export default async (thisObj: MainScene) => {
for (var i = 0; i < thisObj.lattices.length; i++) {
const lattice = thisObj.lattices[i]
if (lattice && lattice.element && lattice.element.type == ElementType.FISH && lattice.element.isNeb) {
// console.log("遗漏河豚---",lattice.element.hasState(StateType.BLOCK_LOCK));
if(!lattice.element.hasState(StateType.BLOCK_LOCK)){
lattice.element.fishCanEliFlag = true;
indexs.push(lattice.index);
thisObj.eliminatedElements.push(lattice.index);
}
}
}
for (const index of indexs) {
const lat: Lattice = thisObj.lattices[index];
......
......@@ -17,7 +17,7 @@ export default class AdSmallComp extends ComponentBase {
this['img'].mask = this['adsmask'];
}
NetManager.ins.hc_advert(() => {
const { data } = DataManager.ins.getData('hc_advert');
const { data } = DataManager.ins.getData('hc_advert_2');
let { popupAdvert } = data;
if (popupAdvert == null)
popupAdvert = { enable: false, advertList: [] }
......@@ -34,7 +34,7 @@ export default class AdSmallComp extends ComponentBase {
snpmAdStatic.snpmAdReport("show","bottom",result);
this.data.img = result.img;
}
});
},2);
this['img'].addEventListener(egret.TouchEvent.TOUCH_TAP, () => {
if(result.url.length>2){
......
......@@ -171,7 +171,7 @@ export default class MapScene extends Scene {
this.updateAdData();
this['avatar'].mask = this['avatarMask'];
NetManager.ins.getSignInfo(() => {
NetManager.ins.getSignInfo(async() => {
const parmas = [];
const panels = [];
const result = this.sendInvite(panels, parmas);
......@@ -187,21 +187,35 @@ export default class MapScene extends Scene {
const nowTimerStr2 = date.getTime() + '';
const oldTimerStr2 = localStorage.getItem('nowTimer2Str' + window['CFG'].consumerId);
const hc_advert = DataManager.ins.getData('hc_advert').data || {};
if(nowTimerStr2 != oldTimerStr2){
console.log("时间上需要弹出广告");
var adpro = new Promise(res=>{
NetManager.ins.hc_advert(()=>{
const hc_advert = DataManager.ins.getData('hc_advert_1').data || {};
console.log("1广告数据",hc_advert);
let { noticeAdvert } = hc_advert;
if (noticeAdvert == null) {
noticeAdvert = { enable: false }
}
noticeAdvert = DataManager.ins.solveAdvertData(noticeAdvert);
if (noticeAdvert && noticeAdvert.enable && nowTimerStr2 != oldTimerStr2) {
// if (!adTag) {
if (noticeAdvert && noticeAdvert.enable){
panels.push('ad');
// adTag = true;
// }
localStorage.setItem('nowTimer2Str' + window['CFG'].consumerId, nowTimerStr2);
}
res();
},1);
});
await adpro;
console.log("时间弹出广告结束");
}
// if (noticeAdvert && noticeAdvert.enable && nowTimerStr2 != oldTimerStr2) {
// // if (!adTag) {
// panels.push('ad');
// // adTag = true;
// // }
// localStorage.setItem('nowTimer2Str' + window['CFG'].consumerId, nowTimerStr2);
// }
const backData = DataManager.ins.getData('hc_hasBackReward');
if (backData.success) {
......@@ -1035,7 +1049,7 @@ export default class MapScene extends Scene {
// 更新广告数据
updateAdData() {
const hc_advert = DataManager.ins.getData('hc_advert').data || {};
const hc_advert = DataManager.ins.getData('hc_advert_3').data || {};
let { mapAdvert } = hc_advert;
if (mapAdvert == null)
mapAdvert = { enable: false, advertList: [] }
......@@ -1439,7 +1453,7 @@ export default class MapScene extends Scene {
* 查询邀请信息
*/
getInviteInfo() {
const hc_advert = DataManager.ins.getData('hc_advert').data || {};
const hc_advert = DataManager.ins.getData('hc_advert_3').data || {};
let { mapAdvert } = hc_advert;
mapAdvert = DataManager.ins.solveAdvertData(mapAdvert);
// tslint:disable-next-line: cyclomatic-complexity
......
......@@ -2,7 +2,7 @@ import { DataManager } from "../../libs/tw/manager/DataManager";
export default () => {
const hc_advert:any = DataManager.ins.getData('hc_advert').data || {};
const hc_advert:any = DataManager.ins.getData('hc_advert_3').data || {};
let { mapAdvert } = hc_advert;
if (mapAdvert == null)
mapAdvert = { enable: false, advertList: [] }
......
......@@ -11,7 +11,7 @@ export default class ADPanel extends Panel {
this.showlog();
let result;
const hc_advert = DataManager.ins.getData('hc_advert').data;
const hc_advert = DataManager.ins.getData('hc_advert_1').data;
let { noticeAdvert } = hc_advert;
noticeAdvert = DataManager.ins.solveAdvertData(noticeAdvert);
this.visible = noticeAdvert.enable;
......
......@@ -2,490 +2,455 @@ import { ChapterData } from "../interface/ChapterData";
//776-800
export const Chapters31: ChapterData[] = [
//751
{ baseElementTypes: [ 0, 1, 2, 3 ], bubbleProbability: 0, stepCount: 26, passTarget: { type: 1, elements: [ { type: 9, count: 71 }, { type: 0, count: 102 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 0, 3, 3, 3, 0, 3, 3,
3, 3, 0, 3, 3, 3, 0, 3, 3,
3, 3, 0, 3, 3, 3, 0, 3, 3,
3, 3, 0, 3, 3, 3, 0, 3, 3,
3, 3, 61, 3, 3, 3, 61, 3, 3,
3, 3, 6, 3, 3, 3, 6, 3, 3,
3, 3, 61, 3, 3, 3, 61, 3, 3,
3, 3, 6, 3, 3, 3, 6, 3, 3,
3, 3, 0, 3, 3, 3, 0, 3, 3 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
2, 1, 1, 1, 1, 1, 1, 1, 2,
1, 2, 1, 1, 1, 1, 1, 2, 1,
//776
{ baseElementTypes: [ 0, 3, 4, 2 ], bubbleProbability: 0, stepCount: 26, passTarget: { type: 1, elements: [ { type: 6, count:9 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 0, 0, 0, 0, 0, 1, 1,
1, 1, 0, 1, 1, 1, 0, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1 ], connectedLats: [ [38,65],[42,69], [ 39, 57 ], [ 40, 58 ], [ 41, 59 ] ], conveyor: [ [ 54, 55 ], [ 46, 28 ], [ 29, 11 ], [ 2,3 ], [ 62, 61 ], [ 52, 34 ], [ 33, 15 ], [ 6, 5 ] ], conveyorConnectedLats: [ [ 55, 46 ], [ 28, 29 ], [ 11, 2], [ 3, 54 ], [ 61, 52 ], [ 34, 33 ], [ 15, 6 ], [ 5, 62 ] ], WORMHOLE: [], elements: [
2, 3, 1, 1, 4, 1, 1, 3, 2,
2, 1, 1, 1, 14, 1, 1, 1, 2,
1, 2, 1, 1, 1, 1, 1, 2, 1,
2, 1, 1, 1, 6, 1, 1, 1, 2,
2, 1, 1, 1, 1, 1, 1, 1, 2,
1, 1, 9, 4, 4, 4, 9, 1, 1,
1, 1, 1, 4, 4, 4, 1, 1, 1,
1, 1, 9, 4, 4, 4, 9, 1, 1,
1, 1, 1, 5, 5, 5, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//752
{ baseElementTypes: [ 0, 4, 2, 3 ], bubbleProbability: 0, stepCount: 24, passTarget: { type: 1, elements: [ { type: 43, count:3 },{ type: 44, count: 2 },{ type: 45, count:1 }] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 0, 0, 0, 0, 3, 3, 3, 3,
0, 3, 3, 3, 3, 3, 3, 3, 3,
0, 3, 3, 3, 3, 3, 3, 3, 3,
0, 3, 3, 3, 1, 3, 3, 3, 3,
0, 3, 3, 3, 3, 0, 3, 3, 3,
3, 6, 3, 6, 0, 3, 6, 3, 6,
3, 3, 3, 3, 3, 3, 3, 3, 3,
2, 1, 1, 4, 4, 4, 1, 1, 2,
2, 1, 1, 1, 1, 1, 1, 1, 2,
15, 15, 1, 1, 1, 1, 1, 15, 15,
1, 1, 1, 1, 14, 1, 1, 1, 1,
2, 2, 2, 2, 2, 2, 2, 2, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [ 72,73,74, 75, 76, 77, 78,79,80 ], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//777
{ baseElementTypes: [ 0, 1, 2, 3 ], bubbleProbability: 0, stepCount: 27, passTarget: { type: 1, elements: [ { type: 9, count:68 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 61, 61, 0, 3, 3,
3, 3, 3, 3, 3, 61, 0, 3, 3,
3, 3, 3, 3, 3, 3, 0, 3, 3,
3, 3, 3, 3, 3, 3, 0, 3, 3,
6, 3, 3, 3, 3, 3, 0, 3, 3,
6, 6, 3, 3, 3, 3, 0, 3, 3,
0, 0, 0, 0, 0, 0, 0, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 1, 1, 1, 1, 4, 4,
1, 4, 4, 1, 1, 1, 1, 1, 4,
1, 4, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 6, 1, 1, 1, 1,
1, 1, 4, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
4, 2, 4, 1, 1, 1, 4, 2, 4,
2, 4, 2, 1, 1, 1, 2, 4, 2,
4, 2, 4, 1, 1, 1, 4, 2, 4 ], baseElements: [
0, 0, 0, 0, 0, 40, 10, 10, 50,
0, 10, 10, 50, 50, 10, 40, 30, 10,
0, 50, 50, 30, 30, 10, 40, 10, 40,
0, 50, 40, 40, 0, 50, 30, 40, 10,
0, 30, 40, 50, 0, 0, 10, 50, 30,
0, 0, 30, 0, 0, 0, 0, 0, 0,
0, 0, 50,50, 30, 40, 0, 0, 0,
0, 0, 0, 10, 30, 50, 0, 0, 0,
0, 0, 50, 30, 40, 50, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 43, dir: "up", luidx: 10 }, { type: 44, dir: "up", luidx: 14 }, { type: 45, dir: "down", luidx: 66 }, { type: 43, dir:"right", luidx: 60 },{ type: 43, dir:"left", luidx: 54 },{ type: 44, dir:"left", luidx: 7 } ], generateLats: [ { index: 5, type: null,cus:[10,10,50,] }, { index: 6, type: null,cus:[50,50,10,] }, { index: 7, type: null }, { index: 8, type: null }, { index: 10, type: null }, { index: 11, type: null }, { index: 12, type: null }, { index: 13, type: null }, { index: 45, type: null } ] } },
//753
{ baseElementTypes: [ 0, 2, 4, 3 ], bubbleProbability: 0, stepCount: 23, passTarget: { type: 1, elements: [ { type: 36, count: 69 }, { type: 1, count: 62 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [ 0, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 0, 7, 7, 7, 0, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 4, 1, 4, 1, 4, 1, 4, 1,
4, 1, 1, 1, 1, 1, 1, 1, 4,
4, 1, 1, 1, 1, 1, 1, 1, 4,
1, 1, 6, 1, 2, 2, 1, 1, 1,
6, 1, 1, 1, 6, 1, 1, 1, 6,
1, 1, 1, 2, 2, 1, 6, 1, 1,
4, 1, 1, 1, 1, 1, 1, 1, 4,
4, 1, 1, 1, 1, 1, 1, 1, 4,
1, 4, 1, 4, 14, 4, 1, 4, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 9, type: null }, { index: 17, type: null } ] } },
//754
{ baseElementTypes: [ 1, 3, 4, 2 ], bubbleProbability: 0, stepCount: 24, passTarget: { type: 1, elements: [ { type: 41, count: 65 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 1, 1, 1, 1, 1, 1, 1, 0,
3, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [ [ 45, 63 ], [ 46, 64 ], [ 47, 65 ], [ 48, 66 ], [ 49, 67 ],[50,68] ], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
4, 4, 1, 1, 4, 4, 1, 4, 1,
4, 1, 1, 1, 1, 4, 1, 1, 4,
1, 1, 1, 14, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
0, 1, 1, 1, 1, 1, 1, 1, 0,
0, 0, 1, 1, 1, 1, 1, 0, 0,
9, 1, 41, 0, 0, 0, 41, 1, 9,
5, 2, 2, 2, 2, 2, 1, 14, 1,
5, 5, 2, 2, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 23, 23, 1, 1, 1, 2,
1, 1, 1, 23, 23, 1, 1, 2, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 7, type: null }, { index: 8, type: null }, { index: 69, type: null } ] } },
//778
{ baseElementTypes: [ 1, 3, 4, 2 ], bubbleProbability: 0, stepCount: 25, passTarget: { type: 1, elements: [ { type: 41, count:67 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 1, 1, 1, 0, 1, 1, 1, 0,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 0, 0, 0, 1, 1, 1 ], connectedLats: [ [ 9, 36 ], [ 17, 44 ], [ 31, 49 ] ,[30,48],[32,50]], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 7, 7, 7, 7, 7, 1, 1,
1, 1, 7, 7, 7, 7, 7, 1, 1,
1, 1, 7, 7, 7, 7, 7, 1, 1,
1, 1, 7, 7, 7, 7, 7, 1, 1,
2, 2, 1, 1, 1, 1, 1, 2, 2,
1, 1, 1, 9, 8, 9, 1, 1, 1,
1, 1, 1, 8, 14, 8, 1, 1, 1,
4, 4, 4, 9, 8, 9, 4, 4, 4,
4, 4, 4, 1, 1, 1, 4, 4, 4 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 9, type: null }, { index: 17, type: null } ] } },
//755
{ baseElementTypes: [ 0, 1, 2, 3 ], bubbleProbability: 0, stepCount: 21, passTarget: { type: 1, elements: [ { type: 43, count:2 } ,{ type: 44, count:7 }] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 0, 0, 6, 3, 61, 0, 0, 0,
0, 0, 6, 3, 3, 3, 61, 0, 0,
0, 6, 3, 3, 3, 3, 3, 61, 0,
3, 3, 61, 3, 3, 3, 6, 3, 3,
3, 3, 61, 3, 3, 3, 6, 3, 3,
3, 3, 61, 3, 3, 3, 6, 3, 3,
3, 3, 61, 3, 3, 3, 6, 3, 3,
3, 3, 61, 3, 3, 3, 6, 3, 3,
3, 3, 61, 3, 3, 3, 6, 3, 3 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 0, 1, 4, 0, 4, 1, 0, 1,
41, 0, 1, 41, 0, 41, 1, 0, 41,
1, 9, 1, 1, 1, 1, 1, 91, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
0, 1, 1, 1, 0, 1, 1, 1, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 4, 1, 1, 1, 1, 1, 4, 1,
4, 4, 1, 1, 1, 1, 1, 4, 4,
4, 4, 1, 1, 9, 1, 1, 4, 4,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 4, 2, 1, 1, 1, 2, 4, 2,
2, 2, 2, 1, 1, 1, 2, 2, 2,
2, 2, 2, 2, 1, 1, 2, 2, 2,
1, 9, 2, 2, 1, 2, 2, 9, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 9, type: null }, { index: 17, type: null }, { index: 21, type: null }, { index: 22, type: null } ] } },
//779
{ baseElementTypes: [ 0, 2, 3, 4 ], bubbleProbability: 0, stepCount: 25, passTarget: { type: 1, elements: [ { type: 43, count: 1 }, { type: 42, count: 8 }, { type: 44, count: 4 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 3, 3, 0, 0, 0, 3, 3, 0,
3, 3, 3, 3, 0, 3, 3, 3, 3,
3, 3, 3, 3, 0, 3, 3, 3, 3,
0, 3, 3, 3, 3, 3, 3, 3, 0,
0, 0, 0, 3, 3, 3, 0, 0, 0,
0, 3, 3, 3, 3, 3, 3, 3, 0,
3, 3, 3, 3, 0, 3, 3, 3, 3,
2, 3, 3, 3, 0, 3, 3, 3, 2,
0, 3, 3, 0, 0, 0, 3, 3, 0 ], connectedLats: [[28,46],[34,52],[18,54],[26,62]], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 2, 1, 1, 1, 2, 1, 1,
2, 2, 1, 1, 1, 1, 1, 2, 2,
2, 1, 1, 1, 1, 1, 1, 1, 2,
1, 1, 1, 8, 4, 8, 1, 1, 1,
1, 1, 1, 4, 14, 4, 1, 1, 1,
1, 1, 1, 8, 4, 8, 1, 1, 1,
2, 1, 1, 1, 1, 1, 1, 1, 2,
2, 2, 1, 1, 1, 1, 1, 2, 2,
1, 2, 2, 1, 1, 1, 2, 2, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 32, 0, 12, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 43, dir:"up", luidx: 30 }, { type: 42, dir: "up", luidx: 9 }, { type: 42, dir:"up", luidx: 12 }, { type: 42, dir: "up", luidx: 14 }, { type: 42, dir: "up", luidx: 17 }, { type: 42, dir: "up", luidx: 54 }, { type: 42, dir: "up", luidx: 57 }, { type: 42, dir: "up", luidx: 59 }, { type: 42, dir: "up", luidx: 62 }, { type: 44, dir: "up", luidx: 10 }, { type: 44, dir: "up", luidx: 15 }, { type: 44, dir: "up", luidx: 55 }, { type: 44, dir: "up", luidx: 60 } ], generateLats: [{ index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 12, type: null }, { index: 4, type: null }, { index: 14, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null }, { index: 22, type: null }] } },
//780
{ baseElementTypes: [ 0, 2, 3, 1 ], bubbleProbability: 0, stepCount: 21, passTarget: { type: 1, elements: [ { type: 36, count:60 },{ type: 34, count: 20 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
7, 7, 7, 7, 7, 7, 7, 7, 7,
0, 7, 7, 7, 7, 7, 7, 7, 0,
0, 7, 7, 7, 7, 7, 7, 7, 0,
7, 41, 7, 41, 7, 41, 7, 41, 7,
4, 7, 4, 7, 4, 7, 4, 7, 4,
0, 41, 7, 41, 7, 41, 7, 41, 0,
0, 7, 7, 7, 7, 7, 7, 7, 0,
7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
4, 4, 1, 1, 1, 1, 1, 4, 4,
1, 4, 1, 1, 1, 1, 1, 4, 1,
1, 4, 1, 1, 1, 1, 1, 4, 1,
2, 2, 1, 16, 1, 16, 1, 2, 2,
2, 1, 2, 1, 1, 1, 2, 1, 2,
1, 1, 1, 4, 4, 4, 1, 1, 1,
2, 1, 2, 4, 4, 4, 2, 1, 2,
1, 2, 1, 4, 4, 4, 1, 2, 1,
2, 1, 2, 4, 4, 4, 2, 1, 2,
1, 2, 1, 4, 4, 4, 1, 2, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 43, dir: "up", luidx: 57 }, { type: 43, dir: "up", luidx:30 }, { type: 44, dir: "left", luidx:27 }, { type: 44, dir: "left", luidx: 45 }, { type: 44, dir: "left", luidx: 63 }, { type: 44, dir: "right", luidx: 34 }, { type: 44, dir: "right", luidx: 52 }, { type: 44, dir: "right", luidx: 70 }, { type: 44, dir: "up", luidx: 12 }], generateLats: [ { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 11, type: null }, { index: 15, type: null }, { index: 19, type: null }, { index: 25, type: null }, { index: 27, type: null }, { index: 35, type: null } ] } },
//756
{ baseElementTypes: [ 0, 1, 3, 4 ], bubbleProbability: 0, stepCount: 29, passTarget: { type: 1, elements: [ { type: 6, count: 10 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 4, 1 ], connectedLats: [[3,48],[5,50]], conveyor: [[74,78]], conveyorConnectedLats: [[78,74] ], WORMHOLE: [], elements: [
1, 1, 1, 3, 1, 3, 1, 1, 1,
1, 2, 1, 16, 1, 16, 1, 2, 1,
1, 1, 1, 2, 2, 2, 1, 1, 1,
1, 2, 2, 2, 12, 2, 2, 2, 1,
1, 1, 1, 1, 2, 1, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//781
{ baseElementTypes: [ 1, 3, 2, 4 ], bubbleProbability: 0, stepCount: 22, passTarget: { type: 1, elements: [ { type: 9, count: 65 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 3, 3, 3, 3,
0, 0, 3, 0, 3, 0, 3, 0, 0,
3, 3, 61, 3, 3, 3, 61, 3, 3,
0, 3, 3, 6, 3, 6, 3, 3, 0,
3, 3, 3, 3, 3, 3, 3, 3, 3,
0, 3, 3, 6, 3, 6, 3, 3, 0,
3, 3, 61, 3, 3, 3, 61, 3, 3,
0, 0, 3, 0, 3, 0, 3, 0, 0,
3, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [[0,18],[8,26],[54,72],[62,80]], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
4, 4, 4, 1, 1, 1, 4, 4, 4,
1, 1, 1, 2, 2, 2, 1, 1, 1,
1, 1, 1, 2, 14, 2, 1, 1, 1,
1, 1, 1, 2, 2, 2, 1, 1, 1,
9, 1, 1, 1, 1, 1, 1, 1, 9,
1, 1, 11, 1, 1, 1, 1, 1, 1,
9, 4, 4, 1, 1, 1, 4, 4, 9 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//782
{ baseElementTypes: [ 4, 0, 2, 3 ], bubbleProbability: 0, stepCount: 27, passTarget: { type: 1, elements: [ { type: 1, count: 50 }, { type: 0, count: 92 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 0, 0, 1, 1, 1, 0, 0, 0,
0, 0, 1, 1, 1, 1, 1, 0, 0,
0, 1, 1, 1, 1, 1, 1, 1, 0,
4, 1, 41, 1, 1, 1, 41, 1, 4,
41, 1, 4, 1, 1, 1, 4, 1, 41,
1, 1, 1, 1, 0, 1, 1, 1, 1,
0, 1, 1, 1, 1, 1, 1, 1, 0,
0, 1, 1, 1, 1, 1, 1, 1, 0,
0, 1, 1, 1, 0, 1, 1, 1, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 4, 1, 4, 1, 1, 1,
1, 1, 4, 1, 14, 1, 4, 1, 1,
1, 6, 1, 1, 1, 1, 1, 6, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 4, 2, 1, 1, 1, 2, 4, 2,
2, 4, 2, 4, 1, 4, 2, 4, 2,
2, 4, 2, 1, 1, 1, 2, 4, 2,
2, 4, 2, 4, 1, 4, 2, 4, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [72,73,74,78,79,80], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//757
{ baseElementTypes: [ 0, 1, 4, 3 ], bubbleProbability: 0, stepCount: 22, passTarget: { type: 1, elements: [ { type: 42, count: 7 }, { type: 44, count: 2 },{type:45,count:3} ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 3, 3, 3, 3,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 6, 1, 2, 1, 2, 1, 6, 1,
1, 1, 1, 2, 14, 2, 1, 1, 1,
1, 2, 2, 2, 1, 2, 2, 2, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 11, type: null }, { index: 15, type: null }, { index: 19, type: null }, { index: 25, type: null }, { index: 27, type: null }, { index: 35, type: null } ] } },
//783
{ baseElementTypes: [ 0, 2, 3, 1 ], bubbleProbability: 0, stepCount: 24, passTarget: { type: 1, elements: [ { type: 42, count: 6 }, { type: 45, count: 2 }, { type: 43, count: 4 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 3, 3, 3, 3,
0, 3, 3, 3, 3, 3, 3, 3, 0,
3, 3, 3, 3, 0, 3, 3, 3, 3,
3, 3, 3, 3, 0, 3, 3, 3, 3,
3, 3, 3, 3, 0, 3, 3, 3, 3,
0, 0, 3, 3, 3, 3, 3, 0, 0,
3, 3, 3, 3, 0, 3, 3, 3, 3,
0, 3, 3, 3, 0, 3, 3, 3, 0,
61, 6, 61, 6, 61, 6, 61, 6, 61,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 0, 3, 0, 3, 0, 3, 0, 3,
3, 0, 3, 3, 3, 3, 3, 0, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
4, 1, 1, 1, 2, 1, 1, 1, 4,
4, 1, 1, 1, 2, 1, 1, 1, 4,
4, 1, 1, 1, 1, 1, 14, 1, 4,
3, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [[36,54],[44,62],[13,49]], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
2, 1, 2, 1, 2, 1, 2, 1, 2,
1, 1, 1, 1, 14, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 2, 1, 2, 1, 2, 1, 1,
1, 23, 23, 1, 1, 1, 23, 23, 1,
1, 23, 23, 1, 1, 1, 23, 23, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
4, 15, 15, 1, 1, 1, 15, 15, 4,
9, 4, 15, 1, 1, 1, 15, 4, 9,
9, 9, 4, 1, 1, 1, 4, 9, 9 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 42, dir: "left", luidx: 0 }, { type: 42, dir: "right", luidx: 7 }, { type: 43, dir: "left", luidx: 18 }, { type: 43, dir: "right", luidx: 24 }, { type: 42, dir: "left", luidx: 47 }, { type: 42, dir: "right", luidx: 50 }, { type: 45, dir: "up", luidx: 3 }, { type: 45, dir: "up", luidx: 66 }, { type: 42, dir: "up", luidx: 2 }, { type: 42, dir: "up", luidx: 6 }, { type: 43, dir: "up", luidx: 54 }, { type: 43, dir: "up", luidx: 60 } ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//784
{ baseElementTypes: [ 3, 4, 0, 2 ], bubbleProbability: 0, stepCount: 26, passTarget: { type: 1, elements: [ { type: 6, count: 8 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [ 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 41, 1, 1, 1, 4, 1, 1, 1, 41, 41, 1, 1, 1, 4, 1, 1, 1, 41, 41, 1, 1, 1, 4, 1, 1, 1, 41, 41, 1, 1, 1, 4, 1, 1, 1, 41, 41, 1, 1, 1, 4, 1, 1, 1, 41, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0 ], connectedLats: [] , conveyor: [ [ 18, 26 ], [ 36, 44 ], [ 54, 62 ] ], conveyorConnectedLats: [ [ 26, 18 ], [ 44, 36 ], [ 62, 54 ] ], WORMHOLE: [], elements: [
1, 1, 3, 1, 1, 1, 3, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 1, 1, 1, 1, 1, 1, 1, 2,
2, 1, 1, 12, 1, 1, 1, 6, 2,
2, 1, 1, 1, 1, 1, 1, 1, 2,
2, 6, 1, 1, 1, 12, 1, 1, 2,
2, 1, 1, 1, 1, 1, 1, 1, 2,
1, 1, 1, 1, 1, 1, 1, 1, 1,
4, 1, 4, 1, 4, 1, 4, 1, 4], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 44, dir: "up", luidx:65 },{ type: 44, dir: "up", luidx:68 },{ type: 42, dir: "up", luidx:45 },{ type: 42, dir: "up", luidx:63 },{ type: 42, dir: "up", luidx:47 },{ type: 42, dir: "up", luidx:49 },{ type: 42, dir: "up", luidx:51 },{ type: 42, dir: "up", luidx:53 },{ type: 42, dir: "up", luidx:71 },{ type: 45, dir: "up", luidx:0 } ,{ type: 45, dir: "up", luidx:3 },{ type: 45, dir: "up", luidx:6 }], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//758
{ baseElementTypes: [ 0, 3, 4, 2 ], bubbleProbability: 0, stepCount: 18, passTarget: { type: 1, elements: [ { type: 42, count: 8 }, { type: 43, count: 2 },{type:45,count:2} ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 3, 3, 3, 3,
1, 1, 1, 1, 1, 1, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [ 64,74, 75, 76, 77, 78,70 ], foodsdata: [ ], generateLats: [ { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 10, type: null }, { index: 16, type: null }, { index: 18, type: null }, { index: 26, type: null } ] } },
//785
{ baseElementTypes: [ 0, 2, 4, 3 ], bubbleProbability: 0,
stepCount: 24,
passTarget: {
type: 1,
elements: [ { type: 41, count: 70 } ] }
, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 4, 1, 1, 1, 1,
1, 1, 1, 1, 4, 1, 1, 1, 1,
0, 1, 1, 1, 4, 1, 1, 1, 0,
0, 1, 41, 41, 1, 41, 41, 1, 8,
0, 1, 1, 1, 4, 1, 1, 1, 0,
0, 1, 1, 1, 4, 1, 1, 1, 0,
0, 1, 1, 1, 4, 1, 1, 1, 0,
4, 1, 1, 1, 1, 1, 1, 1, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
2, 2, 1, 1, 1, 1, 1, 2, 2,
2, 1, 1, 1, 4, 1, 1, 1, 2,
2, 1, 1, 1, 4, 1, 1, 1, 2,
1, 1, 1, 1, 4, 1, 1, 1, 1,
1, 4, 4, 4, 4, 4, 4, 4, 1,
1, 2, 0, 0, 4, 0, 0, 2, 1,
1, 2, 0, 0, 4, 0, 0, 2, 1,
1, 2, 0, 0, 4, 0, 0, 2, 1,
4, 5, 5, 5, 5, 5, 5, 5, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//786
{ baseElementTypes: [ 0, 2, 3, 4 ], bubbleProbability: 0, stepCount: 30, passTarget: { type: 1, elements: [ { type: 22, count: 18 }, { type: 24, count: 18 }, { type: 25, count: 18 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [ 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 41, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 4, 1, 41, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 4, 1,13, 4, 1, 1, 1, 1, 1, 4, 13, 13, 4, 1, 1, 2, 9, 1, 4, 13, 13, 4, 1, 2, 14, 2, 1, 4, 13, 1, 4, 1, 9, 2, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 1, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 10, type: null }, { index: 16, type: null }, { index: 18, type: null }, { index: 26, type: null } ] } },
//787
{ baseElementTypes: [ 2, 3, 0, 4 ], bubbleProbability: 0, stepCount: 23, passTarget: { type: 1, elements: [ { type: 36, count: 65 }, { type: 1, count: 60} ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [ 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 1, 6, 1, 11, 1, 6, 1, 2,
1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 1, 1, 4, 4, 4, 1, 1, 2,
1, 1, 1, 4, 12, 4, 1, 1, 1,
2, 1, 1, 4, 4, 4, 1, 1, 2,
1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 1, 6, 1, 14, 1, 6, 1, 2,
1, 2, 1, 2, 1, 2, 1, 2, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 1, type: null }, { index: 3, type: null }, { index: 5, type: null }, { index: 7, type: null }, { index: 9, type: null }, { index: 13, type: null }, { index: 17, type: null }, { index: 20, type: null }, { index: 24, type: null } ] } },
//788
{ baseElementTypes: [ 0, 1, 2, 3 ], bubbleProbability: 0, stepCount: 22, passTarget: { type: 1, elements: [ { type: 9, count: 65 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 3, 3, 3, 0, 3, 3, 3, 0,
1, 3, 3, 3, 3, 3, 3, 3, 1,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 6, 1, 3, 3, 3, 1, 61, 3,
3, 3, 6, 3, 3, 3, 61, 3, 3,
3, 3, 3, 6, 3, 61, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
0, 3, 3, 3, 0, 3, 3, 3, 0,
3, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 2, 1, 1, 1, 1, 1, 2, 1,
1, 1, 2, 1, 1, 1, 2, 1, 1,
1, 1, 1, 2, 1, 2, 1, 1, 1,
1, 2, 6, 1, 1, 1, 6, 2, 1,
4, 1, 2, 1, 1, 1, 2, 1, 4,
4, 1, 1, 2, 1, 2, 1, 1, 4,
1, 2, 1, 1, 1, 1, 1, 2, 1,
1, 2, 1, 4, 1, 4, 1, 2, 1,
1, 1, 1, 1, 11, 1, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 43, dir: "up", luidx: 1 }, { type: 43, dir:"up", luidx: 5 }, { type: 45, dir: "left", luidx:56 }, { type: 45, dir: "right", luidx: 59 }, { type: 42, dir: "up", luidx: 27 }, { type: 42, dir: "up", luidx: 45 }, { type: 42, dir: "up", luidx:37 }, { type: 42, dir: "up", luidx: 35 }, { type: 42, dir:"up", luidx: 43 }, { type: 42, dir: "up", luidx: 53},{ type: 42, dir: "left", luidx:72 }, { type: 42, dir: "right", luidx:79 }], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//759
{ baseElementTypes: [ 3, 4, 1, 2 ], bubbleProbability: 0, stepCount: 23, passTarget: { type: 1, elements: [ { type: 36, count: 63 } ,{type:34,count:20}] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
4, 7, 7, 7, 7, 7, 7, 7, 4,
4, 7, 7, 7, 7, 7, 7, 7, 4,
4, 7, 7, 7, 7, 7, 7, 7, 4,
7, 7, 41, 7 ,7, 7, 41, 7, 7,
0, 4, 0, 7, 0, 7, 0, 4, 0,
7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 0, 7, 7, 0, 7, 7, 0, 7 ], connectedLats: [ [ 27, 45 ], [ 35, 53 ] ], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
5, 2, 2, 1, 1, 1, 2, 2, 5,
5, 2, 1, 1, 1, 1, 1, 2, 5,
5, 2, 2, 1, 1, 1, 2, 2, 5,
1, 1, 5, 1, 12, 1, 5, 1, 1,
1, 9, 1, 5, 1, 5, 1, 9, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
4, 1, 4, 1, 14, 1, 4, 1, 4,
2, 4, 2, 2, 1, 2, 2, 4, 2,
1, 1, 16, 16, 1, 16, 16, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 3, type: null }, { index: 5, type: null }, { index: 7, type: null }, { index: 8, type: null }, { index:2, type: null }, { index: 6, type: null }, { index: 4, type: null } ] } },
//760
{ baseElementTypes: [ 0, 1, 2, 3 ], bubbleProbability: 0, stepCount: 25, passTarget: { type: 1, elements: [ { type: 22, count: 22 }, { type: 23, count: 22 }, { type: 25, count: 22 } ] }, starScores: [ 15000, 2000, 25000 ], map: { lattices: [
1, 1, 1, 0, 0, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
0, 41, 4, 41, 4, 41, 0, 0, 1,
0, 1, 1, 1, 1, 1, 1, 1, 4,
4, 1, 1, 1, 1, 1, 1, 1, 4,
4, 1, 1, 0, 1, 1, 1, 1, 4,
4, 1, 1, 0, 1, 1, 1, 1, 1,
4, 1, 1, 1, 1, 1, 1, 1, 1 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
4, 1, 1, 1, 1, 1, 1, 1, 1,
4, 1, 1, 1, 2, 2, 1, 1, 1,
4, 1, 1, 1, 2, 2, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 14, 1, 1, 1, 1, 4,
5, 1, 1, 1, 1, 1, 1, 1, 4,
5, 1, 1, 1, 1, 1, 1, 1, 4,
5, 1, 1, 1, 2, 2, 2, 2, 1,
5, 1, 1, 1, 13, 13, 13, 13, 13 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [24,33], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null }, { index: 12, type: null }, { index: 13, type: null }, { index: 5, type: null } ] } },
//761
{ baseElementTypes: [ 0, 4, 2, 3 ], bubbleProbability: 0, stepCount: 26, passTarget: { type: 1, elements: [ { type: 9, count: 71 },{type:2,count:115} ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 3, 3, 3, 3, 3, 3, 3, 0,
0, 3, 0, 3, 3, 3, 0, 3, 0,
0, 3, 3, 3, 3, 3, 3, 3, 0,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 1, 3, 3, 3, 3, 3,
0, 3, 3, 3, 0, 3, 3, 3, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [ ], elements: [
1, 4, 1, 1, 1, 1, 1, 4, 1,
19, 2, 4, 1, 4, 1, 4, 2, 19,
1, 2, 1, 4, 1, 4, 1, 2, 1,
1, 2, 1, 1, 4, 1, 1, 2, 1,
1, 2, 1, 15, 15, 15, 1, 2, 1,
1, 2, 1, 1, 4, 1, 1, 2, 1,
22, 2, 1, 4, 1, 4, 1, 2, 22,
22, 2, 4, 1, 4, 1, 4, 2, 22,
1, 4, 1, 1, 1, 1, 1, 4, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 9, type: null }, { index: 13, type: null }, { index: 17, type: null } ] } },
//789
{ baseElementTypes: [ 0, 3, 2, 4 ], bubbleProbability: 0, stepCount: 27, passTarget: { type: 1, elements: [ { type: 9, count:72 },{type:1,count:72},{type:0,count:96} ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 3, 3, 3, 0,
3, 3, 3, 1, 3, 1, 3, 3, 0,
3, 3, 3, 61, 3, 6, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
0, 6, 61, 0, 0, 0, 61, 6, 0,
3, 3, 3, 0, 3, 3, 3, 3, 3,
3, 3, 3, 0, 3, 3, 3, 3, 3,
3, 3, 3, 0, 3, 3, 3, 3, 3,
3, 3, 3, 0, 3, 3, 3, 3, 3 ], connectedLats: [[31,49],[32,50]], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
2, 1, 1, 1, 1, 23, 23, 1, 4,
2, 1, 1, 1, 1, 23, 23, 1, 4,
2, 1, 1, 6, 1, 1, 1, 1, 4,
2, 1, 1, 1, 1, 1, 1, 1, 4,
1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 1, 1, 1, 1, 1, 1, 1, 4,
2, 1, 1, 1, 1, 1, 1, 1, 4,
2, 1, 1, 1, 1, 23, 23, 1, 4,
2, 1, 1, 1, 1, 23, 23, 1, 4 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//762
{ baseElementTypes: [ 0, 3, 4, 2 ], bubbleProbability: 0, stepCount: 24, passTarget: { type: 1, elements: [ { type: 41, count: 68 }, { type: 4, count: 92 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 0, 1, 0, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
0, 9, 0, 0, 0, 0, 0, 91, 0,
4, 1, 1, 1, 1, 1, 1, 1, 4,
4, 1, 1, 0, 1, 0, 1, 1, 4,
3, 61, 3, 3, 0, 3, 3, 6, 3,
3, 3, 61, 3, 3, 3, 6, 3, 3,
3, 3, 3, 61, 3, 6, 3, 3, 3,
0, 3, 1, 3, 3, 3, 1, 3, 3,
0, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [[31,49]], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 6, 1, 6, 1, 1, 1,
1, 23, 23, 1, 1, 1, 23, 23, 1,
1, 23, 23, 1, 1, 1, 23, 23, 1,
4, 1, 1, 1, 1, 1, 1, 1, 4,
4, 1, 1, 1, 1, 1, 1, 1, 4 ], connectedLats: [ [ 30, 48 ], [ 31, 49 ], [ 32, 50 ],[29,47],[33,51],[27,45] ,[35,53]], conveyor: [ [ 27, 35 ] ], conveyorConnectedLats: [ [ 35, 27 ] ], WORMHOLE: [], elements: [
1, 1, 1, 4, 4, 4, 1, 1, 1,
1, 1, 1, 4, 4, 4, 1, 1, 1,
4, 1, 1, 1, 1, 1, 1, 1, 2,
4, 1, 1, 1, 14, 1, 1, 1, 2,
1, 1, 6, 1, 1, 1, 6, 1, 2,
1, 1, 2, 2, 2, 2, 2, 2, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 26, type: null } ] } },
//790
{ baseElementTypes: [ 0, 2, 4, 3 ], bubbleProbability: 0, stepCount: 30, passTarget: { type: 1, elements: [ { type: 22, count:20 },{type:25,count:20},{type:24,count:20} ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [ 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 2, 14, 2, 1, 1, 1,
1, 2, 2, 1, 1, 1, 2, 2, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
5, 1, 1, 2, 1, 2, 1, 1, 2,
5, 1, 1, 1, 1, 1, 1, 1, 2,
5, 1, 1, 4, 4, 4, 1, 1, 2,
5, 1, 1, 4, 4, 4, 1, 1, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//763
{ baseElementTypes: [ 0, 1, 2, 3 ], bubbleProbability: 0, stepCount: 19, passTarget: { type: 1, elements: [ { type: 42, count: 8 }, { type: 43, count: 2 }, { type: 44, count: 2 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
61, 61, 3, 0, 0, 0, 3, 6, 6,
61, 3, 61, 3, 3, 3, 6, 3, 6,
3, 3, 0, 3, 3, 3, 0, 3, 3,
3, 3, 0, 3, 3, 3, 0, 3, 3,
3, 3, 0, 3, 3, 3, 0, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
6, 3, 3, 3, 3, 3, 3, 3, 61,
6, 6, 3, 0, 0, 0, 3, 61, 61 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
4, 4, 1, 1, 1, 1, 1, 4, 4,
4, 1, 1, 4, 1, 4, 1, 1, 4,
2, 1, 1, 4, 1, 4, 1, 1, 2,
2, 1, 1, 4, 1, 4, 1, 1, 2,
2, 1, 1, 1, 14, 1, 1, 1, 2,
2, 1, 1, 1, 1, 1, 1, 1, 2,
2, 23, 23, 1, 1, 1, 23, 23, 2,
1, 23, 23, 2, 2, 2, 23, 23, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 44, dir: "up", luidx: 55 }, { type: 44, dir: "up", luidx: 60 }, { type: 43, dir: "up", luidx: 48 }, { type: 43, dir: "up", luidx: 12 }, { type: 42, dir: "up", luidx:18 }, { type: 42, dir: "up", luidx: 26 }, { type: 42, dir: "up", luidx: 16 }, { type: 42, dir: "up", luidx: 10 } ,{ type: 42, dir: "up", luidx:45 },{ type: 42, dir: "up", luidx:53 },{ type: 42, dir: "left", luidx:46 } ,{ type: 42, dir: "right", luidx:51 }], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null }, { index: 12, type: null }, { index: 13, type: null }, { index: 14, type: null } ] } },
//764
{ baseElementTypes: [ 4, 2, 3, 0 ], bubbleProbability: 0, stepCount: 26, passTarget: { type: 1, elements: [ { type: 9, count: 57 }, { type: 1, count: 65 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 0, 0, 0, 0, 0,
3, 1, 3, 3, 3, 3, 1, 0, 0,
1, 3, 3, 3, 3, 3, 3, 3, 2,
3, 3, 3, 3, 3, 3, 3, 0, 0,
1, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 0, 0,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 1, 3, 3, 3, 3, 1, 0, 0,
3, 3, 3, 3, 0, 0, 0, 0, 0 ], connectedLats: [[26,44],[44,62]], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [ [ 18, 36, 54 ] ], elements: [
1, 1, 2, 1, 1, 1, 1, 1, 1,
1, 6, 1, 2, 4, 15, 6, 1, 1,
21, 1, 2, 4, 1, 1, 1, 22, 22,
1, 2, 4, 1, 1, 1, 1, 1, 1,
21, 1, 1, 1, 1, 1, 1, 22, 22,
1, 2, 4, 1, 1, 1, 1, 1, 1,
1, 1, 2, 4, 1, 1, 1, 22, 22,
1, 6, 1, 2, 4, 15, 6, 1, 1,
1, 1, 2, 1, 1, 1, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 13, type: null }, { index: 14, type: null }, { index: 15, type: null }, { index: 25, type: null }, { index: 26, type: null } ] } },
//765
{ baseElementTypes: [ 0, 1, 3, 4 ], bubbleProbability: 0, stepCount: 22, passTarget: { type: 1, elements: [ { type: 44, count:5 } ,{ type: 45, count:2 },{ type: 42, count:4 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
61, 3, 3, 3, 6, 3, 3, 3, 3,
3, 61, 3, 3, 3, 6, 3, 3, 3,
3, 3, 61, 3, 3, 3, 6, 3, 3,
3, 3, 3, 61, 3, 3, 3, 6, 3,
6, 3, 3, 3, 61, 3, 3, 3, 6,
3, 6, 3, 3, 3, 61, 3, 3, 3,
3, 3, 6, 3, 3, 3, 61, 3, 3,
3, 3, 3, 6, 3, 3, 3, 61, 3,
3, 3, 3, 3, 6, 3, 3, 3, 61 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
4, 1, 1, 1, 1, 2, 2, 2, 2,
4, 1, 1, 23, 23, 1, 2, 2, 2,
4, 1, 1, 23, 23, 1, 1, 2, 2,
4, 1, 1, 1, 1, 23, 23, 1, 2,
1, 1, 1, 1, 1, 23, 23, 1, 1,
9, 1, 1, 1, 1, 1, 1, 23, 23,
9, 9, 1, 1, 1, 1, 1, 23, 23,
9, 9, 9, 1, 1, 1, 1, 1, 1,
9, 9, 9, 9, 1, 4, 4, 4, 4 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 44, dir: "up", luidx: 12 }, { type: 44, dir: "up", luidx: 32 }, { type: 44, dir: "up", luidx: 52 }, { type: 45, dir: "up", luidx: 6 }, { type: 42, dir: "up", luidx:9 },{ type: 44, dir: "up", luidx:58 },{ type: 42, dir: "up", luidx: 2 },{ type: 42, dir: "up", luidx: 69 },{ type: 42, dir: "up", luidx: 48 },{ type: 44, dir: "up", luidx: 28 },{ type: 45, dir: "left", luidx: 54 } ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//766
{ baseElementTypes: [ 3, 4, 2, 0 ], bubbleProbability: 0, stepCount: 27, passTarget: { type: 1, elements: [ { type: 42, count:10 }, { type: 43, count: 2 },{ type: 45, count: 4 }] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
1, 1, 1, 4, 4, 4, 1, 1, 1,
5, 1, 1, 4, 4, 4, 1, 1, 5,
5, 1, 1, 4, 4, 4, 1, 1, 5,
5, 2, 2, 2, 2, 2, 2, 2, 5,
1, 8, 8, 8, 11, 8, 8, 8, 1,
1, 1, 13, 13, 13, 13, 13, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 10, type: null }, { index: 11, type: null }, { index: 15, type: null }, { index: 16, type: null }, { index: 36, type: null }, { index: 44, type: null } ] } },
//791
{ baseElementTypes: [ 0, 1, 3, 4 ], bubbleProbability: 0, stepCount: 21, passTarget: { type: 1, elements: [ { type: 9, count: 67 },{type:4,count:105} ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 1, 3, 3, 3, 3,
61, 4, 61, 0, 0, 0, 0, 0, 0,
3, 3, 3, 3, 1, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [ [ 22, 49 ], [ 32, 50 ], [ 33, 51 ], [ 34, 52 ], [ 35, 53 ] ], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
2, 2, 2, 1, 1, 1, 2, 2, 2,
2, 2, 1, 1, 1, 1, 1, 2, 2,
3, 0, 3, 0, 3, 3, 3, 3, 3,
0, 3, 0, 0, 3, 0, 0, 0, 0,
3, 3, 3, 3, 0, 3, 3, 3, 3,
3, 3, 3, 3, 0, 3, 3, 3, 3,
0, 3, 3, 3, 0, 3, 3, 3, 0,
3, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [ [ 33, 51 ], [ 34, 52 ], [ 35, 53 ]], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
2, 15, 1, 15, 1, 15, 1, 15, 2,
2, 1, 1, 1, 1, 1, 1, 1, 2,
2, 1, 14, 1, 1, 1, 14, 1, 2,
2, 1, 9, 1, 1, 1, 1, 1, 2,
1, 9, 1, 1, 9, 1, 1, 1, 1,
2, 1, 1, 1, 1, 1, 1, 1, 2,
1, 1, 1, 1, 6, 1, 1, 1, 1,
2, 1, 1, 4, 1, 4, 1, 1, 2,
1, 1, 4, 1, 1, 1, 4, 1, 1,
9, 4, 1, 1, 11, 1, 1, 4, 9 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//792
{ baseElementTypes: [ 0, 2, 4, 3 ], bubbleProbability: 0, stepCount: 25, passTarget: { type: 1, elements: [ { type: 41, count: 59 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
91, 1, 1, 1, 1, 1, 1, 1, 9,
1, 0, 1, 1, 1, 1, 1, 0, 1,
1, 0, 1, 1, 1, 1, 1, 0, 1,
1, 0, 1, 1, 1, 1, 1, 0, 1,
1, 0, 1, 1, 1, 1, 1, 0, 1,
1, 4, 1, 1, 1, 1, 1, 4, 1,
1, 41, 1, 1, 1, 1, 1,41, 1,
1, 0, 0, 0, 1, 0, 0, 0, 1,
1, 0, 0, 0, 1, 0, 0, 0, 1 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 6, 1, 1, 1, 1,
4, 1, 1, 1, 1, 1, 1, 1, 4,
4, 4, 1, 1, 1, 1, 1, 4, 4,
4, 4, 4, 1, 1, 1, 4, 4, 4 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 42, dir: "up", luidx:3 }, { type: 42, dir: "up", luidx: 4 }, { type: 42, dir: "up", luidx: 5 }, { type: 42, dir: "left", luidx: 27 }, { type: 42, dir: "left", luidx: 29 },{ type: 43, dir:"up", luidx: 0 }, { type: 45, dir:"up", luidx: 63 }, { type: 42, dir: "up", luidx: 66 }, { type: 45, dir: "up", luidx: 69 }, { type: 42, dir: "up", luidx: 68 },{ type: 43, dir: "up", luidx: 6 },{ type: 42, dir: "up", luidx: 67 },{ type: 45, dir: "up", luidx: 45 },{ type: 45, dir: "up", luidx:51 },{ type: 42, dir: "right", luidx:32 },{ type: 42, dir: "right", luidx:34 } ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//767
{ baseElementTypes: [ 0, 2, 4, 1 ], bubbleProbability: 0, stepCount: 20, passTarget: { type: 1, elements: [ { type: 36, count: 54 }, { type: 34, count: 20 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 0, 0, 7, 7, 7, 0, 0, 0,
7, 7, 0, 7, 7, 7, 0, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 4, 0, 4, 7, 7, 7,
7, 7, 7, 0, 0, 0, 7, 7, 7,
7, 7, 7, 4, 4, 4, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7,
0, 0, 0, 0, 0, 0, 0, 0, 0 ], connectedLats: [ [ 31, 58 ] ], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 11, 1, 1, 1, 1,
1, 1, 1, 1, 14, 1, 1, 1, 1,
4, 4, 1, 1, 1, 1, 1, 4, 4,
5, 2, 1, 16, 1, 16, 1, 2, 5,
5, 2, 1, 1, 1, 1, 1, 2, 5,
5, 2, 1, 16, 1, 16, 1, 2, 5,
5, 2, 1, 2, 2, 2, 1, 2, 5,
1, 1, 1, 1, 1, 1, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 9, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 17, type: null }, { index: 10, type: null }, { index: 20, type: null }, { index: 24, type: null }, { index: 16, type: null } ] } },
//768
{ baseElementTypes: [ 0, 2, 4, 3 ], bubbleProbability: 0, stepCount: 24, passTarget: { type: 1, elements: [ { type: 6, count: 10 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
1, 1, 1, 1, 1, 1, 1, 1, 0,
1, 1, 1, 0, 0, 1, 1, 1, 1,
1, 1, 0, 0, 0, 0, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
0, 1, 1, 1, 1, 1, 1, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0 ], connectedLats: [[3,30],[4,31]], conveyor: [ [ 64, 37 ], [ 28, 32 ], [ 33, 60 ], [ 69, 65 ] ], conveyorConnectedLats: [ [ 37, 28 ], [ 32, 33 ], [ 60, 69 ], [ 65, 64 ] ], WORMHOLE: [], elements: [
3, 1, 1, 1, 1, 1, 1, 3, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 1, 1, 1, 1, 1, 1, 2, 1,
1, 1, 2, 6, 2, 6, 2, 1, 1,
2, 2, 1, 1, 1, 1, 1, 2, 1,
1, 1, 1, 1, 1, 1, 2, 1, 1,
4, 2, 1, 1, 1, 1, 1, 4, 4,
1, 1, 2, 1, 2, 1, 2, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [ 54, 61, 62, 64,69 ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 17, type: null } ] } },
//769
{ baseElementTypes: [ 3, 4, 2, 1 ], bubbleProbability: 0, stepCount: 24, passTarget: { type: 1, elements: [ { type: 9, count: 71 }, { type: 1, count: 102} ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 0, 0, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 0, 3, 3, 3,
3, 0, 61, 6, 61, 3, 3, 3, 3,
3, 3, 3, 0, 3, 0, 3, 3, 3,
3, 0, 6, 61, 6, 3, 3, 3, 3,
3, 3, 3, 3, 3, 0, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 0, 0, 3, 3 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
4, 1, 1, 1, 1, 1, 1, 1, 2,
1, 1, 23, 23, 1, 4, 1, 1, 2,
1, 1, 23, 23, 1, 1, 1, 1, 2,
1, 1, 4, 1, 4, 1, 1, 2, 2,
1, 11, 1, 1, 1, 1, 1, 1, 14,
1, 1, 4, 1, 4, 1, 1, 2, 2,
1, 1, 23, 23, 1, 1, 1, 1, 2,
1, 1, 23, 23, 1, 4, 1, 1, 2,
4, 1, 1, 1, 1, 1, 1, 1, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 7, type: null }, { index: 8, type: null }, { index: 14, type: null }, { index: 15, type: null } ] } },
//770
{ baseElementTypes: [ 0, 2, 3, 1 ], bubbleProbability: 0, stepCount: 28, passTarget: { type: 1, elements: [ { type: 22, count: 21 }, { type: 24, count: 21 }, { type: 23, count: 21} ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [ 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
13, 4, 1, 1, 1, 1, 1, 4, 13,
13, 4, 1, 1, 1, 1, 1, 4, 13,
13, 4, 1, 1, 12, 1, 1, 4, 13,
13, 4, 1, 1, 1, 1, 1, 4, 13,
1, 1, 2, 2, 2, 2, 2, 1, 1,
1, 9, 1, 5, 5, 5, 1, 9, 1,
1, 1, 9, 5, 5, 5, 9, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 2, type: null }, { index: 3, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 9, type: null }, { index: 10, type: null }, { index: 13, type: null }, { index: 16, type: null }, { index: 17, type: null } ] } },
//771
{ baseElementTypes: [ 1, 2, 4, 3, 0 ], bubbleProbability: 0, stepCount: 27, passTarget: { type: 1, elements: [ { type: 43, count:2 }, { type: 45, count: 3 },{ type: 42, count: 7 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 1, 3, 3, 3, 3, 3, 1, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
0, 3, 3, 3, 3, 3, 3, 3, 0,
0, 3, 3, 3, 3, 3, 3, 3, 0,
0, 3, 3, 3, 0, 3, 3, 3, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [ [ 1, 2, 3 ], [ 5, 6, 7 ] ], elements: [
1, 19, 2, 1, 1, 1, 2, 19, 1,
1, 1, 4, 4, 1, 4, 4, 1, 1,
2, 1, 4, 4, 1, 4, 4, 1, 2,
1, 2, 4, 4, 1, 4, 4, 2, 1,
1, 9, 4, 4, 4, 4, 4, 9, 1,
1, 1, 1, 1, 9, 1, 1, 1, 1,
2, 1, 1, 1, 9, 1, 1, 1, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//793
{ baseElementTypes: [ 0,3, 4, 2 ], bubbleProbability: 0, stepCount: 26, passTarget: { type: 1, elements: [ { type: 9, count: 75 } ] }, starScores: [ 15000, 20000, 250000 ], map: { lattices: [
61, 3, 3, 3, 0, 3, 3, 3, 61,
61, 3, 3, 3, 0, 3, 3, 3, 61,
61, 3, 3, 3, 3, 3, 3, 3, 61,
61, 3, 3, 3, 3, 3, 3, 3, 61,
0, 3, 6, 61, 6, 61, 6, 3, 0,
6, 3, 3, 3, 3, 3, 3, 3, 6,
6, 3, 3, 3, 3, 3, 3, 3, 6,
6, 3, 3, 3, 0, 3, 3, 3, 6,
6, 3, 3, 3, 0, 3, 3, 3, 6 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
4, 1, 1, 1, 1, 1, 1, 1, 4,
4, 1, 1, 1, 1, 1, 1, 1, 4,
4, 2, 1, 1, 14, 1, 1, 2, 4,
4, 2, 1, 1, 1, 1, 1, 2, 4,
1, 2, 1, 1, 1, 1, 1, 2, 1,
1, 2, 7, 7, 7, 7, 7, 2, 1,
1, 2, 7, 7, 14, 7, 7, 2, 1,
1, 1, 9, 1, 1, 1, 4, 1, 1,
1, 9, 1, 9, 1, 4, 1, 4, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//794
{ baseElementTypes: [ 0, 1, 4, 3 ], bubbleProbability: 0, stepCount: 28, passTarget: { type: 1, elements: [ { type: 6, count: 10 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
1, 0, 1, 0, 1, 0, 1, 0, 1,
0, 1, 0, 1, 0, 1, 0, 1, 0,
0, 0, 1, 0, 0, 0, 1, 0, 0,
0, 1, 1, 1, 0, 1, 1, 1, 0,
0, 1, 1, 0, 1, 0, 1, 1, 0,
1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 1, 2, 1, 1, 1, 2, 1, 2,
2, 1, 2, 1, 1, 1, 2, 1, 2,
2, 1, 2, 1, 1, 1, 2, 1, 2,
2, 2, 2, 4, 4, 4, 2, 2, 2,
1, 1, 23, 23, 11, 23, 23, 1, 1,
1, 1, 23, 23, 1, 23, 23, 1, 1,
1, 22, 22, 22, 1, 22, 22, 22, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 43, dir: "up", luidx: 55 }, { type: 43, dir: "up", luidx: 59 }, { type: 45, dir: "up", luidx: 36 }, { type: 45, dir: "up", luidx: 39 }, { type: 45, dir:"up", luidx: 42 }, { type: 42, dir: "up", luidx: 18 }, { type: 42, dir: "up", luidx: 22 }, { type: 42, dir: "up", luidx: 24 }, { type: 42, dir: "up", luidx: 26 },{ type: 42, dir: "up", luidx: 0 },{ type: 42, dir: "up", luidx: 8 },{ type: 42, dir: "up", luidx: 20 },], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//772
{ baseElementTypes: [ 0, 1, 3, 4 ], bubbleProbability: 0, stepCount: 20, passTarget: { type: 1, elements: [ { type: 41, count: 61 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
0, 4, 1, 1, 4, 1, 1, 4, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
3, 1, 1, 1, 1, 1, 1, 1, 3,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
8, 1, 0, 0, 0, 0, 0, 1, 8,
0, 1, 1, 1, 1, 1, 1, 1, 0,
0, 1, 0, 0, 0, 0, 0, 1, 0,
0, 1, 1, 1, 1, 1, 1, 1, 0,
0, 1, 1, 1, 1, 1, 1, 1, 0 ], connectedLats: [ [ 30, 48 ], [ 31, 49 ], [ 32, 50 ], [ 48, 66 ], [ 49, 67 ], [ 50, 68 ] ], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [ [ 75, 21 ], [ 76, 22 ], [ 77, 23 ] ], elements: [
2, 4, 1, 1, 1, 1, 1, 4, 2,
2, 4, 1, 1, 1, 1, 1, 4, 2,
2, 4, 1, 1, 14, 1, 1, 4, 2,
2, 1, 1, 11, 1, 1, 1, 1, 2,
1, 4, 1, 1, 1, 1, 1, 4, 1,
1, 1, 4, 1, 1, 1, 4, 1, 1,
2, 4, 1, 4, 1, 4, 1, 4, 2,
2, 1, 1, 1, 1, 1, 1, 1, 2,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 9, 1, 4, 4, 4, 1, 9, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//773
{ baseElementTypes: [ 0, 1, 2, 3 ], bubbleProbability: 0, stepCount: 26, passTarget: { type: 1, elements: [ { type: 44, count: 4 }, { type: 43, count: 2 }] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 3, 3, 6, 3, 6, 3, 3, 0,
0, 3, 3, 61, 3, 61, 3, 3, 0,
0, 3, 3, 6, 3, 6, 3, 3, 0,
0, 3, 3, 61, 3, 61, 3, 3, 0,
0, 61, 3, 6, 3, 6, 3, 61, 0,
6, 3, 6, 61, 6, 61, 6, 3, 6,
3, 3, 3, 6, 3, 6, 3, 3, 3,
3, 3, 3, 61, 3, 61, 3, 3, 3,
3, 3, 3, 6, 3, 6, 3, 3, 3 ], connectedLats: [], conveyor: [ [ 4, 76 ] ], conveyorConnectedLats: [ [ 76, 4 ] ], WORMHOLE: [], elements: [
1, 2, 1, 1, 1, 1, 1, 2, 1,
1, 2, 1, 1, 1, 1, 1, 2, 1,
1, 2, 1, 1, 1, 1, 1, 2, 1,
1, 2, 1, 1, 1, 1, 1, 2, 1,
1, 2, 1, 1, 14, 1, 1, 2, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
4, 1, 4, 1, 1, 1, 4, 1, 4,
4, 4, 1, 1, 1, 1, 1, 4, 4,
4, 1, 4, 1, 1, 1, 4, 1, 4 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 44, dir: "up", luidx: 1 }, { type: 44, dir: "down", luidx: 19 }, { type: 44, dir: "up", luidx: 24 }, { type: 43, dir: "up", luidx: 54 }, { type: 43, dir:"up", luidx: 60 },{ type: 44, dir: "down", luidx: 6 }], generateLats: [ { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 45, type: null }, { index: 53, type: null } ] } },
//774
{ baseElementTypes: [ 0, 4, 2, 3 ], bubbleProbability: 0, stepCount: 25, passTarget: { type: 1, elements: [ { type: 44, count: 8 } ,{ type: 43, count: 2 } ,{ type: 42, count: 3 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 3, 3, 3, 3,
2, 1, 1, 1, 1, 1, 1, 1, 2,
1, 1, 2, 2, 1, 2, 2, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [ 63, 71, 73, 74, 75, 76, 77, 78, 79 ], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 2, type: null }, { index: 4, type: null }, { index: 6, type: null }, { index: 8, type: null }, { index: 10, type: null }, { index: 12, type: null }, { index: 14, type: null }, { index: 16, type: null } ] } },
//795
{ baseElementTypes: [ 1, 2, 3, 4 ], bubbleProbability: 0, stepCount: 23, passTarget: { type: 1, elements: [ { type: 42, count: 8 } ,{ type: 43, count: 3 },{ type: 44, count: 2 }] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 3, 3, 3, 3, 3,
0, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 1, 3, 3,
6, 61, 6, 61, 6, 61, 6, 61, 6,
3, 3, 1, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 0, 3, 3 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 1, 1, 1, 1, 2, 1, 2,
1, 1, 1, 1, 4, 1, 4, 2, 1,
1, 1, 23, 23, 1, 4, 1, 4, 2,
4, 1, 23, 23, 1, 1, 6, 1, 4,
9, 1, 1, 1, 1, 1, 1, 1, 9 ,
4, 1, 6, 11, 1, 23, 23, 1, 4,
15, 4, 1, 1, 1, 23, 23, 1, 1,
4, 15, 4, 1, 1, 1, 1, 1, 4,
15, 4, 15, 4, 1, 1, 1, 4, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 44, dir: "up", luidx: 20 }, { type: 44, dir: "up", luidx: 50 }, { type: 43, dir: "up", luidx: 54 }, { type: 43, dir:"up", luidx: 6 }, { type: 44, dir: "up", luidx: 22 },{ type: 44, dir: "up", luidx: 0 },{ type: 44, dir: "up", luidx: 2 },{ type: 44, dir: "up", luidx: 4 },{ type: 44, dir: "up", luidx: 70 },{ type: 44, dir: "up", luidx: 52 },{ type: 42, dir: "right", luidx: 27 },{ type: 42, dir: "left", luidx: 34 },{ type: 42, dir: "right", luidx:45 } ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//775
{ baseElementTypes: [ 0, 2, 3, 4 ], bubbleProbability: 0, stepCount: 25, passTarget: { type: 1, elements: [ { type: 36, count: 66 } ,{type:1,count:70}] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7,
0, 7, 7, 7, 7, 7, 7, 7, 0,
0, 0, 0, 7, 7, 7, 0, 7, 0,
7, 7, 7, 7, 0, 7, 7, 7, 7,
4, 7, 7, 7, 7, 7, 7, 7, 4,
4, 7, 7, 7, 0, 7, 7, 7, 4,
4, 7, 7, 7, 7, 7, 7, 7, 4,
7, 7, 7, 7, 7, 7, 7, 7, 7 ], connectedLats: [[9,36],[17,44],[19,37]], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
3, 61, 61, 3, 3, 3, 61, 61, 3,
6, 3, 3, 3, 3, 3, 3, 3, 6,
6, 3, 3, 0, 0, 0, 3, 3, 6,
6, 3, 0, 3, 3, 3, 0, 3, 6,
6, 3, 0, 3, 3, 3, 0, 3, 6,
3, 3, 3, 3, 3, 3, 3, 3, 3 ], connectedLats: [ [ 40, 58 ] ], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
2, 1, 2, 1, 1, 1, 2, 1, 2,
1, 23, 23, 1, 1, 1, 23, 23, 1,
1, 23, 23, 1, 1, 1, 23, 23, 1,
1, 4, 4, 1, 14, 1, 4, 4, 1,
2, 1, 1, 1, 1, 1, 1, 1, 2,
2, 1, 1, 1, 1, 1, 1, 1, 2,
9, 1, 1, 1, 1, 1, 1, 1, 9,
9, 1, 1, 1, 1, 1, 1, 1, 9,
2, 2, 2, 1, 1, 1, 2, 2, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata:
[ { type: 43, dir: "up", luidx: 1 },
{ type: 43, dir: "up", luidx: 5 },
{ type: 43, dir: "up", luidx: 57 },
{ type: 42, dir: "up", luidx: 0 },
{ type: 42, dir: "up", luidx: 18 },
{ type: 42, dir: "up", luidx: 4 },
{ type: 42, dir: "up", luidx: 22 },
{ type: 42, dir: "up", luidx: 8 },
{ type: 42, dir: "up", luidx: 26 },
{ type: 42, dir: "left", luidx: 72 },
{ type: 42, dir: "right", luidx: 79 },
{ type: 44, dir: "up", luidx: 37 },
{ type: 44, dir:"up", luidx: 42 } ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//796
{ baseElementTypes: [ 0, 1, 3, 4 ], bubbleProbability: 0, stepCount: 21, passTarget: { type: 1, elements: [ { type: 41, count: 68 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 6, 1, 14, 1, 6, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
0, 1, 1, 1, 1, 1, 1, 1, 0,
1, 0, 1, 1, 1, 1, 1, 0, 1,
1, 1, 0, 1, 1, 1, 0, 1, 1,
4, 1, 1, 4, 1, 41, 1, 1, 41,
4, 1, 1, 1, 8, 1, 1, 1,41,
4, 1, 1, 4, 1, 41, 1, 1, 41,
4, 1, 1, 0, 0, 0, 1, 1, 41,
4, 1, 1, 0, 0, 0, 1, 1, 41 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
2, 7, 7, 7, 7, 7, 7, 7, 2,
1, 2, 7, 7, 7, 7, 7, 2, 1,
0, 1, 2, 7, 7, 7, 2, 1, 0,
0, 0, 1, 7, 7, 7, 1, 0, 0,
5, 0, 0, 4, 4, 4, 0, 0, 2,
5, 0, 0, 4, 4, 4, 0, 0, 2,
5, 0, 0, 4, 4, 4, 0, 0, 2,
5 ,0, 0, 1, 1, 1, 0, 0, 2,
5, 0, 0, 1, 1, 1, 0, 0, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//797
{ baseElementTypes: [ 0, 2, 3, 4 ],
bubbleProbability: 0, stepCount: 28,
passTarget: { type: 1, elements: [
{ type: 9, count: 68 },
{ type: 10, count: 6 },{type:1,count:62}] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
0, 3, 3, 3, 3, 3, 3, 3, 0,
0, 3, 3, 3, 3, 3, 3, 3, 0,
3, 61, 3, 3, 3, 3, 3, 4, 3,
3, 3, 61, 3, 3, 3, 4, 3, 3,
3, 3, 3, 61, 3, 4, 3, 3, 3,
3, 3, 3, 3, 0, 3, 3, 3, 3,
3, 3, 3, 4, 3, 61, 3, 3, 3,
3, 3, 4, 3, 3, 3, 61, 3, 3,
0, 4, 3, 3, 3, 3, 3, 61, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
1, 1, 2, 1, 1, 1, 2, 1, 1,
1, 1, 2, 1, 14, 1, 2, 1, 1,
1, 8, 1, 2, 1, 2, 1, 6, 1,
1, 1, 8, 1, 2, 1, 6, 1, 1,
1, 1, 1, 8, 1, 6, 1, 1, 1,
4, 1, 1, 1, 1, 1, 1, 1, 4,
5, 1, 1, 1, 6, 1, 1, 1, 5,
5, 1, 1, 1, 1, 1, 1, 1, 5,
5, 1, 2, 4, 1, 4, 2, 1, 5,
2, 2, 6, 4, 1, 4, 6, 2, 2 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
4, 1, 1, 6, 1, 8, 1, 1, 4,
4, 4, 6, 1, 1, 1, 8, 4, 4,
1, 6, 1, 1, 1, 1, 1, 8, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 18, type: null }, { index: 26, type: null } ] } },
//798
{ baseElementTypes: [ 1, 2, 3, 4 ], bubbleProbability: 0, stepCount: 25, passTarget: { type: 1, elements: [ { type: 23, count: 22 }, { type: 24, count: 22 }, { type: 26, count: 22 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [ 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 1, 1, 1, 1, 1, 2, 1, 4, 1, 2, 1, 1, 1, 1, 2, 1, 4, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 15, 15, 2, 1, 14, 1, 2, 15, 15, 1, 1, 4, 4, 11, 4, 4, 1, 1, 1, 1, 13, 13, 13, 13, 13, 1, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 10, type: null }, { index: 16, type: null }, { index: 18, type: null }, { index: 26, type: null } ] } },
//799
{ baseElementTypes: [ 1, 0, 3, 4 ], bubbleProbability: 0, stepCount: 30, passTarget: { type: 1, elements: [ { type: 9, count: 73 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [ 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 6, 3, 6, 3, 6, 3, 6, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 0, 3, 3, 3, 3, 3, 3, 3, 0, 3, 6, 3, 6, 3, 6, 3, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 0, 3, 1, 3, 3, 3, 3, 3, 1, 3 ], connectedLats: [ [ 27, 45 ], [ 35, 53 ] ], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [ [ 73, 75, 77, 79 ] ], elements: [
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 22, 1, 22, 1, 1, 1,
1, 22, 1, 1, 1, 1, 1, 22, 1,
1, 1, 1, 22, 1, 22, 1, 1, 1,
1, 22, 1, 1, 1, 1, 1, 22, 1,
1, 1, 1, 1, 2, 1, 1, 1, 1,
1, 1, 1, 2, 2, 2, 1, 1, 1,
1, 18, 2, 2, 2, 2, 2, 18, 1 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 4, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null } ] } },
//800
{ baseElementTypes: [ 0, 2, 3, 4 ], bubbleProbability: 0, stepCount: 25, passTarget: { type: 1, elements: [ { type: 43, count: 2 }, { type: 44, count: 6 }, { type: 45, count: 2 } ] }, starScores: [ 15000, 20000, 25000 ], map: { lattices: [
3, 3, 3, 3, 0, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 0, 3, 3, 3, 3, 3, 0, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 6, 3, 3, 3, 3,
3, 3, 3, 3, 6, 3, 3, 3, 3,
0, 3, 3, 3, 3, 3, 3, 3, 0,
3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 0, 3, 3, 3, 0, 3, 3 ], connectedLats: [], conveyor: [], conveyorConnectedLats: [], WORMHOLE: [], elements: [
2, 2, 2, 1, 1, 1, 2, 2, 2,
2, 2, 2, 1, 1, 1, 2, 2, 2,
2, 1, 2, 1, 1, 1, 2, 1, 2,
1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 23, 23, 9, 23, 23, 1, 1,
1, 1, 23, 23, 9, 23, 23, 1, 1,
1, 4, 1, 1, 14, 1, 1, 4, 1,
4, 4, 1, 1, 1, 1, 1, 4, 4,
9, 4, 1, 1, 1, 1, 1, 4, 9 ], baseElements: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], recycles: [], foodsdata: [ { type: 45, dir: "up", luidx: 0 }, { type: 45, dir: "up", luidx: 6 }, { type: 43, dir: "up", luidx: 12 }, { type: 44, dir: "up", luidx: 38 }, { type: 44, dir: "up", luidx: 41 }, { type: 44, dir: "up", luidx: 63 }, { type: 44, dir: "up", luidx: 70 }, { type: 43, dir: "up", luidx: 57 }, { type: 44, dir: "up", luidx: 36 }, { type: 44, dir: "up", luidx: 43 } ], generateLats: [ { index: 0, type: null }, { index: 1, type: null }, { index: 2, type: null }, { index: 3, type: null }, { index: 5, type: null }, { index: 6, type: null }, { index: 7, type: null }, { index: 8, type: null }, { index: 13, type: null } ] } },
]
......@@ -72,9 +72,10 @@ export class Element extends eui.Component {
}
}
async nextFishState() {
// console.log("河豚充能");
// console.log("河豚充能",this.hasState(StateType.BLOCK_LOCK),this.index);
await wait(1000);
this._fishState++;
// console.log(this._fishState,this.index);
if (this._fishState == 1) {
this['fish'].toActive();
}
......
......@@ -60,7 +60,7 @@ export default class Food extends eui.Component{
var icol:number = [this.usecol,this.userow][inidx];
//row和col反了
console.log(this.type+'食物占位'+inidx+'row:'+irow+';col:'+icol);
// console.log(this.type+'食物占位'+inidx+'row:'+irow+';col:'+icol);
this.lockidxs = new Array();
this.freeidxs = new Array();
for(var i=0;i<icol;i++){
......@@ -70,7 +70,7 @@ export default class Food extends eui.Component{
this.lockidxs.push(latidx);
}
}
console.log('解锁idxs',this.lockidxs);
// console.log('解锁idxs',this.lockidxs);
this.showImage.rotation = roa;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment