Module:Passive skill table/config/sandbox: Difference between revisions
Jump to navigation
Jump to search
Mefisto1029 (talk | contribs) (Created config) |
Mefisto1029 (talk | contribs) (Added simple_passive_skill_list) |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||
-- | -- | ||
-- Configuration for Module: | -- Configuration for Module:Passive skill table | ||
-- | -- | ||
------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||
| Line 12: | Line 12: | ||
cfg.i18n = {} | cfg.i18n = {} | ||
cfg.i18n.passive_table = { | cfg.i18n.passive_table = { | ||
| Line 22: | Line 20: | ||
stats = 'Stats', | stats = 'Stats', | ||
skill_points = 'Skill points', | skill_points = 'Skill points', | ||
weapon_set_points = 'Weapon set<br>points', | |||
connections = 'Connections', | connections = 'Connections', | ||
flavour_text = 'Flavour text', | flavour_text = 'Flavour text', | ||
| Line 27: | Line 26: | ||
is_notable = 'Notable', | is_notable = 'Notable', | ||
is_keystone = 'Keystone', | is_keystone = 'Keystone', | ||
} | } | ||
cfg.i18n.errors = { | cfg.i18n.errors = { | ||
generic_argument_parameter = 'Unrecognized %s parameter "%s"', | |||
invalid_args = 'Passive skill table: q_where must be specified', | invalid_args = 'Passive skill table: q_where must be specified', | ||
category = 'Pages with broken passive skill tables', | |||
} | } | ||
| Line 49: | Line 38: | ||
-- ---------------------------------------------------------------------------- | -- ---------------------------------------------------------------------------- | ||
-- Wrapper templates | |||
cfg.wrappers = { | |||
simple_passive_skill_list = { | |||
'Template:Simple passive skill list', | |||
}, | |||
} | |||
return cfg | return cfg | ||
Latest revision as of 16:54, 21 December 2025
This is the module sandbox page for Module:Passive skill table/config (diff).
This is the configuration file for Module:Passive skill table. This file can be edited to allow easy translation/porting of the module to other wikis.
The above documentation is transcluded from Module:Passive skill table/config/doc.
Editors can experiment in this module's sandbox and testcases pages.
Please add categories to the /doc subpage. Subpages of this module.
Editors can experiment in this module's sandbox and testcases pages.
Please add categories to the /doc subpage. Subpages of this module.
-------------------------------------------------------------------------------
--
-- Configuration for Module:Passive skill table
--
-------------------------------------------------------------------------------
local cfg = {}
-- ----------------------------------------------------------------------------
-- i18n
-- ----------------------------------------------------------------------------
cfg.i18n = {}
cfg.i18n.passive_table = {
ascendancy_class = 'Ascendancy<br>Class',
name = 'Name',
id = 'Id',
int_id = 'Integer id',
stats = 'Stats',
skill_points = 'Skill points',
weapon_set_points = 'Weapon set<br>points',
connections = 'Connections',
flavour_text = 'Flavour text',
reminder_text = 'Reminder text',
is_notable = 'Notable',
is_keystone = 'Keystone',
}
cfg.i18n.errors = {
generic_argument_parameter = 'Unrecognized %s parameter "%s"',
invalid_args = 'Passive skill table: q_where must be specified',
category = 'Pages with broken passive skill tables',
}
-- ----------------------------------------------------------------------------
-- Constants
-- ----------------------------------------------------------------------------
-- Wrapper templates
cfg.wrappers = {
simple_passive_skill_list = {
'Template:Simple passive skill list',
},
}
return cfg