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

#############
#	ARMOR	#
#############

@armor_1S = 300
@armor_1M = 900
@armor_1L = 3000

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

@cost_1S = 10
@cost_1M = 20
@cost_1L = 40

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

# Neutronium Armor
utility_component_template = {
	key = "SHISHEN_SMALL_ARMOR1"
	size = small
	icon = "GFX_ship_part_shishen_hujia"
	icon_frame = 1
	power = 0
	cost = @cost_1S
	modifier = {
			ship_armor_add = @armor_1S
			ship_hull_add = @armor_1S
		    ship_armor_regen_add_static = 5

	}
	
	prerequisites = { "tech_black_tech" }
	component_set = "SHISHEN_ARMOR1"
	should_ai_use = no
	

}

utility_component_template = {
	key = "SHISHEN_MEDIUM_ARMOR1"
	size = medium
	icon = "GFX_ship_part_shishen_hujia"
	icon_frame = 1
	power = 0
	cost = @cost_1M
	modifier = {
		ship_armor_add = @armor_1M
		ship_hull_add = @armor_1M
		ship_armor_regen_add_static = 14
		
	}
	
	prerequisites = { "tech_black_tech" }
	component_set = "SHISHEN_ARMOR1"
	should_ai_use = no
	

}

utility_component_template = {
	key = "SHISHEN_LARGE_ARMOR1"
	size = large
	icon = "GFX_ship_part_shishen_hujia"
	icon_frame = 1
	power = 0
	cost = @cost_1L
	modifier = {
		ship_armor_add = @armor_1L
		ship_hull_add = @armor_1L
		ship_armor_regen_add_static = 20
		
	}
	
	prerequisites = { "tech_black_tech" }
	component_set = "SHISHEN_ARMOR1"
	should_ai_use = no
	

}


utility_component_template = {
key = "SHISHEN_Heaven_Armory_SMALL"
size = small
icon = "GFX_ship_part_shishen_xuejia"
icon_frame = 1
power = 0
cost = @cost_1S

modifier = {
ship_hull_add = @armor_1S
	ship_hull_regen_add_static = 5
}

component_set = "SHISHEN_Heaven_Armory"
prerequisites = { "tech_black_tech"  }
should_ai_use = no


}


utility_component_template = {
key = "SHISHEN_Heaven_Armory_MEDIUM"
size = medium
icon = "GFX_ship_part_shishen_xuejia"
icon_frame = 1
power = 0
cost = @cost_1M

modifier = {
ship_hull_add = @armor_1M
	ship_hull_regen_add_static = 7
}

component_set = "SHISHEN_Heaven_Armory"
prerequisites = { "tech_black_tech"  }
should_ai_use = no


}


utility_component_template = {
key = "SHISHEN_Heaven_Armory_LARGE"
size = large
icon = "GFX_ship_part_shishen_xuejia"
icon_frame = 1
power = 0
cost = @cost_1L

modifier = {
ship_hull_add = @armor_1L
	ship_hull_regen_add_static = 10
}

component_set = "SHISHEN_Heaven_Armory"
prerequisites = { "tech_black_tech"  }
should_ai_use = no


}