Template:Condition: Difference between revisions
Jump to navigation
Jump to search
(Fix wrong documentation for inline) |
(Add altname) |
||
Line 1: | Line 1: | ||
<includeonly><onlyinclude>{{#if:{{{border|}}}|<div style="padding-bottom: 1em"><div class="bg3wiki-tooltip-box">||}}{{#cargo_query: tables = conditions | <includeonly><onlyinclude>{{#if:{{{border|}}}|<div style="padding-bottom: 1em"><div class="bg3wiki-tooltip-box">||}}{{#cargo_query: tables = conditions | ||
| fields = name, icon, effects, CONCAT('{{{save|}}}') = save, CONCAT('{{{duration|}}}') = duration, CONCAT('{{{inline|}}}') = inline | | fields = name, icon, effects, CONCAT('{{{save|}}}') = save, CONCAT('{{{duration|}}}') = duration, CONCAT('{{{inline|}}}') = inline, CONCAT('{{#replace:{{{altname|}}}|'|"}}') = altname | ||
| where = name = '{{#replace: {{{1}}} | ' | '' }}' | | where = name = '{{#replace: {{{1}}} | ' | '' }}' | ||
| format = template | | format = template | ||
Line 86: | Line 86: | ||
Result: blabla {{Condition | Bleeding | inline = true }} blabla | Result: blabla {{Condition | Bleeding | inline = true }} blabla | ||
=== Alternative display name === | |||
<pre> | |||
{{Condition | Bleeding | save = CON | altname=oh no i'm bleeding | duration = 2 }} | |||
</pre> | |||
Result: | |||
{{Condition | Bleeding | save = CON | altname=oh no i'm bleeding | duration = 2 }} | |||
</noinclude> | </noinclude> |
Revision as of 14:44, 2 October 2023
Use this to display a condition. Examples follow.
This template just runs the Cargo query. For the formatting, see: Template:Condition/Format
Base usage
Usage:
{{Condition | Bleeding }}
Result:
- Creature takes 2Slashing damage at the start of each turn and has Disadvantage on Constitution Saving throws.
- Removed by healing.
With duration
Usage:
{{Condition | Bleeding | duration = 2 }}
Result:
Duration: 2 turns
- Creature takes 2Slashing damage at the start of each turn and has Disadvantage on Constitution Saving throws.
- Removed by healing.
With saving throw
Usage:
{{Condition | Bleeding | save = CON }}
Result:
- Creature takes 2Slashing damage at the start of each turn and has Disadvantage on Constitution Saving throws.
- Removed by healing.
With duration and saving throw
Usage:
{{Condition | Bleeding | save = CON | duration = 2 }}
Result:
Duration: 2 turns
- Creature takes 2Slashing damage at the start of each turn and has Disadvantage on Constitution Saving throws.
- Removed by healing.
With a border
Use border = 1 to add a border.
{{Condition | Bleeding | save = CON | duration = 2 | border = 1}}
Result:
Duration: 2 turns
- Creature takes 2Slashing damage at the start of each turn and has Disadvantage on Constitution Saving throws.
- Removed by healing.
Inline-friendly
Usage:
{{Condition | Bleeding | inline = true }}
Result: blabla blabla
Alternative display name
{{Condition | Bleeding | save = CON | altname=oh no i'm bleeding | duration = 2 }}
Result:
Duration: 2 turns
- Creature takes 2Slashing damage at the start of each turn and has Disadvantage on Constitution Saving throws.
- Removed by healing.