Guest User

stellaris - better imp hulls - adding colossi

a guest
Aug 6th, 2024
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. #Colossus
  2. utility_component_template = {
  3. key = "COLOSSUS_BRB_REACTOR_1"
  4. size = large
  5. icon = "GFX_ship_part_reactor_booster_1"
  6. icon_frame = 1
  7. power = @brb_power_1_colossus
  8. resources = {
  9. category = ship_components
  10. cost = {
  11. alloys = @brb_cost_1_colossus
  12. }
  13. upkeep = {
  14. energy = @brb_upkeep_1_colossus
  15. }
  16. }
  17.  
  18. prerequisites = { "tech_reactor_boosters_1" }
  19. size_restriction = { colossus }
  20. component_set = "brb_reactor"
  21. custom_tooltip = "BRB_UPKEEP_1_COLOSSUS"
  22. upgrades_to = "COLOSSUS_BRB_REACTOR_2"
  23. ship_modifier = {
  24. ship_shield_regen_add_static = @brb_regen_1_colossus
  25. }
  26.  
  27. ai_weight = {
  28. weight = 2
  29. }
  30. }
  31.  
  32. utility_component_template = {
  33. key = "COLOSSUS_BRB_REACTOR_2"
  34. size = large
  35. icon = "GFX_ship_part_reactor_booster_2"
  36. icon_frame = 1
  37. power = @brb_power_2_colossus
  38. resources = {
  39. category = ship_components
  40. cost = {
  41. alloys = @brb_cost_2_colossus
  42. }
  43. upkeep = {
  44. energy = @brb_upkeep_2_colossus
  45. }
  46. }
  47.  
  48. prerequisites = { "tech_reactor_boosters_2" }
  49. size_restriction = { colossus }
  50. component_set = "brb_reactor"
  51. custom_tooltip = "BRB_UPKEEP_2_COLOSSUS"
  52. upgrades_to = "COLOSSUS_BRB_REACTOR_3"
  53. ship_modifier = {
  54. ship_shield_reduction = -0.1
  55. ship_shield_regen_add_static = @brb_regen_2_colossus
  56. }
  57.  
  58. ai_weight = {
  59. weight = 3
  60. }
  61. }
  62.  
  63. utility_component_template = {
  64. key = "COLOSSUS_BRB_REACTOR_3"
  65. size = large
  66. icon = "GFX_ship_part_reactor_booster_3"
  67. icon_frame = 1
  68. power = @brb_power_3_colossus
  69. resources = {
  70. category = ship_components
  71. cost = {
  72. alloys = @brb_cost_3_colossus
  73. }
  74. upkeep = {
  75. energy = @brb_upkeep_3_colossus
  76. }
  77. }
  78.  
  79. prerequisites = { "tech_reactor_boosters_3" }
  80. size_restriction = { colossus }
  81. component_set = "brb_reactor"
  82. custom_tooltip = "BRB_UPKEEP_3_COLOSSUS"
  83. upgrades_to = "COLOSSUS_BRB_REACTOR_4"
  84. ship_modifier = {
  85. ship_shield_hardening_add = 0.2
  86. ship_shield_reduction = -0.25
  87. ship_shield_regen_add_static = @brb_regen_3_colossus
  88. }
  89.  
  90. ai_weight = {
  91. weight = 5
  92. }
  93. }
  94.  
  95. utility_component_template = {
  96. key = "COLOSSUS_BRB_REACTOR_4"
  97. size = large
  98. icon = "GFX_ship_part_brb"
  99. icon_frame = 1
  100. power = @brb_power_4_colossus
  101. resources = {
  102. category = ship_components
  103. cost = {
  104. alloys = @brb_cost_4_colossus
  105. sr_dark_matter = @brb_dmcost_4_colossus
  106. }
  107. upkeep = {
  108. energy = @brb_upkeep_4_colossus
  109. }
  110. }
  111.  
  112. prerequisites = { "tech_brb_dark_matter_reactor_boosters" }
  113. size_restriction = { colossus }
  114. component_set = "brb_reactor"
  115. custom_tooltip = "BRB_UPKEEP_4_COLOSSUS"
  116. ship_modifier = {
  117. ship_shield_hardening_add = 0.25
  118. ship_shield_reduction = -0.5
  119. ship_shield_regen_add_static = @brb_regen_4_colossus
  120. }
  121.  
  122. ai_weight = {
  123. weight = 10
  124. }
  125. }
Advertisement
Add Comment
Please, Sign In to add comment