# 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 = 3000
@power_M1 = 6000
@power_L1 = 12000
#############
#	COST	#
#############

@cost_S1 = 5
@cost_M1 = 10
@cost_L1 = 20




# DC
utility_component_template = {
	key = "SMALL_DC"
	size = small
	icon = "GFX_ship_part_reactor_1"
	icon_frame = 1
	power = @power_S1
	cost = @cost_S1
	component_set = "DC"
	prerequisites = { "tech_black_tech"  }
	ai_weight = {
    weight = 0
    }
    allow = {
    is_ai = no
    }
}

utility_component_template = {
	key = "MEDIUM_DC"
	size = medium
	icon = "GFX_ship_part_reactor_1"
	icon_frame = 1
	power = @power_M1
	cost = @cost_M1
	component_set = "DC"
	prerequisites = { "tech_black_tech"  }
	ai_weight = {
    weight = 0
    }
    allow = {
    is_ai = no
    }
}

utility_component_template = {
	key = "LARGE_DC"
	size = large
	icon = "GFX_ship_part_reactor_1"
	icon_frame = 1
	power = @power_L1
	cost = @cost_L1
	component_set = "DC"
	prerequisites = { "tech_black_tech"  }
	ai_weight = {
    weight = 0
    }
    allow = {
    is_ai = no
    }
}