Module:Incursion/config

From Path of Exile Wiki
Jump to navigation Jump to search
Module documentation[view] [edit] [history] [purge]


This is the configuration file for Module:Incursion. This file can be edited to allow easy translation/porting of the module to other wikis.


-------------------------------------------------------------------------------
-- 
-- Configuration for Module:Incursion
-- 
-------------------------------------------------------------------------------

local cfg = {}

-- ----------------------------------------------------------------------------
-- i18n
-- ----------------------------------------------------------------------------

cfg.i18n = {}

cfg.i18n.files = {
    icon_format = 'File:%s incursion room icon.png',
}

cfg.i18n.tiers_roman = {
    [1] = 'I',
    [2] = 'II',
    [3] = 'III',
}

cfg.i18n.headings = {
    id = 'Id',
    tier = 'Tier',
    upgrade_room_id = 'Upgrades to',
    min_level = 'Min. Level',
    max_level = 'Max. Level',
    weight = 'Weight',
    architect = 'Architect',
    modifier_ids = 'Modifiers',
}

cfg.i18n.errors = {
    missing_search_term = 'No incursion room search term specified. Use id or page',
    no_results_found = 'No results found for incursion room using search term "%s = %s"',
    no_progression = 'No progression found for the given incursion room',
}

-- ----------------------------------------------------------------------------
-- Constants
-- ----------------------------------------------------------------------------

-- Wrapper templates
cfg.wrappers = {
    incursion_room = {
        'Template:Incursion room',
    },
    room_progression = {
        'Template:Incursion room progression',
    },
}

cfg.tier_max = 3

return cfg