# #################### # Critter Weapons - Space Cloud # #################### @critter_cost_value = 35 ### Small Whale Weapon Researchable weapon_component_template = { key = "SPACE_WHALE_WEAPON_1" size = small entity = "small_space_whale_weapon_entity" type = instant icon = "GFX_ship_part_space_whale_weapon_1" icon_frame = 1 projectile_gfx = "space_whale_weapon" tags = { weapon_type_energy weapon_type_space_fauna } ai_tags = { weapon_role_anti_shield weapon_type_space_fauna } on_hit = { custom_tooltip = "energy_siphon_on_hit_s_tt" hidden_effect = { from = { repair_shield_amount = @energy_siphon_shield_s_regen } } } custom_tooltip = "energy_siphon_s_tt" modifier = { ship_shield_add = @energy_siphon_shield_s } component_set = "SPACE_WHALE_WEAPON" prerequisites = { "tech_space_whale_weapon_1" } resources = { category = ship_components cost = { trigger = { is_design_space_fauna = no } alloys = 15 } cost = { trigger = { is_design_space_fauna = yes } food = 60 mult = @fauna_cost_scaling } upkeep = { trigger = { is_design_space_fauna = yes } energy = 0.10 food = 0.09 } } } ### Small Whale Weapon weapon_component_template = { key = "SPACE_WHALE_WEAPON_2" size = small type = instant icon = "GFX_ship_part_space_whale_weapon_1" icon_frame = 1 projectile_gfx = "space_whale_weapon" tags = { weapon_type_energy weapon_type_space_fauna } ai_tags = { weapon_role_anti_shield weapon_type_space_fauna } on_hit = { custom_tooltip = "energy_siphon_on_hit_s_tt" hidden_effect = { from = { repair_shield_amount = @energy_siphon_shield_s_regen } } } custom_tooltip = "energy_siphon_s_tt" modifier = { ship_shield_add = @energy_siphon_shield_s } component_set = "SPACE_WHALE_WEAPON_BIO" resources = { category = ship_components cost = { trigger = { is_design_space_fauna = no } alloys = 15 } cost = { trigger = { is_design_space_fauna = yes } food = 120 mult = @fauna_cost_scaling } upkeep = { trigger = { is_design_space_fauna = yes } energy = 0.19 food = 0.18 } } } ### Medium Whale Weapon weapon_component_template = { key = "SPACE_WHALE_WEAPON_3" size = medium type = instant icon = "GFX_ship_part_space_whale_weapon_1" icon_frame = 1 projectile_gfx = "space_whale_weapon" tags = { weapon_type_energy weapon_type_space_fauna } ai_tags = { weapon_role_anti_shield weapon_type_space_fauna } on_hit = { custom_tooltip = "energy_siphon_on_hit_m_tt" hidden_effect = { from = { repair_shield_amount = @energy_siphon_shield_m_regen } } } custom_tooltip = "energy_siphon_m_tt" modifier = { ship_shield_add = @energy_siphon_shield_m } component_set = "SPACE_WHALE_WEAPON_BIO" resources = { category = ship_components cost = { trigger = { is_design_space_fauna = no } alloys = 30 } cost = { trigger = { is_design_space_fauna = yes } food = 240 mult = @fauna_cost_scaling } upkeep = { trigger = { is_design_space_fauna = yes } energy = 0.4 food = 0.36 } } } ### Large Whale Weapon weapon_component_template = { key = "SPACE_WHALE_WEAPON_4" size = large type = instant icon = "GFX_ship_part_space_whale_weapon_1" icon_frame = 1 projectile_gfx = "space_whale_weapon" tags = { weapon_type_energy weapon_type_space_fauna } ai_tags = { weapon_role_anti_shield weapon_type_space_fauna } on_hit = { custom_tooltip = "energy_siphon_on_hit_l_tt" hidden_effect = { from = { repair_shield_amount = @energy_siphon_shield_l_regen } } } custom_tooltip = "energy_siphon_l_tt" modifier = { ship_shield_add = @energy_siphon_shield_l } component_set = "SPACE_WHALE_WEAPON_BIO" resources = { category = ship_components cost = { trigger = { is_design_space_fauna = no } alloys = 60 } cost = { trigger = { is_design_space_fauna = yes } food = 480 mult = @fauna_cost_scaling } upkeep = { trigger = { is_design_space_fauna = yes } energy = 0.75 food = 0.72 } } }