Module:SkillInfoCard

From Eco - English Wiki
Revision as of 20:20, 6 July 2025 by StalEF (talk | contribs)

Warning about use

To prevent multiple call of data array, you must use the function: local SkillInfoCard = mw.loadData("Module:SkillInfoCard")


local p = {}

local Utils = require('Module:Utils')
local IconUtils = require('Module:IconUtils')
local L = require('Module:Localization')
local Lang = Utils.getLanguageName()

function p.main(frame)
	local PageName = frame.args[1]
	if (Lang == 'English') then SkillName = PageName else SkillName = Util.SkillSearch(PageName, Lang) end
	
	
	
	return SkillName
end

return p