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
|
return {
-- CENTER AND SIZE
name = "rill",
theme = "rill.mp3",
center_x = 0,
center_y = 65,
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 = -160,
y = 25,
shape = {2,2, 47,2, 47,18, 2,18},
sprite = "assets/platforms/rill-block-left.png"
},
{
x = 110,
y = 25,
shape = {0,2, 46,2, 42,18, 0,18},
sprite = "assets/platforms/rill-block-right.png"
},
{
x = -32,
y = 70,
shape = {2,2, 62,2, 42,18, 22,18},
sprite = "assets/platforms/rill-center.png"
},
{
x = -110,
y = 90,
shape = {2,2, 18,2, 76,41, 75,61, 2,9},
sprite = "assets/platforms/rill-slide-left.png"
},
{
x = 34,
y = 90,
shape = {2,44, 64,2, 75,2, 7,57},
sprite = "assets/platforms/rill-slide-right.png"
}
},
decorations = {}
}
|