mirror of
https://github.com/SashLilac/cambridge.git
synced 2025-05-13 20:21:25 -05:00
Added freeplay mode details and challenge details!!
This commit is contained in:
@@ -13,8 +13,8 @@ TetrsChallenge.name = "Tetrs"
|
||||
TetrsChallenge.hash = "Tetrs"
|
||||
TetrsChallenge.mode = "MarathonGF"
|
||||
TetrsChallenge.ruleset = "Standard"
|
||||
TetrsChallenge.tagline = "abababa"
|
||||
TetrsChallenge.description = "Complete a mode with a specific ruleset and idk they did some other stupid things too lol"
|
||||
TetrsChallenge.tagline = "Where's the long bar? Seriously, I can't find it."
|
||||
TetrsChallenge.description = "Complete a 150-line Marathon...without the I piece!"
|
||||
|
||||
function TetrsChallenge:new()
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ local Challenge = GameMode:extend()
|
||||
Challenge.name = "A really cool challenge name"
|
||||
Challenge.hash = ""
|
||||
Challenge.mode = ""
|
||||
Challenge.ruleset = "Guideline SRS"
|
||||
Challenge.ruleset = ""
|
||||
Challenge.tagline = "Are you up for this challenge?"
|
||||
Challenge.description = "Complete a mode with a specific ruleset and idk they did some other stupid things too lol"
|
||||
|
||||
|
||||
26
tetris/challenges/details_test.lua
Normal file
26
tetris/challenges/details_test.lua
Normal file
@@ -0,0 +1,26 @@
|
||||
require 'funcs'
|
||||
|
||||
local GameMode = require 'tetris.modes.gamemode'
|
||||
local Piece = require 'tetris.components.piece'
|
||||
local Grid = require 'tetris.components.grid'
|
||||
local Randomizer = require 'tetris.randomizers.randomizer'
|
||||
local Bag7Randomizer = require 'tetris.randomizers.bag7noI'
|
||||
local MarathonGF = require 'tetris.modes.marathon_gf'
|
||||
|
||||
local TetrsChallenge = MarathonGF:extend()
|
||||
|
||||
TetrsChallenge.name = "Another mode"
|
||||
TetrsChallenge.hash = "Tetrs2"
|
||||
TetrsChallenge.mode = "MarathonGF"
|
||||
TetrsChallenge.ruleset = "Standard"
|
||||
TetrsChallenge.tagline = "Hey look! The feature works!"
|
||||
TetrsChallenge.description = "This is just a clone of Tetrs to test out the challenge details feature."
|
||||
|
||||
function TetrsChallenge:new()
|
||||
|
||||
TetrsChallenge.super:new()
|
||||
self.randomizer = Bag7Randomizer()
|
||||
self.next_queue_length = 6
|
||||
end
|
||||
|
||||
return TetrsChallenge
|
||||
Reference in New Issue
Block a user