- 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:EquipmentCardKai"
Jump to navigation
Jump to search
com>Ckwng |
com>Ckwng |
||
Line 2: | Line 2: | ||
local Formatting = require('Module:Formatting') | local Formatting = require('Module:Formatting') | ||
− | local EquipmentCardKai = {} | + | local EquipmentCardKai = { |
+ | _card_size = "260x260px", | ||
+ | } | ||
− | function EquipmentCardKai:card( | + | function EquipmentCardKai:card(equipment, args) |
if not args then | if not args then | ||
− | args = | + | args = equipment |
− | + | equipment = args.equipment | |
end | end | ||
− | return Formatting:format_image{ | + | return Formatting:format_image{equipment:card(), size = args.size or self._card_size, link = args.link, caption = args.caption} |
end | end | ||
function EquipmentCardKai:Card(args) | function EquipmentCardKai:Card(args) | ||
− | local | + | local equipment = self:create_equipment(args) |
− | + | return self:card(equipment, args) | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
− | function EquipmentCardKai: | + | function EquipmentCardKai:create_equipment(args) |
return Equipment(args[1]) | return Equipment(args[1]) | ||
end | end | ||
return EquipmentCardKai | return EquipmentCardKai |
Revision as of 02:47, 15 September 2015
Documentation for this module may be created at Module:EquipmentCardKai/doc
local Equipment = require('Module:Equipment')
local Formatting = require('Module:Formatting')
local EquipmentCardKai = {
_card_size = "260x260px",
}
function EquipmentCardKai:card(equipment, args)
if not args then
args = equipment
equipment = args.equipment
end
return Formatting:format_image{equipment:card(), size = args.size or self._card_size, link = args.link, caption = args.caption}
end
function EquipmentCardKai:Card(args)
local equipment = self:create_equipment(args)
return self:card(equipment, args)
end
function EquipmentCardKai:create_equipment(args)
return Equipment(args[1])
end
return EquipmentCardKai