Path of Exile Wiki

Wiki поддерживается сообществом, поэтому подумайте над тем, чтобы внести свой вклад.

ПОДРОБНЕЕ

Path of Exile Wiki
Advertisement
Template info icon Документация модуля[просмотр] [править] [история] [очистить]

Это файл конфигурации для Модуля:Item acquisition. Этот файл можно отредактировать, чтобы упростить перевод/перенос модуля в другие вики-сайты.

-------------------------------------------------------------------------------
-- 
--                  Configuration for Module:Item acquisition
-- 
-------------------------------------------------------------------------------

local m_util = require('Module:Util')

local cfg = {}

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

cfg.i18n = {}

cfg.i18n.acquisition = {
    header = 'Item acquisition',
    link = '[[File:Questionmark.png|right|24px|link=Path_of_Exile_Wiki:How_to_edit_item_acquisition]]',
    
    drop_disabled = '%s is [[drop disabled]].',
    drop_restricted = '%s has restrictions on where or how it can drop.',
    drop_anywhere = '%s can drop anywhere.',
    cannot_be_chanced = 'It cannot be [[Orb of Chance|chanced]].',
    can_be_chanced = 'It can be [[Orb of Chance|chanced]].',
    league_specific_unique = '%s belongs to a special group of unique items called [[league-specific item]]s, which can be obtained from certain divination cards and other sources in addition to their normal acquisition methods.',
    
    area_header = 'Area restrictions',
    area_legacy_header = 'Legacy area restrictions',
    area = 'This item can be acquired in the following areas:',
    monster = 'This item can be acquired from the following monsters:',
    monster_header = 'Monster restrictions',
    
    recipes_heading = 'Recipes',
    recipes_text = '%s can be created from the following recipes:',
    recipe_usage_heading = 'Usage in recipes',
    recipe_usage_text = '%s is used in the following recipes:',
}

cfg.i18n.recipe_table = {
    outcome = 'Result',
    ingredient = 'Part',
    ingredient_amount = 'Amount',
    ingredient_notes = 'Notes',
    recipe_notes = 'Description',
    type = 'Meta',
    automatic = m_util.html.abbr('A', 'This recipe was added automatically based on the properties of the resulting item.'),
    manual = m_util.html.abbr('M', 'This recipe was added manually on the wiki page of the resulting item.'),
    old_data = m_util.html.abbr('Old data', 'Old data - please null-edit the item\'s wiki page.'),
}

cfg.i18n.quest_reward = {
    quest_rewards_header = 'Quest reward',
    quest_rewards_intro = 'This item is given as a [[quest reward]] for the following quests:',
    vendor_rewards_header = 'Vendor reward',
    vendor_rewards_intro = 'This item can be bought at the listed NPC [[vendor]]s, after completing the following quests:',
}

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

cfg.MAX_ITEMS = 100

cfg.COLLAPSE_TABLE = 30

return cfg
Advertisement