All the remaining stuff from silly billy is now removed Changed the camera tween time
209 lines
4.0 KiB
Lua
209 lines
4.0 KiB
Lua
local order = {
|
|
{
|
|
name = "tutorial",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "gfpixel"
|
|
},
|
|
{
|
|
name = "bopeebo",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare",
|
|
},
|
|
icon = "dadpixel"
|
|
},
|
|
{
|
|
name = "fresh",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "dadpixel"
|
|
},
|
|
{
|
|
name = "dadbattle",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "dadpixel"
|
|
},
|
|
{
|
|
name = "spookeez",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "spookypixel"
|
|
},
|
|
{
|
|
name = "south",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "spookypixel"
|
|
},
|
|
{
|
|
name = "monster",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "monsterpixel"
|
|
},
|
|
{
|
|
name = "pico",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "picopixel"
|
|
},
|
|
{
|
|
name = "philly-nice",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "picopixel"
|
|
},
|
|
{
|
|
name = "blammed",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "picopixel"
|
|
},
|
|
{
|
|
name = "satin-panties",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "mommypixel"
|
|
},
|
|
{
|
|
name = "high",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "mommypixel"
|
|
},
|
|
{
|
|
name = "milf",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "mommypixel"
|
|
},
|
|
{
|
|
name = "cocoa",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "parents-christmaspixel"
|
|
},
|
|
{
|
|
name = "eggnog",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare"
|
|
},
|
|
icon = "parents-christmaspixel"
|
|
},
|
|
{
|
|
name = "winter-horrorland",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "monsterpixel"
|
|
},
|
|
{
|
|
name = "ugh",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard",
|
|
"erect",
|
|
"nightmare",
|
|
"nightmare"
|
|
},
|
|
icon = "tankmanpixel"
|
|
},
|
|
{
|
|
name = "guns",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "tankmanpixel"
|
|
},
|
|
{
|
|
name = "stress",
|
|
difficulties = {
|
|
"easy",
|
|
"normal",
|
|
"hard"
|
|
},
|
|
icon = "tankmanpixel"
|
|
},
|
|
{
|
|
name = "black2blue",
|
|
difficulties = {
|
|
"hard"
|
|
},
|
|
icon = "bfpixel"
|
|
}
|
|
}
|
|
|
|
return order |