18 lines
344 B
Lua
18 lines
344 B
Lua
return {
|
|
mesDisp=function(P)
|
|
setFont(55)
|
|
GC.mStr(10-P.stat.dig,63,265)
|
|
end,
|
|
hook_drop=function(P)
|
|
if P.stat.dig==10 then
|
|
P:win('finish')
|
|
end
|
|
end,
|
|
task=function(P)
|
|
for _=1,10 do
|
|
P:garbageRise(21,1,P:getHolePos())
|
|
end
|
|
P.fieldBeneath=0
|
|
end,
|
|
}
|