Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xiaoxiaole
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wildfirecode13
xiaoxiaole
Commits
4e4f00de
Commit
4e4f00de
authored
Dec 21, 2019
by
wildfirecode
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
727383da
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1535 additions
and
24 deletions
+1535
-24
index.html
egret/index.html
+2
-2
MainScene.ts
egret/src/mainScene/MainScene.ts
+12
-6
BaseBlock.ts
egret/src/something/block/BaseBlock.ts
+18
-11
genBlockDisplay.ts
egret/src/something/block/genBlockDisplay.ts
+11
-3
Chapter12.ts
egret/src/something/chapters/Chapter12.ts
+370
-0
Chapter13.ts
egret/src/something/chapters/Chapter13.ts
+88
-0
getChapter.ts
egret/src/something/chapters/getChapter.ts
+2
-0
AiControl.ts
egret/src/something/logic/AiControl.ts
+1
-1
home.json
mock/happyclear/home.json
+1031
-1
No files found.
egret/index.html
View file @
4e4f00de
...
...
@@ -133,8 +133,8 @@
];
// localStorage.clear();
window
[
'imgver'
]
=
'11112'
window
[
'total_level'
]
=
18
+
13
*
1
6
;
window
[
'last_level'
]
=
2
25
;
//必须大于等于total_level
window
[
'total_level'
]
=
18
+
13
*
1
8
;
window
[
'last_level'
]
=
2
50
;
//必须大于等于total_level
// localStorage.clear();
...
...
egret/src/mainScene/MainScene.ts
View file @
4e4f00de
...
...
@@ -935,6 +935,7 @@ export default class MainScene extends Scene {
var
ele
=
e
.
target
.
parent
if
(
ele
instanceof
Element
&&
// ele.type != ElementType.ROCK &&
!
ele
.
hasState
(
StateType
.
BLOCK_LOCK
)
&&
//石门无法消除
ele
.
type
!=
ElementType
.
LOLLIPOP
)
{
this
.
elementContainer
.
removeEventListener
(
egret
.
TouchEvent
.
TOUCH_BEGIN
,
fun
,
this
);
var
index
=
ele
.
index
;
...
...
@@ -1799,14 +1800,14 @@ export default class MainScene extends Scene {
/**
* 掉落完后的操作
*/
fallCallback
()
{
async
fallCallback
()
{
//掉落后有消除,执行消除
if
(
this
.
threeMatch
())
{
this
.
eliminate
()
return
}
//消除结束之后检查石门
this
.
checkAllBlock
();
await
this
.
checkAllBlock
();
//鸡蛋的ai操作,存在判断三消,毛球的ai,也一样,所以放前面,存在三消时都直接执行eliminate了。不执行后续的回调
AiControl
.
ins
.
eggMotion
(
this
,
()
=>
{
//后执行毛球跳动
...
...
@@ -1886,9 +1887,14 @@ export default class MainScene extends Scene {
}
checkAllBlock
()
{
this
.
lattices
.
filter
(
item
=>
item
.
block
).
forEach
((
item
)
=>
{
item
.
block
.
nextState
();
});
// this.lattices.filter(item => item.block).forEach((item) => {
// item.block.nextState();
// });
return
Promise
.
all
(
this
.
lattices
.
filter
(
item
=>
item
.
block
).
map
((
item
)
=>
{
return
item
.
block
.
nextState
();
})
)
}
/**
* 果冻蔓延和气泡变色需要重新检查死图
...
...
@@ -2132,7 +2138,7 @@ export default class MainScene extends Scene {
//暂时笼子不算个数,算的话,改图片名称,列入ElementType的状态下
}
else
if
(
ele
.
hasState
(
StateType
.
BLOCK_LOCK
))
{
ele
.
setState
(
StateType
.
BLOCK_LOCK
,
false
);
//这里不需要消除石门上的元素的状态,石门上的元素状态只由石门来修改
}
//有褐色毛球的,记录分裂激活
else
if
(
ele
.
hasState
(
StateType
.
HAIRBALLBROWN
))
{
...
...
egret/src/something/block/BaseBlock.ts
View file @
4e4f00de
...
...
@@ -3,8 +3,9 @@ import { Element } from "../class/Element";
import
{
StateType
}
from
"../enum/StateType"
;
export
default
class
BaseBlock
extends
egret
.
DisplayObjectContainer
{
constructor
()
{
constructor
(
state
)
{
super
();
this
.
_state
=
state
;
this
.
initUI
();
}
...
...
@@ -35,11 +36,13 @@ export default class BaseBlock extends egret.DisplayObjectContainer {
private
_element
:
Element
;
set
element
(
val
:
Element
)
{
if
(
this
.
_element
)
{
this
.
_element
.
setState
(
StateType
.
BLOCK_LOCK
,
false
);
this
.
_element
=
null
;
}
if
(
val
)
{
this
.
_element
=
val
;
this
.
updateElementState
();
//刚刚设置元素的时候
}
else
{
}
};
...
...
@@ -52,24 +55,29 @@ export default class BaseBlock extends egret.DisplayObjectContainer {
return
this
.
_state
>=
3
;
}
isLock
()
{
return
this
.
_state
<=
2
;
}
//状态0红门 1蓝门 2黄门 3红 4黄 5蓝
private
_state
=
-
1
;
private
_changing
=
false
;
nextState
(
first
=
false
)
{
async
nextState
(
first
=
false
)
{
//先改数据再改视图
this
.
_state
++
;
if
(
this
.
_state
>
5
)
this
.
_state
=
0
;
this
.
changeState
(
first
);
await
this
.
changeState
(
first
);
}
private
updateElementState
()
{
if
(
!
this
.
_element
)
return
;
if
(
this
.
_state
<=
2
)
{
this
.
_element
.
scaleX
=
0
;
this
.
_element
.
setState
(
StateType
.
BLOCK_LOCK
,
true
);
}
else
{
this
.
_element
.
setState
(
StateType
.
BLOCK_LOCK
,
true
);
}
else
{
this
.
_element
.
scaleX
=
1
;
this
.
_element
.
setState
(
StateType
.
BLOCK_LOCK
,
false
);
this
.
_element
.
setState
(
StateType
.
BLOCK_LOCK
,
false
);
}
}
...
...
@@ -198,6 +206,5 @@ export default class BaseBlock extends egret.DisplayObjectContainer {
egret
.
Tween
.
get
(
obj
,
{
loop
:
true
}).
set
({
alpha
:
0
})
.
to
({
alpha
:
1
},
dur
).
to
({
alpha
:
0
},
dur
)
.
to
({
alpha
:
1
},
dur
).
to
({
alpha
:
0
},
dur
)
// .wait(dur * 3);
}
}
\ No newline at end of file
egret/src/something/block/genBlockDisplay.ts
View file @
4e4f00de
...
...
@@ -4,13 +4,21 @@ import BlockDarkIce from "./BlockDarkIce";
import
BlockIce
from
"./BlockIce"
;
export
default
(
type
:
LatticeType
)
=>
{
const
typestr
=
type
+
''
;
let
_state
=
-
1
;
if
(
typestr
.
length
==
2
)
{
//是门开
const
arr
=
typestr
.
split
(
''
);
type
=
parseInt
(
arr
[
0
]);
// _state=-1;
_state
=
2
;
}
switch
(
type
)
{
case
LatticeType
.
BlOCK
:
return
new
Block
();
return
new
Block
(
_state
);
case
LatticeType
.
BLOCK_AND_ICE
:
return
new
BlockIce
();
return
new
BlockIce
(
_state
);
case
LatticeType
.
BLOCK_AND_DARK_ICE
:
return
new
BlockDarkIce
();
return
new
BlockDarkIce
(
_state
);
default
:
break
;
...
...
egret/src/something/chapters/Chapter12.ts
View file @
4e4f00de
...
...
@@ -260,5 +260,375 @@ export const Chapters12: ChapterData[] = [
{
index
:
32
,
type
:
0
},
]
}
},
//226
{
baseElementTypes
:
[
4
,
3
,
2
,
0
,
1
],
bubbleProbability
:
0
,
stepCount
:
28
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
29
}]
},
starScores
:
[
12000
,
18000
,
22000
],
map
:
{
lattices
:
[
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
0
,
1
,
1
,
1
,
2
,
0
,
2
,
3
,
41
,
1
,
41
,
3
,
2
,
0
,
0
,
0
,
3
,
1
,
1
,
1
,
3
,
0
,
0
,
0
,
2
,
41
,
3
,
3
,
3
,
41
,
2
,
0
,
2
,
1
,
1
,
3
,
0
,
3
,
1
,
1
,
2
,
2
,
1
,
1
,
3
,
3
,
3
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
],
connectedLats
:
[[
18
,
54
],
[
28
,
46
],
[
13
,
31
],
[
49
,
67
],
[
34
,
52
],
[
26
,
62
]],
elements
:
[
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
,
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
],
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
}]
}
},
//227
{
baseElementTypes
:
[
0
,
1
,
2
,
3
],
bubbleProbability
:
0
,
stepCount
:
25
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
41
}]
},
starScores
:
[
5000
,
11000
,
21000
],
map
:
{
lattices
:
[
0
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
1
,
3
,
1
,
0
,
0
,
0
,
0
,
0
,
1
,
3
,
3
,
3
,
1
,
0
,
0
,
0
,
0
,
3
,
3
,
3
,
3
,
3
,
0
,
0
,
0
,
1
,
3
,
3
,
3
,
3
,
3
,
1
,
0
,
0
,
1
,
3
,
3
,
3
,
3
,
3
,
1
,
0
,
1
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
1
,
3
,
3
,
3
,
61
,
3
,
6
,
3
,
3
,
3
,
3
,
3
,
61
,
0
,
0
,
0
,
6
,
3
,
3
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
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
,
1
,
1
,
7
,
7
,
7
,
1
,
1
,
1
,
1
,
1
,
1
,
7
,
4
,
7
,
1
,
1
,
1
,
1
,
1
,
2
,
4
,
4
,
4
,
2
,
1
,
1
,
1
,
2
,
5
,
5
,
5
,
5
,
5
,
2
,
1
,
7
,
7
,
7
,
1
,
1
,
1
,
7
,
7
,
7
],
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
:
4
,
type
:
null
},
{
index
:
12
,
type
:
null
},
{
index
:
14
,
type
:
null
},
{
index
:
20
,
type
:
null
},
{
index
:
24
,
type
:
null
},
{
index
:
37
,
type
:
null
},
{
index
:
43
,
type
:
null
},
{
index
:
54
,
type
:
null
},
{
index
:
62
,
type
:
null
}]
}
},
//228
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
33
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
33
}]
},
starScores
:
[
5000
,
12000
,
21000
],
map
:
{
lattices
:
[
0
,
0
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
1
,
1
,
2
,
2
,
2
,
1
,
1
,
0
,
3
,
1
,
2
,
2
,
0
,
2
,
2
,
1
,
3
,
3
,
1
,
2
,
0
,
1
,
0
,
2
,
1
,
3
,
3
,
1
,
1
,
2
,
0
,
2
,
1
,
1
,
3
,
61
,
1
,
1
,
2
,
52
,
2
,
1
,
1
,
61
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
3
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
3
,
0
,
3
,
3
,
3
,
61
,
3
,
3
,
3
,
0
],
connectedLats
:
[[
20
,
38
],
[
22
,
40
],
[
30
,
48
]],
elements
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
7
,
1
,
1
,
1
,
1
,
1
,
7
,
1
,
2
,
7
,
1
,
1
,
1
,
1
,
1
,
7
,
2
,
2
,
7
,
1
,
1
,
8
,
1
,
1
,
7
,
2
,
2
,
7
,
1
,
1
,
1
,
1
,
1
,
7
,
2
,
2
,
7
,
1
,
1
,
2
,
1
,
1
,
7
,
2
,
2
,
7
,
1
,
1
,
1
,
1
,
1
,
7
,
2
,
2
,
7
,
1
,
1
,
1
,
1
,
1
,
7
,
2
,
1
,
2
,
2
,
2
,
2
,
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
:
[],
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
}]
}
},
//229
{
baseElementTypes
:
[
0
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
25
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
6
,
count
:
5
}]
},
starScores
:
[
6000
,
12000
,
21000
],
map
:
{
lattices
:
[
0
,
0
,
1
,
1
,
0
,
1
,
1
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
1
,
41
,
1
,
41
,
1
,
4
,
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
,
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
:
[[
12
,
30
],
[
14
,
32
]],
elements
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
6
,
1
,
6
,
1
,
6
,
1
,
6
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
7
,
7
,
7
,
7
,
7
,
7
,
7
,
7
,
7
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
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
,
62
,
64
,
70
,
74
,
75
,
76
,
77
,
78
],
generateLats
:
[{
index
:
2
,
type
:
null
},
{
index
:
3
,
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
}]
}
},
//230
{
baseElementTypes
:
[
0
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
25
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
1
,
count
:
50
},
{
type
:
9
,
count
:
62
}]
},
starScores
:
[
5000
,
11000
,
22000
],
map
:
{
lattices
:
[
0
,
3
,
3
,
0
,
0
,
0
,
3
,
3
,
0
,
0
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
41
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
4
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
41
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
4
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
0
,
0
,
3
,
3
,
41
,
3
,
3
,
0
,
0
],
connectedLats
:
[],
elements
:
[
1
,
2
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
2
,
2
,
1
,
2
,
2
,
2
,
1
,
1
,
1
,
2
,
2
,
2
,
6
,
2
,
2
,
1
,
1
,
1
,
2
,
2
,
6
,
2
,
2
,
2
,
1
,
1
,
1
,
2
,
2
,
2
,
6
,
2
,
2
,
1
,
1
,
1
,
2
,
2
,
6
,
2
,
2
,
2
,
1
,
1
,
1
,
2
,
2
,
2
,
1
,
2
,
1
,
2
,
2
,
2
,
2
,
2
,
1
,
1
,
1
,
2
,
2
,
6
,
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
:
[],
generateLats
:
[{
index
:
1
,
type
:
null
},
{
index
:
2
,
type
:
null
},
{
index
:
6
,
type
:
null
},
{
index
:
7
,
type
:
null
},
{
index
:
12
,
type
:
null
},
{
index
:
14
,
type
:
null
},
{
index
:
18
,
type
:
null
},
{
index
:
22
,
type
:
null
},
{
index
:
26
,
type
:
null
}]
}
},
//231
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
23
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
1
,
count
:
50
},
{
type
:
5
,
count
:
14
}]
},
starScores
:
[
6000
,
12000
,
21000
],
map
:
{
lattices
:
[
0
,
0
,
1
,
1
,
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
,
41
,
1
,
41
,
1
,
41
,
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
],
connectedLats
:
[],
elements
:
[
1
,
1
,
4
,
4
,
4
,
4
,
4
,
1
,
1
,
5
,
4
,
4
,
4
,
2
,
4
,
4
,
4
,
5
,
5
,
2
,
1
,
1
,
1
,
1
,
1
,
2
,
5
,
5
,
4
,
6
,
6
,
6
,
6
,
6
,
4
,
5
,
5
,
2
,
7
,
7
,
7
,
7
,
7
,
2
,
5
,
5
,
4
,
7
,
7
,
7
,
7
,
7
,
4
,
5
,
5
,
2
,
7
,
7
,
7
,
7
,
7
,
2
,
5
,
5
,
4
,
2
,
2
,
2
,
2
,
2
,
4
,
5
,
5
,
2
,
7
,
7
,
7
,
7
,
7
,
2
,
5
],
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
:
4
,
type
:
null
},
{
index
:
5
,
type
:
null
},
{
index
:
6
,
type
:
null
},
{
index
:
9
,
type
:
null
},
{
index
:
10
,
type
:
null
},
{
index
:
11
,
type
:
null
},
{
index
:
12
,
type
:
null
},
{
index
:
13
,
type
:
null
},
{
index
:
14
,
type
:
null
},
{
index
:
15
,
type
:
null
},
{
index
:
16
,
type
:
null
},
{
index
:
17
,
type
:
null
},
{
index
:
20
,
type
:
null
},
{
index
:
21
,
type
:
null
},
{
index
:
22
,
type
:
null
},
{
index
:
23
,
type
:
null
},
{
index
:
24
,
type
:
null
},
{
index
:
38
,
type
:
null
},
{
index
:
39
,
type
:
null
},
{
index
:
40
,
type
:
null
},
{
index
:
41
,
type
:
null
},
{
index
:
42
,
type
:
null
}]
}
},
//232
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
26
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
6
,
count
:
3
}]
},
starScores
:
[
5000
,
12000
,
21000
],
map
:
{
lattices
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
41
,
1
,
1
,
1
,
4
,
1
,
1
,
1
,
41
,
1
,
41
,
1
,
4
,
1
,
4
,
1
,
41
,
1
,
41
,
1
,
1
,
1
,
4
,
1
,
1
,
1
,
41
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
41
,
1
,
1
,
1
,
41
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
0
,
0
,
0
,
2
,
0
,
0
,
0
,
2
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
5
,
5
,
2
,
5
,
5
,
5
,
2
,
5
,
5
,
5
,
2
,
2
,
2
,
5
,
2
,
2
,
2
,
5
],
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
}]
}
},
//233
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
25
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
46
}]
},
starScores
:
[
6000
,
12000
,
21000
],
map
:
{
lattices
:
[
3
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
6
,
1
,
1
,
3
,
3
,
3
,
3
,
3
,
6
,
1
,
1
,
1
,
1
,
3
,
3
,
3
,
6
,
1
,
1
,
1
,
1
,
1
,
1
,
3
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
61
,
3
,
3
,
3
,
1
,
1
,
1
,
1
,
61
,
3
,
3
,
3
,
3
,
3
,
1
,
1
,
61
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
3
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
2
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
2
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
4
,
2
,
1
,
2
,
2
,
1
,
1
,
1
,
4
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
4
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
4
,
1
,
1
,
1
,
2
,
2
,
1
,
2
,
4
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
2
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
2
,
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
,
53
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
43
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
33
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
23
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
13
,
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
:
5
,
type
:
null
},
{
index
:
6
,
type
:
null
},
{
index
:
7
,
type
:
null
},
{
index
:
8
,
type
:
null
},
{
index
:
13
,
type
:
null
}]
}
},
//234
{
baseElementTypes
:
[
0
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
30
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
1
,
count
:
66
},
{
type
:
5
,
count
:
19
}]
},
starScores
:
[
6000
,
12000
,
21000
],
map
:
{
lattices
:
[
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
,
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
,
41
,
41
,
41
,
41
,
41
,
41
,
41
,
0
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
2
,
5
,
5
,
5
,
2
,
1
,
1
,
1
,
2
,
5
,
5
,
5
,
5
,
5
,
2
,
1
,
2
,
5
,
5
,
5
,
5
,
5
,
5
,
5
,
2
,
1
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
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
}]
}
},
//235
{
baseElementTypes
:
[
0
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
30
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
1
,
count
:
45
}]
},
starScores
:
[
5000
,
12000
,
21000
],
map
:
{
lattices
:
[
0
,
0
,
1
,
1
,
0
,
1
,
1
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
1
,
1
,
1
,
1
,
4
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
4
,
1
,
4
,
1
,
1
,
1
,
0
,
1
,
4
,
1
,
0
,
1
,
4
,
1
,
0
,
1
,
1
,
1
,
4
,
1
,
4
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
4
,
1
,
1
,
1
,
1
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
0
,
0
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
6
,
1
,
1
,
1
,
2
,
1
,
2
,
1
,
6
,
1
,
6
,
1
,
2
,
1
,
2
,
1
,
1
,
1
,
6
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
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
:
[],
generateLats
:
[{
index
:
2
,
type
:
null
},
{
index
:
3
,
type
:
null
},
{
index
:
5
,
type
:
null
},
{
index
:
6
,
type
:
null
},
{
index
:
10
,
type
:
null
},
{
index
:
13
,
type
:
null
},
{
index
:
16
,
type
:
null
},
{
index
:
18
,
type
:
null
},
{
index
:
26
,
type
:
null
}]
}
},
//236
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
30
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
43
}]
},
starScores
:
[
5000
,
12000
,
21000
],
map
:
{
lattices
:
[
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
,
61
,
61
,
61
,
61
,
0
,
6
,
6
,
6
,
6
,
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
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
0
,
0
,
0
,
3
,
3
,
3
,
3
,
3
,
0
,
0
],
connectedLats
:
[[
54
,
5
],
[
64
,
6
],
[
74
,
7
],
[
75
,
17
],
[
22
,
76
]],
elements
:
[
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
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
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
:
1
,
type
:
null
},
{
index
:
2
,
type
:
null
},
{
index
:
3
,
type
:
null
},
{
index
:
4
,
type
:
null
},
{
index
:
9
,
type
:
null
}]
}
},
//237
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
28
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
40
}]
},
starScores
:
[
6000
,
12000
,
21000
],
map
:
{
lattices
:
[
41
,
41
,
41
,
41
,
0
,
0
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
0
,
4
,
4
,
4
,
4
,
1
,
1
,
1
,
1
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
1
,
1
,
1
,
1
,
3
,
3
,
3
,
3
,
1
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
1
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
1
,
3
,
3
,
3
,
3
],
connectedLats
:
[],
elements
:
[
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
,
4
,
5
,
4
,
1
,
1
,
1
,
2
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
4
,
5
,
4
,
1
,
1
,
1
,
2
,
2
,
2
,
2
,
1
,
2
,
2
,
2
,
2
,
1
,
1
,
1
,
4
,
5
,
4
,
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
:
14
,
type
:
null
},
{
index
:
15
,
type
:
null
},
{
index
:
16
,
type
:
null
},
{
index
:
17
,
type
:
null
}]
}
},
//238
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
34
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
43
}]
},
starScores
:
[
5000
,
12000
,
21000
],
map
:
{
lattices
:
[
3
,
3
,
3
,
3
,
3
,
5
,
2
,
2
,
2
,
3
,
3
,
3
,
3
,
3
,
5
,
2
,
2
,
2
,
3
,
3
,
3
,
3
,
3
,
0
,
0
,
0
,
0
,
3
,
3
,
3
,
3
,
3
,
0
,
4
,
0
,
0
,
3
,
3
,
3
,
3
,
3
,
0
,
1
,
0
,
0
,
3
,
3
,
3
,
3
,
3
,
0
,
0
,
0
,
4
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
2
,
2
,
0
,
2
,
2
,
2
,
0
,
0
],
connectedLats
:
[[
56
,
6
],
[
57
,
7
],
[
58
,
8
],
[
15
,
33
],
[
17
,
53
],
[
42
,
73
],
[
62
,
74
]],
elements
:
[
1
,
1
,
1
,
1
,
1
,
2
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
2
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
2
,
2
,
1
,
2
,
1
,
1
,
1
,
2
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
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
,
21
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
11
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
31
,
0
,
0
,
0
,
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
}]
}
},
//239
{
baseElementTypes
:
[
0
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
27
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
1
,
count
:
55
},
{
type
:
2
,
count
:
40
}]
},
starScores
:
[
5000
,
12000
,
21000
],
map
:
{
lattices
:
[
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
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
1
,
1
,
1
,
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
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
],
connectedLats
:
[],
elements
:
[
5
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
5
,
5
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
5
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
6
,
1
,
6
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
5
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
5
,
5
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
5
],
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
}]
}
},
//240
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
26
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
81
}]
},
starScores
:
[
5000
,
12000
,
21000
],
map
:
{
lattices
:
[
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
61
,
61
,
61
,
3
,
6
,
6
,
6
,
3
,
3
,
61
,
3
,
3
,
3
,
3
,
3
,
6
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
61
,
3
,
3
,
3
,
3
,
3
,
6
,
3
,
3
,
61
,
61
,
61
,
3
,
6
,
6
,
6
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
1
,
2
,
2
,
2
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
2
,
2
,
2
,
1
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
5
,
5
,
5
,
5
,
5
,
5
,
5
,
5
,
5
],
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
}]
}
}
]
\ No newline at end of file
egret/src/something/chapters/Chapter13.ts
0 → 100644
View file @
4e4f00de
import
{
ChapterData
}
from
"../interface/ChapterData"
;
/**
* 241到260关数据
*/
export
const
Chapters13
:
ChapterData
[]
=
[
//241
{
baseElementTypes
:
[
0
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
24
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
1
,
count
:
63
},
{
type
:
3
,
count
:
75
},
{
type
:
2
,
count
:
75
}]
},
starScores
:
[
7000
,
14000
,
28000
],
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
,
0
,
1
,
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
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
0
],
connectedLats
:
[[
20
,
38
],
[
30
,
48
],
[
31
,
58
],
[
32
,
50
],
[
25
,
43
]],
elements
:
[
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
,
2
,
2
,
2
,
2
,
2
,
1
,
1
,
1
,
1
,
2
,
6
,
1
,
6
,
2
,
1
,
1
,
1
,
1
,
1
,
6
,
1
,
6
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
6
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
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
:
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
}]
}
},
//242
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
30
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
26
}]
},
starScores
:
[
5000
,
12000
,
21000
],
map
:
{
lattices
:
[
1
,
1
,
1
,
1
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
3
,
1
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
3
,
1
,
1
,
1
,
1
,
1
,
3
,
1
,
1
,
6
,
1
,
1
,
3
,
1
,
3
,
1
,
3
,
6
,
1
,
6
,
3
,
1
,
3
,
1
,
3
,
1
,
1
,
6
,
1
,
1
,
3
,
1
,
3
,
3
,
1
,
1
,
3
,
1
,
1
,
3
,
3
,
0
,
1
,
61
,
61
,
1
,
61
,
61
,
1
,
0
,
0
,
0
,
1
,
1
,
3
,
1
,
1
,
0
,
0
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
7
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
2
,
1
,
1
,
2
,
1
,
2
,
7
,
2
,
2
,
7
,
2
,
2
,
7
,
2
,
5
,
2
,
7
,
5
,
2
,
5
,
7
,
2
,
5
,
2
,
2
,
7
,
5
,
2
,
5
,
7
,
2
,
2
,
1
,
5
,
2
,
2
,
7
,
2
,
2
,
5
,
1
,
1
,
1
,
5
,
5
,
2
,
5
,
5
,
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
:
4
,
type
:
null
},
{
index
:
5
,
type
:
null
},
{
index
:
6
,
type
:
null
},
{
index
:
7
,
type
:
null
},
{
index
:
8
,
type
:
null
}]
}
},
//243
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
27
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
59
}]
},
starScores
:
[
5000
,
12000
,
21000
],
map
:
{
lattices
:
[
3
,
1
,
1
,
1
,
3
,
1
,
1
,
1
,
3
,
3
,
2
,
1
,
2
,
6
,
2
,
1
,
2
,
3
,
3
,
1
,
2
,
1
,
6
,
1
,
2
,
1
,
3
,
3
,
2
,
1
,
2
,
6
,
2
,
1
,
2
,
3
,
3
,
61
,
61
,
61
,
3
,
61
,
61
,
61
,
3
,
3
,
2
,
1
,
2
,
6
,
2
,
1
,
2
,
3
,
3
,
1
,
2
,
1
,
6
,
1
,
2
,
1
,
3
,
3
,
2
,
1
,
2
,
6
,
2
,
1
,
2
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
],
connectedLats
:
[],
elements
:
[
2
,
4
,
4
,
4
,
2
,
4
,
4
,
4
,
2
,
2
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
1
,
2
,
2
,
2
,
0
,
0
,
0
,
2
,
0
,
0
,
0
,
2
,
2
,
0
,
0
,
0
,
2
,
0
,
0
,
0
,
2
,
2
,
0
,
0
,
0
,
2
,
0
,
0
,
0
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
2
],
baseElements
:
[
0
,
2
,
2
,
2
,
0
,
2
,
2
,
2
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
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
:
8
,
type
:
null
},
{
index
:
10
,
type
:
null
},
{
index
:
11
,
type
:
null
},
{
index
:
12
,
type
:
null
},
{
index
:
14
,
type
:
null
},
{
index
:
15
,
type
:
null
},
{
index
:
16
,
type
:
null
}]
}
},
//244
{
baseElementTypes
:
[
0
,
1
,
2
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
31
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
6
,
count
:
4
}]
},
starScores
:
[
6000
,
15000
,
21000
],
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
,
0
,
0
,
0
,
0
,
0
,
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
],
connectedLats
:
[[
27
,
45
],
[
28
,
46
],
[
29
,
47
],
[
30
,
48
],
[
31
,
49
],
[
32
,
50
],
[
33
,
51
],
[
34
,
52
],
[
35
,
53
],
[],
[]],
elements
:
[
1
,
3
,
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
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
5
,
5
,
5
,
5
,
5
,
5
,
5
,
5
,
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
:
[
72
,
73
,
74
,
75
,
76
,
77
,
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
}]
}
},
//245
{
baseElementTypes
:
[
1
,
2
,
3
,
4
],
bubbleProbability
:
10
,
stepCount
:
25
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
32
}]
},
starScores
:
[
15000
,
20000
,
25000
],
map
:
{
lattices
:
[
3
,
0
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
3
,
0
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
3
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
3
,
0
,
1
,
1
,
3
,
3
,
3
,
1
,
1
,
3
,
3
,
1
,
1
,
3
,
1
,
3
,
1
,
1
,
3
,
3
,
1
,
1
,
3
,
3
,
3
,
1
,
1
,
0
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
3
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
0
,
3
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
0
,
3
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
6
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
8
,
8
,
8
,
1
,
6
,
1
,
1
,
1
,
1
,
8
,
1
,
8
,
1
,
1
,
1
,
1
,
6
,
1
,
8
,
8
,
8
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
6
,
1
,
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
:
0
,
type
:
null
},
{
index
:
2
,
type
:
null
},
{
index
:
3
,
type
:
null
},
{
index
:
4
,
type
:
null
},
{
index
:
6
,
type
:
null
},
{
index
:
7
,
type
:
null
},
{
index
:
8
,
type
:
null
}]
}
},
//246
{
baseElementTypes
:
[
4
,
3
,
2
,
1
],
bubbleProbability
:
10
,
stepCount
:
25
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
1
,
count
:
160
},
{
type
:
5
,
count
:
13
}]
},
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
,
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
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
0
,
0
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
6
,
1
,
6
,
1
,
8
,
1
,
2
,
1
,
4
,
1
,
1
,
1
,
4
,
1
,
2
,
2
,
1
,
1
,
6
,
1
,
2
,
8
,
1
,
2
,
2
,
1
,
6
,
1
,
1
,
1
,
2
,
1
,
2
,
2
,
1
,
4
,
8
,
1
,
8
,
4
,
1
,
2
,
2
,
1
,
2
,
1
,
4
,
1
,
6
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
6
,
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
:
4
,
type
:
null
},
{
index
:
5
,
type
:
null
},
{
index
:
6
,
type
:
null
}]
}
},
//247
{
baseElementTypes
:
[
2
,
0
,
4
,
3
],
bubbleProbability
:
10
,
stepCount
:
24
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
52
}]
},
starScores
:
[
15000
,
20000
,
25000
],
map
:
{
lattices
:
[
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
3
,
0
,
0
,
3
,
3
,
3
,
3
,
3
,
0
,
0
,
0
,
0
,
3
,
3
,
3
,
3
,
3
,
0
,
0
,
0
,
0
,
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
,
3
,
3
,
3
,
3
,
3
,
3
,
3
],
connectedLats
:
[[
10
,
55
],
[
11
,
29
],
[
12
,
30
],
[
13
,
31
],
[
14
,
32
],
[
15
,
33
],
[
16
,
61
],
[
38
,
56
],
[
39
,
57
],
[
40
,
58
],
[
41
,
59
],
[
42
,
60
]],
elements
:
[
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
2
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
2
,
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
,
2
,
1
,
1
,
1
,
1
,
2
,
2
,
1
,
1
,
1
,
1
,
2
,
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
:
4
,
type
:
null
},
{
index
:
5
,
type
:
null
},
{
index
:
6
,
type
:
null
},
{
index
:
7
,
type
:
null
},
{
index
:
8
,
type
:
null
}]
}
},
//248
{
baseElementTypes
:
[
2
,
0
,
4
,
3
],
bubbleProbability
:
10
,
stepCount
:
34
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
77
}]
},
starScores
:
[
15000
,
20000
,
25000
],
map
:
{
lattices
:
[
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
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
],
connectedLats
:
[],
elements
:
[
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
7
,
4
,
4
,
4
,
4
,
4
,
7
,
1
,
1
,
7
,
4
,
8
,
1
,
8
,
4
,
7
,
1
,
1
,
7
,
4
,
1
,
1
,
1
,
4
,
7
,
1
,
1
,
7
,
4
,
8
,
1
,
8
,
4
,
7
,
1
,
1
,
7
,
4
,
4
,
4
,
4
,
4
,
7
,
1
,
1
,
7
,
7
,
1
,
5
,
1
,
7
,
7
,
1
,
1
,
7
,
7
,
1
,
5
,
1
,
7
,
7
,
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
,
30
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
30
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
30
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
30
,
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
}]
}
},
//249
{
baseElementTypes
:
[
0
,
1
,
3
,
4
],
bubbleProbability
:
0
,
stepCount
:
32
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
9
,
count
:
67
}]
},
starScores
:
[
15000
,
20000
,
25000
],
map
:
{
lattices
:
[
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
6
,
3
,
3
,
6
,
3
,
6
,
3
,
3
,
6
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
0
,
3
,
0
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
0
],
connectedLats
:
[],
elements
:
[
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
,
2
,
1
,
1
,
2
,
1
,
2
,
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
,
1
,
1
,
1
,
2
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
2
,
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
:
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
}]
}
},
//250
{
baseElementTypes
:
[
0
,
2
,
4
,
3
],
bubbleProbability
:
0
,
stepCount
:
22
,
passTarget
:
{
type
:
1
,
elements
:
[{
type
:
6
,
count
:
7
}]
},
starScores
:
[
15000
,
20000
,
25000
],
map
:
{
lattices
:
[
0
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
1
,
1
,
1
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
1
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
1
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
0
,
1
,
1
,
0
,
1
,
3
,
1
,
1
,
1
,
1
,
1
,
0
,
0
,
1
,
1
,
1
,
1
,
3
,
1
,
0
,
0
,
0
,
0
,
0
,
0
,
1
,
1
,
1
,
0
,
0
,
0
],
connectedLats
:
[[
30
,
18
],
[
31
,
19
],
[
32
,
20
],
[
63
,
33
],
[
64
,
34
],
[
65
,
35
],
[
44
,
59
],
[
52
,
58
],
[
60
,
57
]],
elements
:
[
1
,
1
,
1
,
1
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
5
,
5
,
5
,
1
,
1
,
1
,
5
,
5
,
5
,
5
,
5
,
5
,
1
,
1
,
1
,
5
,
1
,
5
,
1
,
1
,
1
,
5
,
5
,
5
,
5
,
5
,
5
,
1
,
1
,
1
,
5
,
5
,
5
,
5
,
5
,
5
,
1
,
1
,
1
,
5
,
5
,
1
,
5
,
1
,
5
,
5
,
5
,
5
,
5
,
1
,
1
,
5
,
5
,
5
,
5
,
1
,
5
,
1
,
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
,
14
,
14
,
14
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
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
:
[
44
,
52
,
60
],
generateLats
:
[{
index
:
4
,
type
:
null
},
{
index
:
12
,
type
:
null
},
{
index
:
14
,
type
:
null
}]
}
}
]
\ No newline at end of file
egret/src/something/chapters/getChapter.ts
View file @
4e4f00de
...
...
@@ -14,6 +14,7 @@ import { PassTargetData } from "../interface/PassTargetData";
import
{
PassType
}
from
"../enum/PassType"
;
import
{
submitTran
}
from
"../enum/ElementType"
;
import
{
Chapters12
}
from
"./Chapter12"
;
import
{
Chapters13
}
from
"./Chapter13"
;
//所有的关卡
const
chapters
:
ChapterData
[]
=
[].
concat
(
...
...
@@ -29,6 +30,7 @@ const chapters: ChapterData[] = [].concat(
Chapters10
,
Chapters11
,
Chapters12
,
Chapters13
,
)
/**
* 获取关卡数据,返回关卡数据
...
...
egret/src/something/logic/AiControl.ts
View file @
4e4f00de
...
...
@@ -362,7 +362,7 @@ export class AiControl {
for
(
var
i
=
0
;
i
<
thisObj
.
lattices
.
length
;
i
++
)
{
var
lat
=
thisObj
.
lattices
[
i
];
//是基础元素,有气泡状态
if
(
Tool
.
judgeBaseEle
(
lat
)
&&
lat
.
element
.
hasState
(
StateType
.
BUBBLE
))
{
if
(
Tool
.
judgeBaseEle
(
lat
)
&&
lat
.
element
.
hasState
(
StateType
.
BUBBLE
)
&&
(
!
lat
.
block
||
!
lat
.
block
.
isLock
())
)
{
indexs
.
push
(
i
);
}
}
...
...
mock/happyclear/home.json
View file @
4e4f00de
...
...
@@ -4,7 +4,7 @@
"desc"
:
"OK"
,
"timestamp"
:
1566885811031
,
"data"
:
{
"wealth"
:
0
,
"wealth"
:
796
0
,
"totalStars"
:
145
,
"levels"
:
[
{
...
...
@@ -106,6 +106,1036 @@
"levelNum"
:
20
,
"maxScore"
:
55860
,
"stars"
:
3
},
{
"levelNum"
:
21
,
"maxScore"
:
21630
,
"stars"
:
3
},
{
"levelNum"
:
22
,
"maxScore"
:
115670
,
"stars"
:
3
},
{
"levelNum"
:
23
,
"maxScore"
:
26840
,
"stars"
:
3
},
{
"levelNum"
:
24
,
"maxScore"
:
39310
,
"stars"
:
3
},
{
"levelNum"
:
25
,
"maxScore"
:
28010
,
"stars"
:
3
},
{
"levelNum"
:
26
,
"maxScore"
:
36710
,
"stars"
:
3
},
{
"levelNum"
:
27
,
"maxScore"
:
37610
,
"stars"
:
3
},
{
"levelNum"
:
28
,
"maxScore"
:
67430
,
"stars"
:
3
},
{
"levelNum"
:
29
,
"maxScore"
:
118210
,
"stars"
:
3
},
{
"levelNum"
:
30
,
"maxScore"
:
52800
,
"stars"
:
3
},
{
"levelNum"
:
31
,
"maxScore"
:
32060
,
"stars"
:
3
},
{
"levelNum"
:
32
,
"maxScore"
:
15000
,
"stars"
:
3
},
{
"levelNum"
:
33
,
"maxScore"
:
36350
,
"stars"
:
3
},
{
"levelNum"
:
34
,
"maxScore"
:
35930
,
"stars"
:
3
},
{
"levelNum"
:
35
,
"maxScore"
:
69590
,
"stars"
:
3
},
{
"levelNum"
:
36
,
"maxScore"
:
65520
,
"stars"
:
3
},
{
"levelNum"
:
37
,
"maxScore"
:
72220
,
"stars"
:
3
},
{
"levelNum"
:
38
,
"maxScore"
:
46450
,
"stars"
:
3
},
{
"levelNum"
:
39
,
"maxScore"
:
46340
,
"stars"
:
3
},
{
"levelNum"
:
40
,
"maxScore"
:
50220
,
"stars"
:
3
},
{
"levelNum"
:
41
,
"maxScore"
:
35080
,
"stars"
:
3
},
{
"levelNum"
:
42
,
"maxScore"
:
20690
,
"stars"
:
3
},
{
"levelNum"
:
43
,
"maxScore"
:
22950
,
"stars"
:
3
},
{
"levelNum"
:
44
,
"maxScore"
:
32270
,
"stars"
:
3
},
{
"levelNum"
:
45
,
"maxScore"
:
77730
,
"stars"
:
3
},
{
"levelNum"
:
46
,
"maxScore"
:
37680
,
"stars"
:
3
},
{
"levelNum"
:
47
,
"maxScore"
:
53230
,
"stars"
:
3
},
{
"levelNum"
:
48
,
"maxScore"
:
58830
,
"stars"
:
3
},
{
"levelNum"
:
49
,
"maxScore"
:
95480
,
"stars"
:
3
},
{
"levelNum"
:
50
,
"maxScore"
:
74370
,
"stars"
:
3
},
{
"levelNum"
:
51
,
"maxScore"
:
59300
,
"stars"
:
3
},
{
"levelNum"
:
52
,
"maxScore"
:
54770
,
"stars"
:
3
},
{
"levelNum"
:
53
,
"maxScore"
:
25710
,
"stars"
:
3
},
{
"levelNum"
:
54
,
"maxScore"
:
39220
,
"stars"
:
3
},
{
"levelNum"
:
55
,
"maxScore"
:
52860
,
"stars"
:
3
},
{
"levelNum"
:
56
,
"maxScore"
:
74730
,
"stars"
:
3
},
{
"levelNum"
:
57
,
"maxScore"
:
44770
,
"stars"
:
3
},
{
"levelNum"
:
58
,
"maxScore"
:
44610
,
"stars"
:
3
},
{
"levelNum"
:
59
,
"maxScore"
:
72310
,
"stars"
:
3
},
{
"levelNum"
:
60
,
"maxScore"
:
47880
,
"stars"
:
3
},
{
"levelNum"
:
61
,
"maxScore"
:
89810
,
"stars"
:
3
},
{
"levelNum"
:
62
,
"maxScore"
:
24420
,
"stars"
:
3
},
{
"levelNum"
:
63
,
"maxScore"
:
36960
,
"stars"
:
3
},
{
"levelNum"
:
64
,
"maxScore"
:
31840
,
"stars"
:
3
},
{
"levelNum"
:
65
,
"maxScore"
:
74220
,
"stars"
:
3
},
{
"levelNum"
:
66
,
"maxScore"
:
176910
,
"stars"
:
3
},
{
"levelNum"
:
67
,
"maxScore"
:
61010
,
"stars"
:
3
},
{
"levelNum"
:
68
,
"maxScore"
:
47900
,
"stars"
:
3
},
{
"levelNum"
:
69
,
"maxScore"
:
39940
,
"stars"
:
3
},
{
"levelNum"
:
70
,
"maxScore"
:
55620
,
"stars"
:
3
},
{
"levelNum"
:
71
,
"maxScore"
:
23480
,
"stars"
:
3
},
{
"levelNum"
:
72
,
"maxScore"
:
44670
,
"stars"
:
3
},
{
"levelNum"
:
73
,
"maxScore"
:
57750
,
"stars"
:
3
},
{
"levelNum"
:
74
,
"maxScore"
:
53350
,
"stars"
:
3
},
{
"levelNum"
:
75
,
"maxScore"
:
27430
,
"stars"
:
3
},
{
"levelNum"
:
76
,
"maxScore"
:
34370
,
"stars"
:
3
},
{
"levelNum"
:
77
,
"maxScore"
:
41730
,
"stars"
:
3
},
{
"levelNum"
:
78
,
"maxScore"
:
33080
,
"stars"
:
3
},
{
"levelNum"
:
79
,
"maxScore"
:
16860
,
"stars"
:
3
},
{
"levelNum"
:
80
,
"maxScore"
:
35460
,
"stars"
:
3
},
{
"levelNum"
:
81
,
"maxScore"
:
47380
,
"stars"
:
3
},
{
"levelNum"
:
82
,
"maxScore"
:
39230
,
"stars"
:
3
},
{
"levelNum"
:
83
,
"maxScore"
:
33710
,
"stars"
:
3
},
{
"levelNum"
:
84
,
"maxScore"
:
49520
,
"stars"
:
3
},
{
"levelNum"
:
85
,
"maxScore"
:
55970
,
"stars"
:
3
},
{
"levelNum"
:
86
,
"maxScore"
:
94160
,
"stars"
:
3
},
{
"levelNum"
:
87
,
"maxScore"
:
49370
,
"stars"
:
3
},
{
"levelNum"
:
88
,
"maxScore"
:
41570
,
"stars"
:
3
},
{
"levelNum"
:
89
,
"maxScore"
:
34480
,
"stars"
:
3
},
{
"levelNum"
:
90
,
"maxScore"
:
77170
,
"stars"
:
3
},
{
"levelNum"
:
91
,
"maxScore"
:
36230
,
"stars"
:
3
},
{
"levelNum"
:
92
,
"maxScore"
:
36890
,
"stars"
:
3
},
{
"levelNum"
:
93
,
"maxScore"
:
33800
,
"stars"
:
3
},
{
"levelNum"
:
94
,
"maxScore"
:
34200
,
"stars"
:
3
},
{
"levelNum"
:
95
,
"maxScore"
:
39460
,
"stars"
:
3
},
{
"levelNum"
:
96
,
"maxScore"
:
30800
,
"stars"
:
2
},
{
"levelNum"
:
97
,
"maxScore"
:
62330
,
"stars"
:
3
},
{
"levelNum"
:
98
,
"maxScore"
:
43080
,
"stars"
:
3
},
{
"levelNum"
:
99
,
"maxScore"
:
43850
,
"stars"
:
3
},
{
"levelNum"
:
100
,
"maxScore"
:
58060
,
"stars"
:
3
},
{
"levelNum"
:
101
,
"maxScore"
:
33440
,
"stars"
:
3
},
{
"levelNum"
:
102
,
"maxScore"
:
37070
,
"stars"
:
3
},
{
"levelNum"
:
103
,
"maxScore"
:
80120
,
"stars"
:
3
},
{
"levelNum"
:
104
,
"maxScore"
:
37370
,
"stars"
:
3
},
{
"levelNum"
:
105
,
"maxScore"
:
63770
,
"stars"
:
3
},
{
"levelNum"
:
106
,
"maxScore"
:
118590
,
"stars"
:
3
},
{
"levelNum"
:
107
,
"maxScore"
:
43040
,
"stars"
:
3
},
{
"levelNum"
:
108
,
"maxScore"
:
116110
,
"stars"
:
3
},
{
"levelNum"
:
109
,
"maxScore"
:
94310
,
"stars"
:
3
},
{
"levelNum"
:
110
,
"maxScore"
:
61970
,
"stars"
:
3
},
{
"levelNum"
:
111
,
"maxScore"
:
44820
,
"stars"
:
3
},
{
"levelNum"
:
112
,
"maxScore"
:
70240
,
"stars"
:
3
},
{
"levelNum"
:
113
,
"maxScore"
:
37160
,
"stars"
:
3
},
{
"levelNum"
:
114
,
"maxScore"
:
87000
,
"stars"
:
3
},
{
"levelNum"
:
115
,
"maxScore"
:
37340
,
"stars"
:
3
},
{
"levelNum"
:
116
,
"maxScore"
:
107460
,
"stars"
:
3
},
{
"levelNum"
:
117
,
"maxScore"
:
48130
,
"stars"
:
3
},
{
"levelNum"
:
118
,
"maxScore"
:
67190
,
"stars"
:
3
},
{
"levelNum"
:
119
,
"maxScore"
:
52010
,
"stars"
:
3
},
{
"levelNum"
:
120
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
121
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
122
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
123
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
124
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
125
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
126
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
127
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
128
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
129
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
130
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
131
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
132
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
133
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
134
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
135
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
136
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
137
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
138
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
139
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
140
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
141
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
142
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
143
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
144
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
145
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
146
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
147
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
148
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
149
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
150
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
151
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
152
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
153
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
154
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
155
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
156
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
157
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
158
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
159
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
160
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
161
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
162
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
163
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
164
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
165
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
166
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
167
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
168
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
169
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
170
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
171
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
172
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
173
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
174
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
175
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
176
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
177
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
178
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
179
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
180
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
181
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
182
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
183
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
184
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
185
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
186
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
187
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
188
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
189
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
190
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
191
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
192
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
193
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
194
,
"maxScore"
:
47440
,
"stars"
:
3
},
{
"levelNum"
:
195
,
"maxScore"
:
47440
,
"stars"
:
2
},
{
"levelNum"
:
196
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
197
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
198
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
199
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
200
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
201
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
202
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
203
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
204
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
205
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
206
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
207
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
208
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
209
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
210
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
211
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
212
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
213
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
214
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
215
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
216
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
217
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
218
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
219
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
220
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
221
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
222
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
223
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
224
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
225
,
"maxScore"
:
47440
,
"stars"
:
1
},
{
"levelNum"
:
226
,
"maxScore"
:
47440
,
"stars"
:
1
}
],
"remainProp"
:
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment