• 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
Created page with "local BaseData = require("Module:BaseData") local PersonData = BaseData() --The name of the person. function PersonData:name() return self._name end --A group of values pa..."
local BaseData = require("Module:BaseData")

local PersonData = BaseData()

--The name of the person.
function PersonData:name()
return self._name
end

--A group of values passable to Formatting:format_external_link() to create a wikitext link to this person's profile (usually on pixiv/MyAnimeList/etc).
function PersonData:link()
if self._link then
return self._link, self:name()
else
return self:name()
end
end

--The name of the person in Japanese.
function PersonData:japanese_name()
return self._japanese_name
end

--The reading of the person's Japanese name.
function PersonData:reading()
return self._reading
end

function PersonData:create(person)
person = person or {}
setmetatable(person, person)
person.__index = self
person.__call = self.__call
return person
end

return PersonData
Anonymous user

Navigation menu