• Welcome to the Kancolle Wiki!
  • If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord

Changes

Jump to navigation Jump to search
no edit summary
Line 17: Line 17:  
local target = nil
 
local target = nil
 
local shipCapabilities = {}
 
local shipCapabilities = {}
 +
local equipment = nil
    
-- $('.calc-debug').show().appendTo('#mw-content-text')
 
-- $('.calc-debug').show().appendTo('#mw-content-text')
Line 64: Line 65:  
     end,
 
     end,
 
      
 
      
     code = function(ship)
+
     code = function(obj)
         return Formatting:format_ship_code(ship:type())
+
         return equipment and
 +
            Formatting:format_equipment_type(obj:type()) or
 +
            Formatting:format_ship_code(obj:type())
 
     end,
 
     end,
    
     -- overrides ShipData:type
 
     -- overrides ShipData:type
     type = function(ship)
+
     type = function(obj)
         return Formatting:format_ship_type(ship:type())
+
         return equipment and
 +
            Formatting:format_equipment_type(obj:type()) or
 +
            Formatting:format_ship_type(obj:type())
 
     end,
 
     end,
    
     -- overrides ShipData:link
 
     -- overrides ShipData:link
     link = function(ship)
+
     link = function(obj)
         return Formatting:format_link(ship:link())
+
         return equipment and
 +
            (Formatting:format_equipment_icon(obj:icon()) .. " " .. Formatting:format_link(obj:link())) or
 +
            Formatting:format_link(obj:link())
 
     end,
 
     end,
   Line 263: Line 270:  
         else
 
         else
 
             ship = Equipment(ship_key)
 
             ship = Equipment(ship_key)
 +
            equipment = true
 
         end
 
         end
 
     elseif prefix2 == "!!" then
 
     elseif prefix2 == "!!" then
Line 280: Line 288:  
                     else
 
                     else
 
                         ship = Equipment(key)
 
                         ship = Equipment(key)
 +
                        equipment = true
 
                     end
 
                     end
 
                 else
 
                 else
cssedit, gkautomate
6,928

edits

Navigation menu