cambridge-modpack/tetris/modes/big_meme.lua

20 lines
503 B
Lua
Raw Normal View History

2020-12-04 19:53:09 -06:00
require 'funcs'
local SurvivalA3Game = require 'tetris.modes.survival_a3'
local BigMemeGame = SurvivalA3Game:extend()
BigMemeGame.name = "Big Survival A3"
BigMemeGame.hash = "BigA3"
BigMemeGame.tagline = "The blocks are bigger and the speeds are faster!"
2021-02-24 16:58:50 -06:00
function BigMemeGame:new()
2023-07-27 05:03:32 -05:00
BigMemeGame.super:new()
self.big_mode = true
local getClearedRowCount = self.grid.getClearedRowCount
self.grid.getClearedRowCount = function(self)
return getClearedRowCount(self) / 2
2021-01-11 14:25:15 -06:00
end
end
2020-12-04 19:53:09 -06:00
return BigMemeGame