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
|
return {
-- CENTER AND SIZE
name = "rill",
center_x = 0,
center_y = 60,
width = 320,
height = 240,
-- RESPAWN POINTS
respawns = {
{x = -100, y = 10},
{x = -100, y = 10},
{x = 100, y = 10},
{x = 100, y = 10}
},
-- GRAPHICS
clouds = false,
background = "assets/background-rill.png",
platforms = {
{
x = -120,
y = 30,
shape = {0,0, 40,0, 40,15, 0,15},
sprite = "assets/platform_top.png"
},
{
x = 80,
y = 30,
shape = {0,0, 40,0, 40,15, 0,15},
sprite = "assets/platform_top.png"
},
{
x = -15,
y = 70,
shape = {0,0, 30,0, 30,15, 0,15},
sprite = "assets/platform_top.png"
},
{
x = -110,
y = 90,
shape = {0,0, 10,-10, 90,80, 80,90},
sprite = "assets/platform_top.png"
},
{
x = 110,
y = 90,
shape = {0,0, -10,-10, -90,80, -80,90},
sprite = "assets/platform_top.png"
}
},
decorations = {}
}
|