Template:Damage info: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<includeonly>{{#switch: {{{1}}} | <includeonly>{{#switch: {{{1}}} | ||
| weapon = {{InfoBlob | Normal Weapon Damage }} | | weapon = {{InfoBlob | Normal Weapon Damage }} | ||
| half weapon = {{InfoBlob | 1/2 Normal Weapon Damage }} | |||
| #default = {{DamageInfo/Primitive | | #default = {{DamageInfo/Primitive | ||
| flat value = {{#if: {{#pos: {{{1|}}} | d }} {{#pos: {{{1|}}} | + }} | <!--nothing--> | {{{1|}}} }} | | flat value = {{#if: {{#pos: {{{1|}}} | d }} {{#pos: {{{1|}}} | + }} | <!--nothing--> | {{{1|}}} }} | ||
Line 30: | Line 31: | ||
Examples: | Examples: | ||
{{code|<nowiki>{{DamageInfo | weapon }}</nowiki>}} | |||
{{DamageInfo | weapon }} (works inline) | |||
--- | |||
{{code|<nowiki>{{DamageInfo | half weapon }}</nowiki>}} | |||
{{DamageInfo | half weapon }} (works inline) | |||
--- | |||
''All other variants below are forced onto their own line and can't be used inline.'' | |||
--- | |||
{{code|<nowiki>{{DamageInfo | 2 | Acid }}</nowiki>}} | {{code|<nowiki>{{DamageInfo | 2 | Acid }}</nowiki>}} |
Revision as of 19:56, 4 September 2023
New usage
Examples:
{{DamageInfo | weapon }}
Normal Weapon Damage (works inline)
---
{{DamageInfo | half weapon }}
1/2 Normal Weapon Damage (works inline)
---
All other variants below are forced onto their own line and can't be used inline.
---
{{DamageInfo | 2 | Acid }}
---
{{DamageInfo | +2 | Acid }}
---
{{DamageInfo | 1d8 | Slashing}}
---
{{DamageInfo | 4d6 | Radiant}}
---
{{DamageInfo | 1d4+1 | Force}}
---
{{DamageInfo | 2d10 | Fire | per = ray }}
---
{{DamageInfo | 1d12 | Poison | per = turn }}
---
{{DamageInfo | 1d8 | Piercing | modifier = melee }}
---
{{DamageInfo | 1d8 | Piercing | modifier = ranged }}
---
{{DamageInfo | 1d8 | Piercing | modifier = finesse }}
---
{{DamageInfo | 1d8 | Bludgeoning | modifier = Wisdom }}
---
{{DamageInfo | 2d6 | Cold | save = no }}
---
{{DamageInfo | 2d6 | Acid | save = Dexterity | save effect = half }}
Legacy usage
Examples:
{{DamageInfo | count = 1 | die = 8 | type = Slashing }}
---
{{DamageInfo | count = 4 | die = 6 | type = Radiant }}
---
{{DamageInfo | count = 1 | die = 4 | plus = 1 | type = Force }}
---
{{DamageInfo | count = 2 | die = 10 | type = Fire | per = ray }}
---
{{DamageInfo | count = 1 | die = 12 | type = Poison | per = turn }}
---
{{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}}} | ...}}
.