pull/19/head
Ishaan Bhardwaj 2023-07-28 00:51:26 -04:00
parent c3150b282b
commit 529c2ab41f
1 changed files with 20 additions and 0 deletions

20
tetris/modes/big_a3.lua Normal file
View 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