-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4a01fb
commit 6bef742
Showing
5 changed files
with
131 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
CONTRACT_TYPE:NEEDS[SCANsat] | ||
{ | ||
name = HiRes | ||
title = Do a High Resolution Scan of @/targetBody3 | ||
group = ScanSatLite | ||
|
||
topic = Science | ||
subject = Kerbal | ||
motivation = Scanning | ||
synopsis = Perform a SAR scan of @/targetBody3 | ||
completedMessage = HD Imaging is a wonderful thing. We now have a detailed map of @/targetBody3 | ||
minExpiry = 1 | ||
maxExpiry = 7 | ||
deadline = Random(500, 1000) | ||
cancellable = true | ||
declinable = true | ||
autoAccept = false | ||
targetBody = @/targetBody3 | ||
// 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 | ||
targetBody3 = OrbitedBodies().Where(a => a.HasSurface()).Random() | ||
} | ||
|
||
PARAMETER:NEEDS[SCANsat] | ||
{ | ||
name = SCANsatCoverage | ||
type = SCANsatCoverage | ||
targetBody = @/targetBody3 | ||
coverage = 95.0 | ||
scanType = AltimetryHiRes | ||
} | ||
REQUIREMENT:NEEDS[SCANsat] | ||
{ | ||
name = SCANsatCoverage | ||
type = SCANsatCoverage | ||
targetBody = @/targetBody3 | ||
minCoverage = 0.0 | ||
maxCoverage = 94.9 | ||
scanType = AltimetryHiRes | ||
} | ||
REQUIREMENT | ||
{ | ||
name = Orbit | ||
type = Orbit | ||
targetBody = @/targetBody3 | ||
} | ||
REQUIREMENT | ||
{ | ||
name = PartUnlocked | ||
type = PartUnlocked | ||
part = SCANsat_Scanner2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
CONTRACT_TYPE:NEEDS[SCANsat] | ||
{ | ||
name = M700 | ||
title = Scan @/targetBody4 for Ore | ||
group = ScanSatLite | ||
|
||
topic = Science | ||
subject = Kerbal | ||
motivation = Scanning | ||
synopsis = Scan @/targetBody4 with the M700 Survey Scanner | ||
completedMessage = Look at all that lovely Ore. We'll have to get a survey team together! | ||
minExpiry = 1 | ||
maxExpiry = 7 | ||
deadline = Random(500, 1000) | ||
cancellable = true | ||
declinable = true | ||
autoAccept = false | ||
targetBody = @/targetBody4 | ||
// 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 | ||
targetBody4 = OrbitedBodies().Where(a => a.HasSurface()).Random() | ||
} | ||
PARAMETER:NEEDS[SCANsat] | ||
{ | ||
name = SCANsatCoverage | ||
type = SCANsatCoverage | ||
targetBody = @/targetBody4 | ||
coverage = 95.0 | ||
scanType = Ore | ||
} | ||
REQUIREMENT:NEEDS[SCANsat] | ||
{ | ||
name = SCANsatCoverage | ||
type = SCANsatCoverage | ||
targetBody = @/targetBody4 | ||
minCoverage = 0.0 | ||
maxCoverage = 94.9 | ||
scanType = Ore | ||
} | ||
REQUIREMENT | ||
{ | ||
name = Orbit | ||
type = Orbit | ||
targetBody = @/targetBody4 | ||
} | ||
REQUIREMENT | ||
{ | ||
name = PartUnlocked | ||
type = PartUnlocked | ||
part = SurveyScanner | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"VERSION" : | ||
{ | ||
"MAJOR" : 1, | ||
"MINOR" : 1, | ||
"MINOR" : 2, | ||
"PATCH" : 0, | ||
"BUILD" : 0 | ||
}, | ||
|