Skip to content

Commit

Permalink
1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
severedsolo committed Jul 1, 2015
1 parent a4a01fb commit 6bef742
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Biome.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CONTRACT_TYPE:NEEDS[SCANsat]
topic = Science
subject = Kerbal
motivation = Scanning
synopsis = Do a Biome scan of @/targetbody2
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
Expand Down
64 changes: 64 additions & 0 deletions HiRes.cfg
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
}
}
2 changes: 1 addition & 1 deletion LoRes.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CONTRACT_TYPE:NEEDS[SCANsat]
topic = Science
subject = Kerbal
motivation = Scanning
synopsis = Do a low resolution scan of @/targetBody1
synopsis = Perform a RADAR scan of @/targetBody1
completedMessage = Excellent work, despite the grainy monochrome image we've recovered our experts are very excited to see what they can find.
minExpiry = 1
maxExpiry = 7
Expand Down
64 changes: 64 additions & 0 deletions M700.cfg
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
}
}
2 changes: 1 addition & 1 deletion ScanSatLite.version
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"VERSION" :
{
"MAJOR" : 1,
"MINOR" : 1,
"MINOR" : 2,
"PATCH" : 0,
"BUILD" : 0
},
Expand Down

0 comments on commit 6bef742

Please sign in to comment.