Module:AttributeData: Difference between revisions
Jump to navigation
Jump to search
m get_category_data() -> p.get_data_data() |
m localize_category |
||
Line 1: | Line 1: | ||
local p = {}; | local p = {}; | ||
local attributes_data = mw.loadJsonData("Data:AttributeData.json") | local attributes_data = mw.loadJsonData("Data:AttributeData.json") | ||
local lang_module = require("Module:Lang") | |||
local category_data = { --category specific parameters | local category_data = { --category specific parameters | ||
["Weapon"] = { | ["Weapon"] = { | ||
Line 30: | Line 31: | ||
end | end | ||
-- localize Weapon/Vitality/Spirit from english rather than their keys | |||
--{{#invoke:AttributeData|Weapon/Vitality/Spirit}} | |||
p.localize_category = function(frame) | |||
local category_en = frame.args[1] | |||
if (category_en == nil) then return "Weapon/Vitality/Spirit category not provided" end | |||
-- get unlocalized key | |||
local unlocalized_key = nil | |||
for category, cat_data in pairs(category_data) do | |||
unlocalized_key = cat_data["unlocalized_name"] | |||
end | |||
if (unlocalized_key == nil) then return "Category should be one of Weapon/Vitality/Spirit" end | |||
-- localize it | |||
localized = lang_module._get_string(unlocalized_key) | |||
if (localized == nil) then return category_en end --category missing from lang | |||
end | |||
return p | return p |
Revision as of 23:13, 21 September 2024
Documentation for this module may be created at Module:AttributeData/doc
local p = {};
local attributes_data = mw.loadJsonData("Data:AttributeData.json")
local lang_module = require("Module:Lang")
local category_data = { --category specific parameters
["Weapon"] = {
unlocalized_name = "CitadelCategoryWeapon",
rgb = "213, 144, 63"
},
["Vitality"] = {
unlocalized_name = "CitadelCategoryArmor",
rgb = "116, 176, 28"
},
["Spirit"] = {
unlocalized_name = "CitadelCategoryTech",
rgb = "194, 136, 240"
},
}
function p.get_category_data()
return category_data
end
-- returns the table of a specific item
function get_json_item(name)
for i,v in pairs(attributes_data) do
if (i == name) then
return v
end
end
return nil
end
-- localize Weapon/Vitality/Spirit from english rather than their keys
--{{#invoke:AttributeData|Weapon/Vitality/Spirit}}
p.localize_category = function(frame)
local category_en = frame.args[1]
if (category_en == nil) then return "Weapon/Vitality/Spirit category not provided" end
-- get unlocalized key
local unlocalized_key = nil
for category, cat_data in pairs(category_data) do
unlocalized_key = cat_data["unlocalized_name"]
end
if (unlocalized_key == nil) then return "Category should be one of Weapon/Vitality/Spirit" end
-- localize it
localized = lang_module._get_string(unlocalized_key)
if (localized == nil) then return category_en end --category missing from lang
end
return p