summaryrefslogtreecommitdiffhomepage
path: root/config/maps/ribbit.lua
blob: c3f5c780c429c947d820aa8cea67a9c87ce73971 (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 {
	-- GENERAL
	name = "ribbit",
	theme = "ribbit.ogg",
	center_x = 0,
	center_y = 50,
	width  = 360,
	height = 240,
	-- RESPAWN POINTS
	respawns = {
		{x = -15, y = -80},
		{x =  -5, y = -80},
		{x =   5, y = -80},
		{x =  15, y = -80}
	},
	-- GRAPHICS
	clouds = false,
	background = "assets/backgrounds/ribbit.png",
	platforms = {
		{
			x = -154,
			y = 10,
			shape = {1,12, 48,12, 48,32, 1,32},
			sprite = "assets/platforms/ribbit-left.png"
		},
		{
			x = 67,
			y = 7,
			shape = {36,14, 83,14, 83,29, 36,29},
			sprite = "assets/platforms/ribbit-right.png"
		},
		{
			x = -70,
			y = -5,
			shape = {0,3, 139,3, 134,24, 5,24},
			sprite = "assets/platforms/ribbit-top.png"
		},
		{
			x = -54,
			y = 63,
			shape = {0,3, 107,3, 75,44, 32,44},
			sprite = "assets/platforms/ribbit-bottom.png"
		}
	},
	decorations = {}
}