sonic-bluestreak/sonic-bluestreak.love/datas/subgame/sonic-boost/levels/zones.lua

49 lines
895 B
Lua
Raw Normal View History

2019-02-03 20:33:44 +01:00
return {
["forest"] = {
name = "Jade Forest",
borders = 0,
tiles = 0,
background = "forest",
2019-02-14 21:46:49 +01:00
music = "1-01- Beyond The Speed Of"
2019-02-03 20:33:44 +01:00
},
["city"] ={
name = "Diamond Highway",
borders = 1,
tiles = 1,
background = "city",
music = "city"
},
["tunnel"] ={
name = "Peridot Tunnel",
borders = 2,
tiles = 2,
background = "tunnel",
music = nil
},
["mountain"] ={
name = "Pearl Mountain",
borders = 3,
tiles = 3,
background = "mountain"
},
["hills"] ={
name = "Calcite Hills",
borders = 4,
tiles = 4,
background = "hills"
},
["bridge"] ={
name = "Carnelian Bridge",
borders = 5,
tiles = 5,
background = "bridge"
},
["castle"] ={
name = "Ametist Castle",
borders = 6,
tiles = 6,
background = "castle",
music = nil
},
}