erect stages at a later date becuase i had to MANUALLY convert spirit's txt file into an xml
177 lines
3.1 KiB
Lua
177 lines
3.1 KiB
Lua
local order = {
|
|
{
|
|
name = "bopeebo",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "dadpixel"
|
|
},
|
|
{
|
|
name = "fresh",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "dadpixel"
|
|
},
|
|
{
|
|
name = "dadbattle",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "dadpixel"
|
|
},
|
|
{
|
|
name = "spookeez",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "spookypixel"
|
|
},
|
|
{
|
|
name = "south",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "spookypixel"
|
|
},
|
|
{
|
|
name = "pico",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "picopixel"
|
|
},
|
|
{
|
|
name = "philly-nice",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "picopixel"
|
|
},
|
|
{
|
|
name = "blammed",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "picopixel"
|
|
},
|
|
{
|
|
name = "cocoa",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "parents-christmaspixel"
|
|
},
|
|
{
|
|
name = "eggnog",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "parents-christmaspixel"
|
|
},
|
|
{
|
|
name = "senpai",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "bfpixel"
|
|
},
|
|
{
|
|
name = "roses",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "bfpixel"
|
|
},
|
|
{
|
|
name = "thorns",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "bfpixel"
|
|
},
|
|
{
|
|
name = "ugh",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "tankmanpixel"
|
|
},
|
|
{
|
|
name = "guns",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "tankmanpixel"
|
|
},
|
|
{
|
|
name = "stress",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "tankmanpixel"
|
|
}--[[,
|
|
{
|
|
name = "darnell",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "darnellpixel"
|
|
},
|
|
{
|
|
name = "lit-up",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "darnellpixel"
|
|
},
|
|
{
|
|
name = "2hot",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "darnellpixel"
|
|
}]]
|
|
}
|
|
|
|
return order |