cambridge/tetris/modes/phantom_mania_n.lua

17 lines
437 B
Lua
Raw Normal View History

local PhantomManiaGame = require 'tetris.modes.phantom_mania'
2019-05-22 22:57:34 -05:00
local PhantomManiaNGame = PhantomManiaGame:extend()
2019-05-22 22:57:34 -05:00
PhantomManiaNGame.name = "Phantom Mania N"
PhantomManiaNGame.hash = "PhantomManiaN"
PhantomManiaNGame.tagline = "The old mode from Nullpomino, for Ti-ARS and SRS support."
2019-05-22 22:57:34 -05:00
function PhantomManiaNGame:new()
PhantomManiaNGame.super:new()
2019-05-22 22:57:34 -05:00
self.next_queue_length = 3
self.enable_hold = true
end
return PhantomManiaNGame