//
//	
//	Resource: Antimatter
//
//Resource types:  
//	0 = Crustal			(Stuff you dig up)
//	1 = Oceanic			(Stuff in the oceans)
//	2 = Atmospheric		(Stuff in the air, varies with pressure)
//	3 = Interplanetary	(Stuff you find between planets)
//
//Express all numbers as percentages 0.0-100.0, not 0.0-1.0!
//

//Default : Crustal ranges between Kerbin and Mun
GLOBAL_RESOURCE
{
	ResourceName = Antimatter
	ResourceType = 3
	
	Distribution
	{
		PresenceChance = 50
		MinAbundance = 0
		MaxAbundance = 0.1
		MinAltitude = 1000
		MaxAltitude = 4000
		MinRange = 5
		MaxRange = 10
		Variance = 100
	}
}

PLANETARY_RESOURCE
{
	ResourceName = Antimatter
	ResourceType = 3
	PlanetName = Mun
	
	Distribution
	{
		PresenceChance = 0
		MinAbundance = 0
		MaxAbundance = 0
	}
}

PLANETARY_RESOURCE
{
	ResourceName = Antimatter
	ResourceType = 3
	PlanetName = Kerbin
	
	Distribution
	{
		PresenceChance = 90
		MinAbundance = 0.1
		MaxAbundance = 0.2
		MinAltitude = 2500
		MaxAltitude = 3500
		MinRange = 5
		MaxRange = 10
		Variance = 50
	}
}

PLANETARY_RESOURCE
{
	ResourceName = Antimatter
	ResourceType = 3
	PlanetName = Kerbin
	
	Distribution
	{
		PresenceChance = 80
		MinAbundance = 0.01
		MaxAbundance = 0.2
		MinAltitude = 5500
		MaxAltitude = 6500
		MinRange = 10
		MaxRange = 20
		Variance = 50
	}
}

PLANETARY_RESOURCE
{
	ResourceName = Antimatter
	ResourceType = 3
	PlanetName = Jool
	
	Distribution
	{
		PresenceChance = 95
		MinAbundance = 0.5
		MaxAbundance = 2
		MinAltitude = 4000
		MaxAltitude = 8000
		MinRange = 1000
		MaxRange = 2000
		Variance = 50
	}
}


