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
74
75
76
77
78
|
return
{
name = "Starstorm",
theme = "starstorm.ogg",
portrait = "assets/maps/starstorm.png",
center = {x = 0, y = -20},
width = 400,
height = 260,
respawns = {
{x = 100, y = 45},
{x = -100, y = 45},
{x = -90, y = -25},
{x = 90, y = -25},
{x = -110, y = -70},
{x = 110, y = -70}
},
create = {
{
ratio = 0,
background = "assets/backgrounds/starstorm.png"
},
{
x = -170,
y = -55,
platform = "starstorm-left-top"
},
{
x = -156,
y = -2,
platform = "starstorm-left-middle"
},
{
x = -160,
y = 69,
platform = "starstorm-left-bottom"
},
{
x = 52,
y = -55,
platform = "starstorm-right-top"
},
{
x = 44,
y = -2,
platform = "starstorm-right-middle"
},
{
x = 55,
y = 69,
platform = "starstorm-right-bottom"
},
{
x = -27,
y = 40,
platform = "starstorm-center"
},
{
x = -166,
y = -37,
decoration = "assets/decorations/starstorm-left-top.png"
},
{
x = -163,
y = 19,
decoration = "assets/decorations/starstorm-left-bottom.png"
},
{
x = 119,
y = -37,
decoration = "assets/decorations/starstorm-right-top.png"
},
{
x = 129,
y = 19,
decoration = "assets/decorations/starstorm-right-bottom.png"
}
}
}
|