Module:ModuleUniqueStatTable

From The First Descendant Wiki
Revision as of 02:39, 5 June 2024 by Software2 (talk | contribs)

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

local p = {}

function p.processData(frame)
    local property1 = frame.args.property1 or ""
    local property2 = frame.args.property2 or ""
    local name = frame.args.name or "DNE"
    
    -- Process the data
    local result = "Name: " .. name .. name .. name .. ", Property2: " .. property2
    
    return result
end

return p