mirror of
https://github.com/SashLilac/cambridge-modpack.git
synced 2024-11-21 13:29:02 -06:00
Big A3
This commit is contained in:
parent
c3150b282b
commit
529c2ab41f
20
tetris/modes/big_a3.lua
Normal file
20
tetris/modes/big_a3.lua
Normal file
@ -0,0 +1,20 @@
|
||||
require 'funcs'
|
||||
|
||||
local MarathonA3Game = require 'tetris.modes.marathon_a3'
|
||||
|
||||
local BigA3Game = MarathonA3Game:extend()
|
||||
|
||||
BigA3Game.name = "Big A3"
|
||||
BigA3Game.hash = "BigA3-2"
|
||||
BigA3Game.tagline = "placeholder text"
|
||||
|
||||
function BigA3Game:new()
|
||||
BigA3Game.super:new()
|
||||
self.big_mode = true
|
||||
local getClearedRowCount = self.grid.getClearedRowCount
|
||||
self.grid.getClearedRowCount = function(self)
|
||||
return getClearedRowCount(self) / 2
|
||||
end
|
||||
end
|
||||
|
||||
return BigA3Game
|
Loading…
Reference in New Issue
Block a user