Home
Random
Log in
Settings
About Brighter Shores Wiki
Disclaimers
Search
Editing
Module:Room features
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!
local p = {} function p.main(frame) local args = frame:getParent().args return p._main(args) end local infobox_cat_map = { ['Monster'] = 'Monsters', ['NPC'] = 'Non-player characters', ['Scenery'] = 'Scenery', ['Skill_node'] = 'Skill nodes' } local header_text_override = { ['Non-player characters'] = 'Personalities' } function base_query(location) local ret = { '[[Located in::' .. location .. ']]', '?Location object#-', '?Location object.Name=name_sub', '?Location object.Image#-=image_sub', '?Location object.Infobox=infobox_sub', '?Location quantity', '?#-', '?Name=name', '?Image#-=image', '?Infobox=infobox' } return ret end function p._main(args) local frame = mw.getCurrentFrame() local ret = '' local location = args[1] or mw.title.getCurrentTitle().fullText local query = mw.smw.ask(base_query(location)) if query ~= nil then local results_by_type = {} for i,v in pairs(infobox_cat_map) do results_by_type[v] = {} end for i,v in ipairs(query) do local key = infobox_cat_map[v.infobox_sub or v.infobox] -- Can be nil - See East Beach for example if key ~= nil then table.insert(results_by_type[key], v) end end for cat,results in pairs(results_by_type) do if #results > 0 then ret = ret .. '===' .. (header_text_override[cat] or cat) .. '===\n' local gallery = '<gallery>\n' for i,v in ipairs(results) do local image = v.image_sub or v.image or 'File:Section anchor light.svg' local quantity = '' if v['Location quantity'] and (v['Location quantity'] ~= 'Unknown' and v['Location quantity'] ~= '1') then quantity = string.format('%s Γ ', v['Location quantity']) end local obj_name = v['Location object'] or v[1] local version_name = '' local version = string.match(obj_name, "[^#]+%#([^#]+)") if version then version_name = string.format(" <sub>''%s''</sub>", version) end local display_name = v.name_sub or v.name gallery = gallery .. string.format('%s|%s[[%s|%s%s]]\n', image, quantity, obj_name, display_name, version_name) end gallery = gallery .. '</gallery>\n\n' ret = ret .. gallery end end end return frame:preprocess(ret) 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:DependencyList
(
edit
)
Template:Documentation
(
edit
)
Template:Extension DPL
(
edit
)
Template:No documentation
(
edit
)
Template:PageType
(
edit
)
Module:Array
(
edit
)
Module:DPLlua
(
edit
)
Module:DependencyList
(
edit
)
Module:Documentation
(
edit
)
Module:Paramtest
(
edit
)
Module:Room features
(
edit
)
Module:Room features/doc
(
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