Skip to content

Commit

Permalink
Lasso improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Angel-125 committed Feb 12, 2018
1 parent fb2cc08 commit 71121b1
Show file tree
Hide file tree
Showing 31 changed files with 1,146 additions and 484 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ attachRules = 1,1,1,0,1
MODULE
{
name = ModuleActiveRadiator
maxEnergyTransfer = 2500
maxEnergyTransfer = 3500
overcoolFactor = 0.25
isCoreRadiator = true
parentCoolingOnly = true
Expand Down
8 changes: 8 additions & 0 deletions GameData/WildBlueIndustries/000WildBlueTools/Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ A KSP mod that provides common functionality for mods by Wild Blue Industries.

Copy the contents of the mod's GameData directory into your GameData folder.

1.40
- Streamlined the WBIModuleResourceConverter
- WBIProspector now supports one or more harvest types.
- WBIProspector can now prospect resources from the atmosphere, exosphere, ocean, and planet.

1.31.2
- Bug Fixes

1.39.1
- Cruise Control fix for single-mode engines. They still need ModuleEnginesFX though.
- Fix for deprecated parts.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,100 @@ PLANETARY_RESOURCE
Variance = 0
Dispersal = 0
}
}

//Exospheric
PLANETARY_RESOURCE
{
ResourceName = Minerite
ResourceType = 3
PlanetName = Kerbin

Distribution
{
PresenceChance = 100
MinAbundance = .01
MaxAbundance = .5
Variance = 0
MinAltitude = 0.234 //Should begin right at edge of atmo
MaxAltitude = 0.234
MinRange = 1
MaxRange = 1
}
}

PLANETARY_RESOURCE
{
ResourceName = Minerite
ResourceType = 3
PlanetName = Laythe

Distribution
{
PresenceChance = 100
MinAbundance = .01
MaxAbundance = .5
Variance = 0
MinAltitude = .2 //Should begin right at edge of atmo
MaxAltitude = .2
MinRange = 1
MaxRange = 1
}
}

PLANETARY_RESOURCE
{
ResourceName = Minerite
ResourceType = 3
PlanetName = Eve

Distribution
{
PresenceChance = 100
MinAbundance = .1
MaxAbundance = .5
Variance = 0
MinAltitude = .257 //Should begin right at edge of atmo
MaxAltitude = .257
MinRange = 1
MaxRange = 1
}
}

PLANETARY_RESOURCE
{
ResourceName = Minerite
ResourceType = 3
PlanetName = Duna

Distribution
{
PresenceChance = 100
MinAbundance = .001
MaxAbundance = .05
Variance = 0
MinAltitude = .001 //Should begin right at edge of atmo
MaxAltitude = .001
MinRange = 1
MaxRange = 1
}
}

PLANETARY_RESOURCE
{
ResourceName = Minerite
ResourceType = 3
PlanetName = Jool

Distribution
{
PresenceChance = 100
MinAbundance = .1
MaxAbundance = .5
Variance = 0
MinAltitude = 0.0665 //Should begin right at edge of atmo
MaxAltitude = 0.0665
MinRange = 1
MaxRange = 1
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,100 @@ PLANETARY_RESOURCE
Variance = 0
Dispersal = 0
}
}

//Exospheric
PLANETARY_RESOURCE
{
ResourceName = Nitronite
ResourceType = 3
PlanetName = Kerbin

Distribution
{
PresenceChance = 100
MinAbundance = .01
MaxAbundance = .5
Variance = 0
MinAltitude = 0.234 //Should begin right at edge of atmo
MaxAltitude = 0.234
MinRange = 1
MaxRange = 1
}
}

PLANETARY_RESOURCE
{
ResourceName = Nitronite
ResourceType = 3
PlanetName = Laythe

Distribution
{
PresenceChance = 100
MinAbundance = .01
MaxAbundance = .5
Variance = 0
MinAltitude = .2 //Should begin right at edge of atmo
MaxAltitude = .2
MinRange = 1
MaxRange = 1
}
}

PLANETARY_RESOURCE
{
ResourceName = Nitronite
ResourceType = 3
PlanetName = Eve

Distribution
{
PresenceChance = 100
MinAbundance = .1
MaxAbundance = .5
Variance = 0
MinAltitude = .257 //Should begin right at edge of atmo
MaxAltitude = .257
MinRange = 1
MaxRange = 1
}
}

PLANETARY_RESOURCE
{
ResourceName = Nitronite
ResourceType = 3
PlanetName = Duna

Distribution
{
PresenceChance = 100
MinAbundance = .001
MaxAbundance = .05
Variance = 0
MinAltitude = .001 //Should begin right at edge of atmo
MaxAltitude = .001
MinRange = 1
MaxRange = 1
}
}

PLANETARY_RESOURCE
{
ResourceName = Nitronite
ResourceType = 3
PlanetName = Jool

Distribution
{
PresenceChance = 100
MinAbundance = .1
MaxAbundance = .5
Variance = 0
MinAltitude = 0.0665 //Should begin right at edge of atmo
MaxAltitude = 0.0665
MinRange = 1
MaxRange = 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
STORAGE_TEMPLATE:NEEDS[SnacksUtils]
{
author = Angel-125
name = Snacks Greenhouse
shortName = Snacks
logoPanel = WildBlueIndustries/000WildBlueTools/Decals/LifeSupport
glowPanel = WildBlueIndustries/000WildBlueTools/Decals/LifeSupportGlow
description = This kit stores resources needed for a Snacks greenhouse.
templateTags = stowage

RESOURCE
{
name = Soil
amount = 1120
maxAmount = 1120
}

RESOURCE
{
name = Water
amount = 1120
maxAmount = 1120
}

RESOURCE
{
name = Compost
amount = 1120
maxAmount = 1120
}

RESOURCE
{
name = Minerite
amount = 1120
maxAmount = 1120
}

RESOURCE
{
name = Snacks
amount = 1120
maxAmount = 1120
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ RESOURCE_DEFINITION:NEEDS[!CommunityResourcePack]
name = Lead
displayName = Lead
density = 0.01134
unitCost = 0.067392
unitCost = 0.0
hsp = 128
flowMode = ALL_VESSEL
transfer = PUMP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,22 @@ STORAGE_TEMPLATE
maxAmount = 5600
}

}

GLOBAL_RESOURCE
{
ResourceName = Propellium
ResourceType = 3

Distribution
{
PresenceChance = 100
MinAbundance = .00000001
MaxAbundance = .00000005
MinAltitude = 500
MaxAltitude = 200000000000
MinRange = .01
MaxRange = .5
Variance = 20
}
}
Loading

0 comments on commit 71121b1

Please sign in to comment.