Changes

no edit summary
Line 1: Line 1:  
local EnemyColors = {
 
local EnemyColors = {
_common_background_color = "darkgrey",
+
_common_background_color = "lightgrey",
_background_color = "grey",
+
_background_color = "#a0a0a0",
_background_image = "background-image: radial-gradient(circle farthest-corner at center center , rgba(102, 102, 102, 0) 0%, rgba(102, 102, 102, 0) 60%, rgb(102, 102, 102) 100%);",
+
_background_image = "radial-gradient(circle farthest-corner at center center , rgba(102, 102, 102, 0) 0%, rgba(102, 102, 102, 0) 60%, rgba(102, 102, 102, 0.7) 100%);",
_plain_rare_background_image = "background-image: radial-gradient(circle farthest-corner at center center , rgba(102, 102, 102, 0) 0%, rgba(102, 102, 102, 0.4) 60%, rgba(77, 77, 77, 0.7) 100%);",
+
_plain_rare_background_color = "#b0b040",
_elite_glow_background_color = "#c95050",
+
_plain_rare_background_image = "background-image: radial-gradient(circle farthest-corner at center center , rgba(192, 192, 0, 0) 0%, rgba(192, 192, 0, 0.4) 60%, rgba(144, 144, 0, 0.7) 100%);",
_mid_boss_background_color = "#A67474",
+
_elite_glow_background_color = "#b56464",
_mid_boss_background_image = "background-image: radial-gradient(circle farthest-corner at center center , rgba(140, 98, 98, 0) 0%, rgba(140, 98, 98, 0) 60%, rgb(140, 98, 98) 100%);",
+
_mid_boss_background_color = "#a67474",
_rare_background_color = "#B04040",
+
_mid_boss_background_image = "radial-gradient(circle farthest-corner at center center , rgba(140, 98, 98, 0) 0%, rgba(140, 98, 98, 0) 60%, rgb(140, 98, 98) 100%);",
_rare_background_image = "background-image: radial-gradient(circle farthest-corner at center center , #C04040 0%, #B04040 80%, #A04040);",
+
_rare_background_color = "#b04040",
 +
_rare_background_image = "radial-gradient(circle farthest-corner at center center , #C04040 0%, #B04040 80%, #A04040);",
 +
_elite_glow_background_image = "radial-gradient(circle farthest-corner at center center , rgba(204, 20, 20, 0) 0%, rgba(204, 20, 20, 0) 70%, rgba(204, 20, 20, 0.8) 100%)",
 +
_flagship_glow_background_image = "radial-gradient(circle farthest-corner at center center , rgba(252, 200, 0, 0) 0%, rgba(252, 200, 0, 0) 70%, rgba(252, 200, 0, 0.8) 100%)",
 +
_kai_glow_background_image = "radial-gradient(circle farthest-corner at left, rgba(90, 245, 255, 0) 0%, rgba(90, 245, 255, 0) 86%, rgba(90, 245, 255, 0.8) 100%)",
 +
_late_model_glow_background_image = "radial-gradient(circle farthest-corner at left, rgba(185, 195, 205, 0) 0%, rgba(185, 195, 205, 0) 70%, rgba(185, 195, 205, 0.8) 100%)",
 +
_final_form_glow_background_image = "radial-gradient(circle farthest-corner at center center, rgba(204, 20, 20, 0) 0%, rgba(204, 20, 20, 0) 70%, rgb(225 174 51) 100%)",
 
}
 
}
   Line 14: Line 20:  
local rarity = ship:rarity()
 
local rarity = ship:rarity()
 
local bg_color
 
local bg_color
local extra_style = ""
+
local background_image = nil
 
if rarity then
 
if rarity then
 
if rarity >= 4 and rarity <= 7 then
 
if rarity >= 4 and rarity <= 7 then
Line 22: Line 28:  
bg_color = self._mid_boss_background_color
 
bg_color = self._mid_boss_background_color
 
extra_style = self._mid_boss_background_image
 
extra_style = self._mid_boss_background_image
 +
elseif rarity == 7 then
 +
    bg_color = self._plain_rare_background_color
 +
extra_style = self._plain_rare_background_image
 
else
 
else
 
bg_color = self._background_color
 
bg_color = self._background_color
if rarity == 7 then
+
extra_style = self._background_image
extra_style = self._plain_rare_background_image
  −
elseif rarity == 6 then
  −
extra_style = self._background_image
  −
end
   
end
 
end
 
elseif rarity < 4 then
 
elseif rarity < 4 then
Line 34: Line 39:  
else
 
else
 
bg_color = self._rare_background_color
 
bg_color = self._rare_background_color
extra_style = self._rare_background_image
+
background_image = self._rare_background_image
 
end
 
end
 
else
 
else
 
bg_color = self._common_background_color
 
bg_color = self._common_background_color
 
end
 
end
return bg_color, extra_style
+
return bg_color, background_image
 +
end
 +
 
 +
function EnemyColors:variant_background_image(ship, original_background_image)
 +
local back = ship:back()
 +
if not back then
 +
    return ""
 +
end
 +
local background_image = {}
 +
if back <= -4 and back >= -6 then
 +
table.insert(background_image, self._kai_glow_background_image)
 +
elseif back <= -7 and back >= -9 then
 +
table.insert(background_image, self._late_model_glow_background_image)
 +
end
 +
if back >= -9 then
 +
local enemy_variant = math.abs(back) % 3
 +
if enemy_variant == 2 then
 +
table.insert(background_image, self._elite_glow_background_image)
 +
elseif enemy_variant == 0 then
 +
table.insert(background_image, self._flagship_glow_background_image)
 +
end
 +
end
 +
if back == -12 then
 +
table.insert(background_image, self._final_form_glow_background_image)
 +
end
 +
if original_background_image then
 +
table.insert(background_image, original_background_image)
 +
end
 +
if #background_image > 0 then
 +
return table.concat(background_image, ", ")
 +
end
 
end
 
end
    
return EnemyColors
 
return EnemyColors
cssedit, gkautomate
7,064

edits