forked from KSP-RO/RealSolarSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCarbonDioxide.cfg
More file actions
89 lines (82 loc) · 1.45 KB
/
CarbonDioxide.cfg
File metadata and controls
89 lines (82 loc) · 1.45 KB
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
79
80
81
82
83
84
85
86
87
88
89
//
// Community Resource Pack
// Resource:
//
//Resource types:
// 0 = Crustal (Stuff you dig up)
// 1 = Oceanic (Stuff in the oceans)
// 2 = Atmospheric (Stuff in the air, varies with pressure)
// 3 = Interplanetary (Stuff you find between planets)
//
//Express all numbers as percentages 0.0-100.0, not 0.0-1.0!
//
PLANETARY_RESOURCE
{
ResourceName = CarbonDioxide
ResourceType = 2
PlanetName = Venus
Distribution
{
PresenceChance = 100
MinAbundance = 96.5
MaxAbundance = 96.5
Variance = 0
}
}
PLANETARY_RESOURCE
{
ResourceName = CarbonDioxide
ResourceType = 2
PlanetName = Earth
Distribution
{
PresenceChance = 100
MinAbundance = 0.039
MaxAbundance = 0.039
Variance = 0
}
}
PLANETARY_RESOURCE
{
ResourceName = CarbonDioxide
ResourceType = 2
PlanetName = Mars
Distribution
{
PresenceChance = 100
MinAbundance = 96
MaxAbundance = 96
Variance = 0
}
}
//Dry ice only seasonally present on Mars, represented by lower abundances, greater variance, and lower dispersal.
BIOME_RESOURCE
{
ResourceName = CarbonDioxide
ResourceType = 0
PlanetName = Mars
BiomeName = North Ice Cap
Distribution
{
PresenceChance = 100
MinAbundance = 5
MaxAbundance = 20
Variance = 15
Dispersal = 2
}
}
BIOME_RESOURCE
{
ResourceName = CarbonDioxide
ResourceType = 0
PlanetName = Mars
BiomeName = South Ice Cap
Distribution
{
PresenceChance = 100
MinAbundance = 20
MaxAbundance = 50
Variance = 10
Dispersal = 3
}
}