取消超高死亡判定
This commit is contained in:
@@ -495,7 +495,7 @@ return{
|
|||||||
{"Topping out",
|
{"Topping out",
|
||||||
"die death topout toppingout",
|
"die death topout toppingout",
|
||||||
"term",
|
"term",
|
||||||
"Modern Tetris games have three different conditions in which the player tops out:\n1. Block out: when a piece spawns overlapping with another block;\n2. Lock out: when a piece locks entirely above the skyline;\n3. Garbage out: when the stack exceeds 40 lines in height (often due to incoming garbage).\nTechmino does not check for locking out, and has a 42 line limit for garbage out.",
|
"Modern Tetris games have three different conditions in which the player tops out:\n1. Block out: when a piece spawns overlapping with another block;\n2. Lock out: when a piece locks entirely above the skyline;\n3. Garbage out: when the stack exceeds 40 lines in height (often due to incoming garbage).\nTechmino does not check for locking out and garbage out.",
|
||||||
},
|
},
|
||||||
{"Falling speed",
|
{"Falling speed",
|
||||||
"fallingspeed",
|
"fallingspeed",
|
||||||
|
|||||||
@@ -504,7 +504,7 @@ return{
|
|||||||
{"死亡判定",
|
{"死亡判定",
|
||||||
"死亡判定 die death siwang",
|
"死亡判定 die death siwang",
|
||||||
"term",
|
"term",
|
||||||
"现代方块普遍使用的死亡判定:\n1.新出现的方块和场地方块有重叠(窒息)(c4w比s4w强的原因,因为被打进18行都不会窒息)\n2.方块锁定时完全在场地的外面\n3.所有东西的总高度超出40。\n\n注:本游戏使用的死亡判定不包含上述的第二条,并且第三条的40改成42",
|
"现代方块普遍使用的死亡判定:\n1.新出现的方块和场地方块有重叠(窒息)(c4w比s4w强的原因,因为被打进18行都不会窒息)\n2.方块锁定时完全在场地的外面\n3.所有东西的总高度超出40。\n\n注:本游戏使用的死亡判定不包含上述的第二条和第三条",
|
||||||
},
|
},
|
||||||
{"下落速度",
|
{"下落速度",
|
||||||
"下落速度 drop speed",
|
"下落速度 drop speed",
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ return{
|
|||||||
drop=60,lock=60,
|
drop=60,lock=60,
|
||||||
wait=0,fall=0,
|
wait=0,fall=0,
|
||||||
bone=false,
|
bone=false,
|
||||||
fieldH=20,maxOver=20,
|
fieldH=20,maxOver=1e99,
|
||||||
nextCount=6,nextStartPos=1,
|
nextCount=6,nextStartPos=1,
|
||||||
holdCount=1,infHold=false,phyHold=false,
|
holdCount=1,infHold=false,phyHold=false,
|
||||||
ospin=true,deepDrop=false,
|
ospin=true,deepDrop=false,
|
||||||
|
|||||||
Reference in New Issue
Block a user