Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:GasIcon

From Stationeers Community Wiki
Revision as of 21:17, 14 March 2026 by RA2lover (talk | contribs)

Documentation for this module may be created at Module:GasIcon/doc

local GasData = mw.loadData("Gas/data")
local p = {}
    function p.GetIcon(frame)
        local args = frame:getParent().args
        local gas = GasData[args[1]]
        local size = args.Size or "32px"
        return "[["..gas.Image.."|"..size.."|link=.."..gas.HumanReadableName"]]"
    end
return p