Template:Condition/doc

From Stoneshard wiki
< Template:Condition
Revision as of 03:16, 19 April 2023 by Gura (talk | contribs) (Update examples to use the Condition template instead of Consumable and to explain the option to load from a specific page)
Jump to navigation Jump to search
Template-info.png Documentation

This is condition template created for use together with the Template:Tooltip hover box template on a specific condition's page or condition's tooltip page.

Usage: The page itself must contain the condition's data before this Template works. For example, if I wanted to create the Bleeding page, I'll add this code to the start of the page and fill in the values:

<includeonly>{{#switch: {{{1}}}
|ConditionType = Physical
|Properties1 = Deals Damage
|Values1 = {{c|+|+2}}
|Properties2 = Energy Restoration
|Values2 = {{c|-|-5%}}
|Properties3 = Healing Efficiency
|Values3 = {{c|-|-30%}}
|PropertyText = Each turn reduces the affected Body Part's condition by {{c|-|1%}}.
|Description =
|#default = 
}}</includeonly>

This data is invisible on the page itself, thanks to the includeonly tags.

Next, copy this code to Bleeding or Bleeding/Tooltip or Bleeding/anything page:

{{ {{{1|Tooltip hover box}}}
|title= {{Condition}}
}}

It will automatically load the condition's data and fill them into this format. Go to Bleeding to see the result.

If you want to you can specify from which page to load the data from: {{ {{{1|Tooltip hover box}}} |title= {{Condition|Daze}} }}

Custom Title and Image

In addition to the data structure above, the Condition template accepts two optional parameters "Title" and "Image". These can be used for conditions that share their name with a skill (like Elusiveness and Elusiveness (Condition)).
To use them, simply add them to the data structure:

|Title = Elusiveness
|Image = Elusiveness.png

Then the produced tooltip will use the Title and Image name you provided instead of automatically using the page name.