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
|
return
{
name = "Sorona",
theme = "sorona.ogg",
portrait = "assets/maps/sorona.png",
center = {x = 0, y = 0},
width = 360,
height = 240,
respawns = {
{x = -10, y = -20},
{x = 0, y = -20},
{x = 10, y = -20}
},
create = {
{
ratio = 0,
background = "assets/backgrounds/sorona.png",
},
{
x = -71,
y = 50,
platform = "sorona-wide"
},
{
x = -84,
y = -5,
platform = "sorona-small"
},
{
x = -50,
y = -4,
decoration = "assets/decorations/sorona-bridge-left.png"
},
{
x = -14,
y = -4,
decoration = "assets/decorations/sorona-bridge-loop.png"
},
{
x = 14,
y = -4,
decoration = "assets/decorations/sorona-bridge-right.png"
},
{
x = 43,
y = -5,
platform = "sorona-small"
}
}
}
|