# Icons set here are the ones show in the actual slot. The reason is so that we can support different icons for different sizes. 
#############
#	POWER	#
#############

@power_S1 = 0.01
@power_M1 = 0.01
@power_L1 = 0.01
            
#############
#	COST	#
#############

@cost_S1 = 0
@cost_M1 = 0
@cost_L1 = 0

#############
# UTILITIES #
#############

### REACTORS

# Fission Reactors
utility_component_template = {
	key = "SMALL_FISSION_REACTOR"
	size = small
	icon = "GFX_ship_part_reactor_1"
	icon_frame = 1
	power = @power_S1
	cost = 0

	ai_weight = {
		weight = 0
	}
	
	prerequisites = { "tech_fission_power" }
	component_set = "FISSION_REACTOR"
}

utility_component_template = {
	key = "MEDIUM_FISSION_REACTOR"
	size = medium
	icon = "GFX_ship_part_reactor_1"
	icon_frame = 1
	power = @power_M1
	cost = 0
	
	ai_weight = {
		weight = 0
	}
	
	prerequisites = { "tech_fission_power" }
	component_set = "FISSION_REACTOR"
}

utility_component_template = {
	key = "LARGE_FISSION_REACTOR"
	size = large
	icon = "GFX_ship_part_reactor_1"
	icon_frame = 1
	power = @power_L1
	cost = 0
	
	ai_weight = {
		weight = 0
	}
	
	prerequisites = { "tech_fission_power" }
	component_set = "FISSION_REACTOR"
}