• 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 1: Line 1:  
local ShipInfo = {}
 
local ShipInfo = {}
local ShipInfoKai = require('Module:ShipInfoKai')
+
 
 +
local ShipCardKai = false
 +
local ShipInfoKai = false
 
local getArgs = require('Module:GetArgs')
 
local getArgs = require('Module:GetArgs')
    
function ShipInfo.Infobox(frame)
 
function ShipInfo.Infobox(frame)
 
local args = getArgs{frame = frame:getParent()}
 
local args = getArgs{frame = frame:getParent()}
 +
_prepareShipInfoKai()
 
return ShipInfoKai:Infobox(args)
 
return ShipInfoKai:Infobox(args)
 +
end
 +
 +
function _prepareShipInfoKai()
 +
if not ShipInfoKai then
 +
ShipInfoKai = require('Module:ShipInfoKai')
 +
end
 +
end
 +
 +
function ShipInfo.Card(frame)
 +
local args = getArgs{frame = frame:getParent()}
 +
_prepareShipCardKai()
 +
return ShipCardKai:Card(args)
 +
end
 +
 +
function ShipInfo.BattleCard(frame)
 +
local args = getArgs{frame = frame:getParent()}
 +
_prepareShipCardKai()
 +
return ShipCardKai:BattleCard(args)
 +
end
 +
 +
function _prepareShipCardKai()
 +
if not ShipCardKai then
 +
ShipCardKai = require('Module:ShipCardKai')
 +
end
 
end
 
end
    
return ShipInfo
 
return ShipInfo
Anonymous user

Navigation menu