Шаблон:Game update icon

Материал из Guild Wars 2 wiki
Перейти к: навигация, поиск

A template that provides skill and trait icons for game update pages. Format template: {{Game update icon result format}}.

Содержание

Usage

{{Game update icon|<page name>}}

Parameters

1 (unnamed parameter)
skill or trait page name.
icon
Optional. Specify a valid filename without the "File:" prefix.
name
Optional. Only applies if icon is also specified.

Example

{{Game update icon|Retribution (trait)}}
Retribution (trait).png
 Retribution

Notes

// Scripts to use when viewing game updates
if (mw.config.get('wgPageName').substring(0, 12) == 'Game_updates') {
    $('li .skillicon, li .effecticon, li .traiticon').each(function(){
      $(this).parent('li').addClass('patchnote');
    });
}
.patchnote { line-height: 2.7em; }
.patchnote .skillicon img, .patchnote .traiticon img { background-color: black; }