Home
Random
Log in
Settings
About Brighter Shores Wiki
Disclaimers
Search
Editing
Module:Experience/Album
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
require('strict') local data = mw.loadData('Module:Experience/data').album local lang = mw.language.getContentLanguage() local p = {} -- Given a level, returns the album XP (if known). -- If not known, returns the given "default" argument function p.main(frame) local args = frame:getParent().args if args[1] == nil then error('{{Album XP}} transcluded without level') end local raw = (args[2] or ''):lower() == 'raw' local level = tonumber(args[1]) local xp = p._main(level) if xp ~= nil then if raw then return tostring(xp) end return lang:formatNum(xp) end return args.default or '' end -- Return the album XP at a given level, or nil if unknown / out of bounds function p._main(level) return data[level] end -- Returns the table to be shown on [[Album#Experience]] function p.table() local out = mw.html.create('table') :addClass('wikitable align-right-1 align-right-2') :tag('tr') :tag('th'):wikitext('Level'):done() :tag('th'):wikitext('Experience'):done() :done() local unknown_xp = mw.html.create('td') :addClass('table-bg-gray') :css{ ['text-align'] = 'center' } :wikitext("''Unknown''") :done() for level = 0, 500 do local row = out:tag('tr') :tag('td'):wikitext(tostring(level)):done() if data[level] ~= nil then row:tag('td'):wikitext(lang:formatNum(data[level])):done() else row:node(unknown_xp) end end return out end return p
Summary:
Please note that all contributions to Brighter Shores Wiki are considered to be released under the CC BY-NC-SA 3.0 (see
Brighter Shores:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Preview page with this template
Templates used on this page:
Template:Album XP
(
edit
)
Template:Album XP/Table
(
edit
)
Template:Album XP/Table/doc
(
edit
)
Template:Album XP/doc
(
edit
)
Template:Documentation
(
edit
)
Template:Extension DPL
(
edit
)
Template:T
(
edit
)
Module:Array
(
edit
)
Module:DPLlua
(
edit
)
Module:DependencyList
(
edit
)
Module:Documentation
(
edit
)
Module:Experience/Album
(
edit
)
Module:Experience/Album/doc
(
edit
)
Module:Paramtest
(
edit
)
Module:T
(
edit
)
Module:Tooltip
(
edit
)
Module:Yesno
(
view source
) (semi-protected)
This page is a member of a hidden category:
Category:Pages using DynamicPageList3 parser function