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

Difference between revisions of "Module:CalcAsset"

From Kancolle Wiki
Jump to navigation Jump to search
(Created page with "return { card_url = function(ship) local id = ship._dummy and ship._name or ship._api_id return id and ('card ' .. id) or '' end, }")
(No difference)

Revision as of 18:43, 26 January 2019

Documentation for this module may be created at Module:CalcAsset/doc

return {
 
    card_url = function(ship)
        local id = ship._dummy and ship._name or ship._api_id
        return id and ('card ' .. id) or ''
    end,
 
}