forked from severedsolo/ScanSatLite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Biome.cfg
64 lines (61 loc) · 1.47 KB
/
Biome.cfg
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
CONTRACT_TYPE:NEEDS[SCANsat]
{
name = Biome
title = Do a Biome Scan of @/targetbody2
group = ScanSatLite
topic = Science
subject = Kerbal
motivation = Scanning
synopsis = Perform a MultiSpectral scan of @/targetbody2
completedMessage = Stunning, through the advances with this scanner we have identified several different biomes for further study.
minExpiry = 1
maxExpiry = 7
deadline = Random(500, 1000)
cancellable = true
declinable = true
autoAccept = false
targetBody = @/targetbody2
// Contract rewards
rewardScience = 0
rewardReputation = 1
rewardFunds = Random(40000, 60000.0)
failureReputation = 1
failureFunds = Random(1, 10000.0)
advanceFunds = Random(1, 10000.0)
DATA
{
type = CelestialBody
requiredValue = true
uniqueValue = true
targetbody2 = OrbitedBodies().Where(a => a.HasSurface()).Random()
}
PARAMETER:NEEDS[SCANsat]
{
name = SCANsatCoverage
type = SCANsatCoverage
targetBody = @/targetbody2
coverage = 95.0
scanType = Biome
}
REQUIREMENT:NEEDS[SCANsat]
{
name = SCANsatCoverage
type = SCANsatCoverage
targetBody = @/targetbody2
minCoverage = 0.0
maxCoverage = 94.9
scanType = Biome
}
REQUIREMENT
{
name = Orbit
type = Orbit
targetBody = @/targetbody2
}
REQUIREMENT
{
name = PartUnlocked
type = PartUnlocked
part = SCANsat_Scanner24
}
}