-
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
6bef742
commit 960f299
Showing
3 changed files
with
67 additions
and
6 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,62 @@ | ||
CONTRACT_TYPE:NEEDS[SCANsat] | ||
{ | ||
name = NarrowBand | ||
title = Scan @/targetBody5 for Ore | ||
group = ScanSatLite | ||
topic = Science | ||
subject = Kerbal | ||
motivation = Scanning | ||
synopsis = Scan @/targetBody5 with the M4435 Narrow-Band 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 = @/targetBody5 | ||
// 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 | ||
targetBody5 = OrbitedBodies().Where(a => a.HasSurface()).Random() | ||
} | ||
PARAMETER:NEEDS[SCANsat] | ||
{ | ||
name = SCANsatCoverage | ||
type = SCANsatCoverage | ||
targetBody = @/targetBody5 | ||
coverage = 95.0 | ||
scanType = Ore | ||
} | ||
REQUIREMENT:NEEDS[SCANsat] | ||
{ | ||
name = SCANsatCoverage | ||
type = SCANsatCoverage | ||
targetBody = @/targetBody5 | ||
minCoverage = 94.9 | ||
scanType = FuzzyResources | ||
} | ||
REQUIREMENT | ||
{ | ||
name = Orbit | ||
type = Orbit | ||
targetBody = @/targetBody5 | ||
} | ||
REQUIREMENT | ||
{ | ||
name = PartUnlocked | ||
type = PartUnlocked | ||
part = OrbitalScanner | ||
} | ||
} |
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" : 2, | ||
"MINOR" : 3, | ||
"PATCH" : 0, | ||
"BUILD" : 0 | ||
}, | ||
|