2021-01-28 20:09:42 -06:00
|
|
|
local SRS = require 'tetris.rulesets.standard'
|
2021-01-09 22:17:33 -06:00
|
|
|
|
|
|
|
local DS = SRS:extend()
|
|
|
|
|
|
|
|
DS.name = "DS-World"
|
|
|
|
DS.hash = "DS-World"
|
|
|
|
|
|
|
|
DS.are = false
|
|
|
|
|
|
|
|
function DS:onPieceDrop(piece) piece.lock_delay = 0 end
|
|
|
|
function DS:onPieceMove(piece) piece.lock_delay = 0 end
|
|
|
|
function DS:onPieceRotate(piece) piece.lock_delay = 0 end
|
|
|
|
|
|
|
|
function DS:get180RotationValue()
|
2021-01-28 20:09:42 -06:00
|
|
|
return 3
|
2021-01-09 22:17:33 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
return DS
|