Skip to content

Commit

Permalink
1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
severedsolo committed May 18, 2015
1 parent 71c473b commit 8afb23f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions Biome.cfg
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
CONTRACT_TYPE:NEEDS[SCANsat]
{
name = Biome
title = Do a Biome Scan of @/targetBody1
title = Do a Biome Scan of @/targetbody2
group = ScanSatLite

topic = Science
subject = Kerbal
motivation = Scanning
synopsis = Do a Biome scan of @/targetBody1
synopsis = Do a Biome 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
maxSimultaneous = 1
targetBody = @/targetBody1
targetBody = @/targetbody2
// Contract rewards
rewardScience = 0
rewardReputation = 1
Expand All @@ -29,22 +28,23 @@ CONTRACT_TYPE:NEEDS[SCANsat]
{
type = CelestialBody
requiredValue = true
targetBody1 = OrbitedBodies().Random()
uniqueValue = true
targetbody2 = OrbitedBodies().Where(a => a.HasSurface()).Random()
}

PARAMETER:NEEDS[SCANsat]
{
name = SCANsatCoverage
type = SCANsatCoverage
targetBody = @/targetBody1
targetBody = @/targetbody2
coverage = 95.0
scanType = Biome
}
REQUIREMENT:NEEDS[SCANsat]
{
name = SCANsatCoverage
type = SCANsatCoverage
targetBody = @/targetBody1
targetBody = @/targetbody2
minCoverage = 0.0
maxCoverage = 94.9
scanType = Biome
Expand All @@ -53,7 +53,7 @@ REQUIREMENT
{
name = Orbit
type = Orbit
targetBody = @/targetBody1
targetBody = @/targetbody2
}
REQUIREMENT
{
Expand Down
2 changes: 1 addition & 1 deletion ContractPackScanSatLite.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CONTRACT_GROUP
// Name of the contract group
name = ScanSatLite

minVersion = 1.0.2
minVersion = 1.1.0

maxSimultaneous = 3
}
4 changes: 2 additions & 2 deletions LoRes.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ CONTRACT_TYPE:NEEDS[SCANsat]
declinable = true
autoAccept = false
targetBody = @/targetBody1
maxSimultaneous = 1
// Contract rewards
rewardScience = 0
rewardReputation = 1
Expand All @@ -29,7 +28,8 @@ CONTRACT_TYPE:NEEDS[SCANsat]
{
type = CelestialBody
requiredValue = true
targetBody1 = OrbitedBodies().Random()
uniqueValue = true
targetBody1 = OrbitedBodies().Where(a => a.HasSurface()).Random()
}
PARAMETER:NEEDS[SCANsat]
Expand Down
4 changes: 2 additions & 2 deletions ScanSatLite.version
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"VERSION":
{
"MAJOR":1,
"MINOR":0,
"PATCH":3,
"MINOR":1,
"PATCH":0,
"BUILD":0
},
"KSP_VERSION":
Expand Down

0 comments on commit 8afb23f

Please sign in to comment.