Template:Damage info: Difference between revisions

From Baldur's Gate 3 Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
<includeonly><div class="bg3wiki-damage-info">{{DieIcon|D{{{die}}}|{{{type}}}}} {{DamageColor | {{{type}}} | {{{count}}}d{{{die}}} {{#if:{{{plus|}}}|+ {{{plus}}}|}} ({{#expr: {{{count}}} + {{{plus|0}}} }}~{{#expr: {{{count}}}*{{{die}}} + {{{plus|0}}} }}) {{DamageModifier|{{{modifier|}}}}} {{#if:{{{per|}}}|per {{{per}}}|}} }} {{DamageType|{{{type}}}}}</div></includeonly><noinclude>
<includeonly><div class="bg3wiki-damage-info">{{DieIcon|D{{{die}}}|{{{type}}}}} {{DamageColor | {{{type}}} | {{{count}}}d{{{die}}} {{#switch:{{{plus|0}}}|0=|+ {{{plus}}}}} ({{#expr: {{{count}}} + {{{plus|0}}} }}~{{#expr: {{{count}}}*{{{die}}} + {{{plus|0}}} }}) {{DamageModifier|{{{modifier|}}}}} {{#if:{{{per|}}}|per {{{per}}}|}} }} {{DamageType|{{{type}}}}}</div></includeonly><noinclude>
Examples:
Examples:


Line 45: Line 45:
{{DamageInfo|count=1|die=8|modifier=Wisdom|type=Bludgeoning}}
{{DamageInfo|count=1|die=8|modifier=Wisdom|type=Bludgeoning}}


---
'''IMPORTANT NOTES'''
The {{c|plus}} parameter must be either omitted entirely, or set to a valid number, but never provided with an empty value like {{c|<nowiki>{{...|plus=|...}}</nowiki>}}.  It can be set to 0, which is the same as omitting it, so if you're using this template from within another, and want to pass on an optional parameter for the plus value, you can pass it on like {{c|<nowiki>{{...|plus={{{MyOptionalPlus|0}}}|...}}</nowiki>}}.
</noinclude>
</noinclude>

Revision as of 07:25, 2 February 2023

Examples:

{{DamageInfo|count=1|die=8|type=Slashing}}

D8 Slashing.png 1d8 (1~8) Damage TypesSlashing

---

{{DamageInfo|count=4|die=6|type=Radiant}}

D6 Radiant.png 4d6 (4~24) Damage TypesRadiant

---

{{DamageInfo|count=1|die=4|plus=1|type=Force}}

D4 Force.png 1d4 + 1 (2~5) Damage TypesForce

---

{{DamageInfo|count=2|die=10|type=Fire|per=ray}}

D10 Fire.png 2d10 (2~20) per ray Damage TypesFire

---

{{DamageInfo|count=1|die=12|type=Poison|per=turn}}

D12 Poison.png 1d12 (1~12) per turn Damage TypesPoison

---

{{DamageInfo|count=1|die=8|modifier=melee|type=Piercing}}

---

{{DamageInfo|count=1|die=8|modifier=ranged|type=Piercing}}

---

{{DamageInfo|count=1|die=8|modifier=finesse|type=Piercing}}

---

{{DamageInfo|count=1|die=8|modifier=Wisdom|type=Bludgeoning}}

---

IMPORTANT NOTES

The plus parameter must be either omitted entirely, or set to a valid number, but never provided with an empty value like {{...|plus=|...}}. It can be set to 0, which is the same as omitting it, so if you're using this template from within another, and want to pass on an optional parameter for the plus value, you can pass it on like {{...|plus={{{MyOptionalPlus|0}}}|...}}.