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
|
STARSYSTEM
name: Black
/*************************************
sky: {
nebula: "Nebula1.mag",
poly_stars: "stars.mag",
haze: "Janus/TerrainHaze.mag"
}
stars: 500
dust: 300
/*************************************/
ambient: (32, 32, 32)
star: {
name: BlackStar,
image: "Suns/G3.pcx",
tscale: 6,
radius: 16e8,
mass: 2e30,
light: 1.6e11,
color: (255, 250, 230),// - standard yellow
back: ( 70, 80, 130) // - nebula1
}
planet: {
name: Blackout,
image_west: "Moons/rock_w.pcx",
image_east: "Moons/rock_e.pcx",
radius: 3e3,
mass: 5.6e26,
orbit: 1.8e11,
tscale: 2,
rotation: 16.3
}
region: {
name: Medium,
radius: 480e3,
grid: 20e3,
orbit: 1.55e8,
inclination: 0.4
}
|