Module:Bestiary/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:Bestiary. This file can be edited to allow easy translation/porting of the module to other wikis.


-------------------------------------------------------------------------------
-- 
-- Configuration for Module:Bestiary
-- 
-------------------------------------------------------------------------------

local cfg = {}

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

cfg.i18n = {}

-- Beastcrafting recipe table strings
cfg.i18n.recipe_table = {
    category = 'Category',
    description = 'Description',
    notes = 'Notes',
    components = 'Components',
}

cfg.i18n.errors = {
    invalid_game_mode = 'Invalid game mode. Accepted values are "normal" and "ruthless".',
}

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

cfg.game_modes = {
    normal = 1,
    ruthless = 2,
}

-- Wrapper templates
cfg.wrappers = {
    recipe_table = {
        'Template:Beastcrafting recipes',
    },
}

return cfg