sonic-bluestreak/sonic-bluestreak.love/datas/gamedata/maps/shoot/zones.lua

47 lines
834 B
Lua
Raw Normal View History

2019-12-28 12:15:43 +01:00
return {
["forest"] = {
name = "Jade Forest",
2021-11-25 10:52:26 +01:00
borders = 0,
tiles = 0,
2019-12-28 12:15:43 +01:00
background = "forest"
},
["city"] ={
name = "Diamond Highway",
2021-11-25 10:52:26 +01:00
borders = 1,
2019-12-28 12:15:43 +01:00
tiles = 1,
background = "city"
},
["tunnel"] ={
name = "Peridot Tunnel",
2021-11-25 10:52:26 +01:00
borders = 2,
2019-12-28 12:15:43 +01:00
tiles = 2,
background = "tunnel",
music = nil
},
["mountain"] ={
name = "Pearl Mountain",
2021-11-25 10:52:26 +01:00
borders = 3,
2019-12-28 12:15:43 +01:00
tiles = 3,
background = "mountain"
},
2021-11-25 10:52:26 +01:00
["hills"] ={
name = "Calcite Hills",
borders = 4,
tiles = 4,
2019-12-28 12:15:43 +01:00
background = "hills"
},
["bridge"] ={
name = "Carnelian Bridge",
2021-11-25 10:52:26 +01:00
borders = 5,
2019-12-28 12:15:43 +01:00
tiles = 5,
background = "bridge"
},
["castle"] ={
name = "Ametist Castle",
2021-11-25 10:52:26 +01:00
borders = 6,
2019-12-28 12:15:43 +01:00
tiles = 6,
background = "castle",
music = nil
},
}