Module:Modifier table/config

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


Lua logo

This module depends on the following other modules:

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


-------------------------------------------------------------------------------
-- 
-- Configuration for Module:Modifier table
-- 
-------------------------------------------------------------------------------

local m_util = require('Module:Util')

local cfg = {}

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

cfg.i18n = {}

cfg.i18n.mod_table = {
    name = m_util.html.abbr('Name', 'Name of the modifier if available or its internal identifier instead'),
    mod_groups = m_util.html.abbr('Groups', 'The groups that this modifier belongs to. All modifiers belonging to a group are mutually exclusive with one another.'),
    mod_type = 'Type',
    domain = '[[Modifiers#Mod_Domain|Domain]]',
    generation_type = '[[Modifiers#Mod_Generation_Type|Generation Type]]',
    required_level = '[[Image:Level_up_icon_small.png|link=|For generated item/monster modifiers the minimum item/monster level respectively. Some generation types may not require this condition to be met, however item level restrictions may be raised to 80% of this value.]]',
    labyrinth = '[[The Lord\'s Labyrinth|Labyrinth]]',
    stat_text = m_util.html.abbr('Stats', 'Stats of the modifier and the range they can roll in (if applicable)'),
    buff = m_util.html.abbr('Buff', 'ID of the buff granted and the values associated'),
    granted_skill = m_util.html.abbr('Skill', 'ID of the skill granted'),
    tags = '[[Modifiers#Tags|Tags]]',

    iiq = m_util.html.abbr('IIQ', 'increased Quantity of Items found in this Area'),
    iir = m_util.html.abbr('IIR', 'increased Rarity of Items found in this Area'),
    pack_size = m_util.html.abbr('Pack<br>Size', 'Monster pack size'),

    spawn_weights = m_util.html.abbr('Spawn Weighting', 'List of applicable tags and their values for weighting (i.e. calculating the chances) of the spawning of this modifier'),
    generation_weights = m_util.html.abbr('Generation Weighting', 'List of applicable tags and their values for weighting (i.e. calculating the chances) of the spawning of this modifier'),

    normal_labyrinth = 'Normal Labyrinth',
    cruel_labyrinth = 'Cruel Labyrinth',
    merciless_labyrinth = 'Merciless Labyrinth',
    eternal_labyrinth = 'Eternal Labyrinth',
    belt_labyrinth = 'Eternal Labyrinth of Potential',
}

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



return cfg