Module:SS Medals: Difference between revisions

From JoJo's Bizarre Encyclopedia - JoJo Wiki
Jump to navigation Jump to search
Content deleted Content added
No edit summary
No edit summary
Line 13: Line 13:
return tostring(data[id][param]) -- Convert to string if necessary
return tostring(data[id][param]) -- Convert to string if necessary
else
else
return "No data found for the given ID or parameter."
return "N/A"
end
end
end
end

Revision as of 20:37, 2 June 2024

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

local p = {}

function p.getData(frame)
    -- Load JSON data directly from the page "JoJo Wiki:SS Medals"
    local data = mw.loadJsonData('JoJo Wiki:SS Medals')
    
    -- Retrieve the ID and parameter to return from the passed frame arguments
    local id = frame.args[1]
    local param = frame.args[2] -- Parameter to return (e.g., title, rarity, character)
    
    -- Check if data for the given ID exists and the parameter is valid
    if data[id] and data[id][param] then
        return tostring(data[id][param]) -- Convert to string if necessary
    else
        return "N/A"
    end
end

return p