Subsystem: FissionGen
	Name: #FISSIONGEN_NAME
	Description: #FISSIONGEN_DESC
	BaseColor: #00a4db
	Elevation: 1

	Tags: DefaultUnlock, IsReactor, Category:Control
	Tags: Important, HasInternals
	Hull: Flagship, Station

	Size := HexSize * Hexes
	Power := 15 * Size

	SupplyCapacity := Size * 500
	SupplyRate := Size * 30

	Hex.Resistance := 0.5
	Hex.HP := 18 * HexSize
	Hex.Mass := 2.5 * HexSize
	
	Hex.LaborCost := 0.1 * HexSize + 0.1
	Hex.BuildCost := 1 * HexSize + 0.6
	Hex.MaintainCost := HexSize + 1
	
	Provides:
		Power = Power

	Module: Default
		Hex.BuildCost := 0.9 * Hex.BuildCost
		Hex.Mass := 0.9 * Hex.Mass
	
	Module: Core
		Hex.BuildCost := 5.0 * Hex.BuildCost
		Hex.Mass := 5.0 * Hex.Mass
		Sprite: FissionReactor

	Modifier: SupplyCapacityFactor(factor)
		SupplyCapacity := SupplyCapacity * factor
