HasAntenna Parameter - jrossignol/ContractConfigurator GitHub Wiki
The HasAntenna parameter requires that the vessel has an antenna that meets the specified criteria.
PARAMETER
{
name = HasAntenna
type = HasAntenna
// The minimum antenna power that the vessel must have.
//
// Type: double
// Required: No (defaulted)
// Default: 0.0
//
minAntennaPower = 100.0
// The maximum antenna power that the vessel can have.
//
// Type: double
// Required: No (defaulted)
// Default: double.MaxValue
//
maxAntennaPower = 1000.0
// The type of antenna.
//
// Type: HasAntennaParameter.AntennaType
// Required: No
// Values:
// RELAY
// TRANSMIT
//
antennaType = TRANSMIT
// Text to use for the parameter's title.
//
// Type: string
// Required: No (defaulted)
//
//title =
}