The wiki is currently a work in progress. If you'd like to help out, please check the Community Portal and our getting started guide. Also, check out our sister project on poewiki.net.

Module:Sandbox/Skkias/TestDictionary: Difference between revisions

From Path of Exile 2 Wiki
Jump to navigation Jump to search
(Created page with "local p = {} -- Sample data for testing local dictionary = { ["Town"] = { ["Clearfell Encampment"] = "A large coastal city and key location in the story.", }, ["Mechanic"] = { ["Attack"] = "This is the ability that is attached to your weapon. Skills and modifiers are calculated separately from this.", }, } function p.getEntry(frame) local term = frame.args.term or "Unknown" local category = frame.args.category or "Town" if di...")
 
No edit summary
Line 4: Line 4:
local dictionary = {
local dictionary = {
     ["Town"] = {
     ["Town"] = {
         ["Clearfell Encampment"] = "A large coastal city and key location in the story.",
         ["Clearfell Encampment"] = "The first town found in the beginning of Act 1.",
     },
     },
     ["Mechanic"] = {
     ["Mechanic"] = {

Revision as of 15:59, 11 December 2024

Module documentation[create] [purge]
local p = {}

-- Sample data for testing
local dictionary = {
    ["Town"] = {
        ["Clearfell Encampment"] = "The first town found in the beginning of Act 1.",
    },
    ["Mechanic"] = {
        ["Attack"] = "This is the ability that is attached to your weapon. Skills and modifiers are calculated separately from this.",
    },
}

function p.getEntry(frame)
    local term = frame.args.term or "Unknown"
    local category = frame.args.category or "Town"
    if dictionary[category] and dictionary[category][term] then
        return dictionary[category][term]
    else
        return "Entry not found."
    end
end

return p