- 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:ShipInfo"
Jump to navigation
Jump to search
com>Ckwng |
com>Ckwng (add entry point for EnemyShipInfoKai) |
||
Line 1: | Line 1: | ||
local ShipInfo = {} | local ShipInfo = {} | ||
+ | local EnemyShipInfoKai = false | ||
local ShipCardKai = false | local ShipCardKai = false | ||
local ShipInfoKai = false | local ShipInfoKai = false | ||
Line 32: | Line 33: | ||
if not ShipCardKai then | if not ShipCardKai then | ||
ShipCardKai = require('Module:ShipCardKai') | ShipCardKai = require('Module:ShipCardKai') | ||
+ | end | ||
+ | end | ||
+ | |||
+ | function ShipInfo.EnemyInfobox(frame) | ||
+ | local args = getArgs{frame = frame:getParent()} | ||
+ | _prepareEnemyShipInfoKai() | ||
+ | return EnemyShipInfoKai:Infobox(args) | ||
+ | end | ||
+ | |||
+ | function _prepareEnemyShipInfoKai() | ||
+ | if not EnemyShipInfoKai then | ||
+ | EnemyShipInfoKai = require('Module:EnemyShipInfoKai') | ||
end | end | ||
end | end | ||
return ShipInfo | return ShipInfo |
Revision as of 22:33, 22 April 2015
Documentation for this module may be created at Module:ShipInfo/doc
local ShipInfo = {}
local EnemyShipInfoKai = false
local ShipCardKai = false
local ShipInfoKai = false
local getArgs = require('Module:GetArgs')
function ShipInfo.Infobox(frame)
local args = getArgs{frame = frame:getParent()}
_prepareShipInfoKai()
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
function ShipInfo.EnemyInfobox(frame)
local args = getArgs{frame = frame:getParent()}
_prepareEnemyShipInfoKai()
return EnemyShipInfoKai:Infobox(args)
end
function _prepareEnemyShipInfoKai()
if not EnemyShipInfoKai then
EnemyShipInfoKai = require('Module:EnemyShipInfoKai')
end
end
return ShipInfo