-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathplanets.lua
51 lines (46 loc) · 1.66 KB
/
planets.lua
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
-- miranda
planetoidgen.register_planet({
pos = { x = -25670, y = 7500, z = 5280 },
radius = 250, type = "class-m", name = "miranda", airshell = true
})
planetoidgen.register_planet({
pos = { x = -25670, y = 7500, z = 6800 },
radius = 250, type = "class-m", name = "kiedtl's planet", airshell = true
})
planetoidgen.register_planet({
pos = { x = 30000, y = 9000, z = 30000 },
radius = 80, type = "class-m", name = "int's restaurant", airshell = true
})
planetoidgen.register_planet({
pos = { x = -22400, y = 8210, z = 13500 },
radius = 250, type = "class-m", name = "Eula's planet", airshell = true
})
-- unnamed system
planetoidgen.register_planet({
pos = { x = 9000, y = 9500, z = 5000 },
radius = 400, type = "sun", name = "system-2 sun"
})
planetoidgen.register_planet({
pos = { x = 9000, y = 9500, z = 6000 },
radius = 300, type = "class-p", name = "system-2 top", airshell = true
})
planetoidgen.register_planet({
pos = { x = 9866, y = 9500, z = 5500 },
radius = 300, type = "class-m", name = "system-2 top-right", airshell = true
})
planetoidgen.register_planet({
pos = { x = 9866, y = 9500, z = 4500 },
radius = 300, type = "class-m", name = "system-2 bottom-right", airshell = true
})
planetoidgen.register_planet({
pos = { x = 9000, y = 9500, z = 4000 },
radius = 300, type = "class-h", name = "system-2 bottom desert", airshell = true
})
planetoidgen.register_planet({
pos = { x = 8134, y = 9500, z = 4500 },
radius = 300, type = "class-m", name = "system-2 bottom-left", airshell = true
})
planetoidgen.register_planet({
pos = { x = 8134, y = 9500, z = 5500 },
radius = 300, type = "class-m", name = "system-2 top-left", airshell = true
})