Jump to content

The wiki is in the process of updating to the latest major game changes. Any contributions are appreciated!
Start here to learn how to edit and join our Discord server to make suggestions.

Template:Infobox stat/doc: Difference between revisions

From The Deadlock Wiki
Sur (talk | contribs)
Created page with "==Overview== A stat box is created similar to the display seen in the shop when hovering over each stat category (Weapon, Vitality, Spirit). When hovered, a box appears to the right that contains a table with specified cell values, preferably containing an icon, stat prefix, value, postfix, and name. ===Examples=== <pre>{{StatBox |box_name = CitadelCategoryWeapon |box_rgb = 213, 144, 63 |num_cols = 2 |cell_values = 800 MaxHealth,2 BaseHealthRegen,10 DPS }}</pre> <br>O..."
 
Sur (talk | contribs)
m removed the word statbox
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
==Overview==
==Overview==
A stat box is created similar to the display seen in the shop when hovering over each stat category (Weapon, Vitality, Spirit).
A hero stat infobox is created similar to the display seen in the shop when hovering over each stat category (Weapon, Vitality, Spirit).


When hovered, a box appears to the right that contains a table with specified cell values, preferably containing an icon, stat prefix, value, postfix, and name.
When hovered, a box appears to the right that contains a table with specified cell values, preferably containing an icon, stat prefix, value, postfix, and name.


===Examples===
===Examples===
<pre>{{StatBox
<pre>{{Infobox_stat
|box_name = CitadelCategoryWeapon
|box_name = CitadelCategoryWeapon
|box_rgb = 213, 144, 63
|box_rgb = 213, 144, 63
Line 14: Line 14:
<br>Outputs<br>
<br>Outputs<br>


{{StatBox
{{Infobox_stat
|box_name = CitadelCategoryWeapon
|box_name = CitadelCategoryWeapon
|box_rgb = 213, 144, 63
|box_rgb = 213, 144, 63
Line 21: Line 21:
}}
}}


<br>See [[Template:StatBoxes]] which creates all 3 for a given hero dynamically using their stats and scalings<br>
<br>See [[Module:HeroData]] which creates all 3 for a given hero dynamically using their stats and scalings<br>


===Parameters===
===Parameters===
Line 30: Line 30:
"params": {
"params": {
"box_name": {
"box_name": {
"description": "Unlocalized name of the StatBox which will be localized to both the label and the image. ",
"description": "Unlocalized name of the Infobox_stat which will be localized to both the label and the image. ",
"example": "CitadelCategoryWeapon",
"example": "CitadelCategoryWeapon",
"type": "string"
"type": "string"

Latest revision as of 02:42, 22 September 2024

Overview[edit source]

A hero stat infobox is created similar to the display seen in the shop when hovering over each stat category (Weapon, Vitality, Spirit).

When hovered, a box appears to the right that contains a table with specified cell values, preferably containing an icon, stat prefix, value, postfix, and name.

Examples[edit source]

{{Infobox_stat
|box_name = CitadelCategoryWeapon
|box_rgb = 213, 144, 63
|num_cols = 2
|cell_values = 800 MaxHealth,2 BaseHealthRegen,10 DPS
}}


Outputs


Weapon
800 MaxHealth 2 BaseHealthRegen
10 DPS


See Module:HeroData which creates all 3 for a given hero dynamically using their stats and scalings

Parameters[edit source]

box_name: See Data:Lang_en.json for all english localization keys; ensure the box_name is a key that can be localized

No description.

Template parameters

ParameterDescriptionTypeStatus
box_namebox_name

Unlocalized name of the Infobox_stat which will be localized to both the label and the image.

Example
CitadelCategoryWeapon
Stringoptional
box_rgbbox_rgb

RGB values for the box, comma separated. RGBA is not supported, as the alpha channel is modified by the template.

Example
255,255,255
Stringoptional
num_colsnum_cols

Number of columns in the table.

Default
3
Example
3
Numberoptional
cell_valuescell_values

Number of cell values, comma separated (no space after comma). Rows are added automatically based on the number of cell values and columns.

Example
800 MaxHealth,2 BaseHealthRegen,10 DPS
Stringoptional