
#############
#	COST	#
#############

@cost_3S = 10
@cost_3M = 20
@cost_3L = 50


# ####################
#  Critter Utilities - All
# ####################


# Auto-Repair / Hull Regeneration

utility_component_template = {
	key = "SMALL_AUTO_REPAIR"
	size = small
	icon = "GFX_ship_part_auto_repair"
	icon_frame = 1
	power = -10
	cost = @cost_3S
	modifier = {
		ship_auto_repair_add = 0.0005 # Regenerates 0.5% ship-health per month
	}
	prerequisites = { tech_regenerative_hull_tissue }
	component_set = "AUTO_REPAIR"
	military_power = 1
}

utility_component_template = {
	key = "MEDIUM_AUTO_REPAIR"
	size = medium
	icon = "GFX_ship_part_auto_repair"
	icon_frame = 1
	power = -25
	cost = @cost_3M

	modifier = {
		ship_auto_repair_add = 0.002 # Regenerates 1% ship-health per month
	}
	
	prerequisites = { tech_regenerative_hull_tissue }
	component_set = "AUTO_REPAIR"
	military_power = 1
}

utility_component_template = {
	key = "LARGE_AUTO_REPAIR"
	size = large
	icon = "GFX_ship_part_auto_repair"
	icon_frame = 1
	power = -50
	cost = @cost_3L

	modifier = {
		ship_auto_repair_add = 0.005 # Regenerates 5% ship-health per month
	}
	
	prerequisites = { tech_regenerative_hull_tissue }
	component_set = "AUTO_REPAIR"
	military_power = 1
}


