summaryrefslogtreecommitdiffhomepage
path: root/maps/rill.lua
blob: e150335bff5a89e966d9003c86c224af1c0bf192 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
return {
	-- CENTER AND SIZE
	name = "rill",
	theme = "rill.ogg",
	center_x = 0,
	center_y = 75,
	width  = 400,
	height = 260,
	-- RESPAWN POINTS
	respawns = {
		{x = -135, y = 10},
		{x = -135, y = 10},
		{x =  135, y = 10},
		{x =  135, y = 10}
	},
	-- GRAPHICS
	clouds = false,
	background = "assets/backgrounds/rill.png",
	platforms = {
		{
			x = -151,
			y = 25,
			shape = {0,0, 56,0, 56,12, 0,12},
			sprite = "assets/platforms/rill-flat-left.png"
		},
		{
			x = 93,
			y = 25,
			shape = {0,0, 56,0, 56,12, 0,12},
			sprite = "assets/platforms/rill-flat-right.png"
		},
		{
			x = -24,
			y = 55,
			shape = {0,0, 49,0, 47,18, 3,18, 0,4},
			sprite = "assets/platforms/rill-center.png"
		},
		{
			x = -112,
			y = 80,
			shape = {78,30, 17,0, 0,0, 0,7, 78,45},
			sprite = "assets/platforms/rill-slope-left.png"
		},
		{
			x = 35,
			y = 80,
			shape = {0,30, 61,0, 78,0, 78,7, 0,45},
			sprite = "assets/platforms/rill-slope-right.png"
		}
	},
	decorations = {
		{
			x = 98,
			y = -20,
			sprite = "assets/decorations/rill-lollipop-big-purple.png"
		},
		{
			x = 127,
			y = 4,
			sprite = "assets/decorations/rill-lollipop-small-green.png"
		},
		{
			x = -152,
			y = -20,
			sprite = "assets/decorations/rill-lollipop-big-orange.png"
		},
		{
			x = -121,
			y = 4,
			sprite = "assets/decorations/rill-lollipop-small-blue.png"
		},
	}
}