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
|
return
{
name = "Rill",
theme = "rill.ogg",
portrait = "assets/maps/rill.png",
center = {x = 0, y = 75},
width = 400,
height = 260,
respawns = {
{x = -135, y = 10},
{x = -135, y = 10},
{x = 135, y = 10},
{x = 135, y = 10}
},
create = {
{
ratio = 0,
background = "assets/backgrounds/rill.png"
},
{
x = -151,
y = 25,
platform = "rill-flat-left"
},
{
x = 93,
y = 25,
platform = "rill-flat-right"
},
{
x = -24,
y = 55,
platform = "rill-center"
},
{
x = -112,
y = 80,
platform = "rill-slope-left"
},
{
x = 35,
y = 80,
platform = "rill-slope-right"
},
{
x = 98,
y = -20,
decoration = "assets/decorations/rill-lollipop-big-purple.png"
},
{
x = 127,
y = 4,
decoration = "assets/decorations/rill-lollipop-small-green.png"
},
{
x = -152,
y = -20,
decoration = "assets/decorations/rill-lollipop-big-orange.png"
},
{
x = -121,
y = 4,
decoration = "assets/decorations/rill-lollipop-small-blue.png"
}
}
}
|