summaryrefslogtreecommitdiffhomepage
path: root/config/maps/default.lua
blob: 22c03f61b4d715774f4b0d8f7f6adc6ce04bd4d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
return
{
	name = "default",
	theme = "default.ogg",
	portrait = 1, -- TODO: See `maps/ribbit`.
	center = {x = 0, y = 0},
	width  = 360,
	height = 240,
	respawns = {
		{x = -15, y = -80},
		{x =  -5, y = -80},
		{x =   5, y = -80},
		{x =  15, y = -80}
	},
	create = {
		{
			clouds = "assets/clouds.png",
			animations = "clouds-default",
			count = 8,
		},
		{
			ratio = 0,
			background = "assets/backgrounds/default.png"
		},
		{
			x = -91,
			y = 0,
			platform = "default-big"
		},
		{
			x = 114,
			y = 50,
			platform = "default-side"
		},
		{
			x = -166,
			y = 50,
			platform = "default-side"
		},
		{
			x = -17,
			y = -50,
			platform = "default-top"
		}
	}
}