Module:Sandbox/Aurelain/SkillInfobox: Difference between revisions
From Heroes of Might and Magic: Olden Era Official Wiki
No edit summary |
No edit summary |
||
| Line 47: | Line 47: | ||
local id = frame.args[1] or '' | local id = frame.args[1] or '' | ||
local faction = id:match('skill_faction_([a-z]+)') | local faction = id:match('skill_faction_([a-z]+)') | ||
faction = faction:gsub('s$', '') | |||
return faction | return faction | ||
end | end | ||
return p | return p | ||
Revision as of 06:26, 2 September 2026
Documentation for this module may be created at Module:Sandbox/Aurelain/SkillInfobox/doc
-- This module is intended as a supporting muscle for the SkillInfobox template.
local p = {}
-- Creates a template instruction as string (ready for preprocessing) from arguments
------------------------------------------------------------------------------------------------------------------------
local function buildTemplate(args)
local template = args.template or ''
local lines = { '{{' .. template }
for key, value in pairs(args) do
if key ~= 'template' and type(key) ~= "number" then
table.insert(lines, '|' .. key .. '=' .. value)
end
end
return table.concat(lines, '\n') .. '}}'
end
------------------------------------------------------------------------------------------------------------------------
function p.listEpicClasses(frame)
local csv = mw.text.trim(frame.args[1] or '')
if csv == '' then return '—' end
local genericTemplateString = buildTemplate(frame.args)
local epicClasses = mw.text.split(csv, ',')
local results = {}
for _, epicId in ipairs(epicClasses) do
-- Infer hero class id:
local faction, type = epicId:match('([^_]+)_([^_]+)_[0-9]$')
faction = faction or ''
faction = faction:gsub('s$', '')
type = type or ''
local heroClass = type .. '_' .. faction
-- Replace dynamic parameters:
local templateString = genericTemplateString:gsub('#epic_class_id', epicId)
templateString = templateString:gsub('#hero_class_id', heroClass)
-- Preprocess
table.insert(results, frame:preprocess(templateString))
end
return table.concat(results, '')
end
------------------------------------------------------------------------------------------------------------------------
function p.getFaction(frame)
local id = frame.args[1] or ''
local faction = id:match('skill_faction_([a-z]+)')
faction = faction:gsub('s$', '')
return faction
end
return p


