Template:ArmorTableItem: Difference between revisions
Created page with "<includeonly>|- | {{ItemIcon|{{{_pageName}}}}} | [[{{{_pageName}}}]] | {{#if:{{{Defense|}}} | {{{Defense}}} {{SkillIcon|Defense}} | }} | {{#if:{{{Accuracy|}}} | {{{Accuracy}}} {{SkillIcon|Accuracy}} | }} | {{#if:{{{Strength|}}} | {{{Strength}}} {{SkillIcon|Strength}} | }} | {{#if:{{{Ranged|}}} | {{{Ranged}}} {{SkillIcon|Range}} | }} | {{#if:{{{Magic|}}} | {{{Magic}}} {{SkillIcon|Magic}} | }} </includeonly>" |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
| [[{{{_pageName}}}]] | | [[{{{_pageName}}}]] | ||
| {{#if:{{{Defense|}}} | | {{#if:{{{Defense|}}} | ||
| {{{Defense}}} {{SkillIcon|Defense}} | | {{#ifexpr:{{{Defense}}} >= 0 | ||
| | | +{{{Defense}}} {{SkillIcon|Defense}} | ||
| {{{Defense}}} {{SkillIcon|Defense}} | |||
}} | |||
| | |||
}} | }} | ||
| {{#if:{{{Accuracy|}}} | | {{#if:{{{Accuracy|}}} | ||
| {{{Accuracy}}} {{SkillIcon|Accuracy}} | | {{#ifexpr:{{{Accuracy}}} >= 0 | ||
| | | +{{{Accuracy}}} {{SkillIcon|Accuracy}} | ||
| {{{Accuracy}}} {{SkillIcon|Accuracy}} | |||
}} | |||
| | |||
}} | }} | ||
| {{#if:{{{Strength|}}} | | {{#if:{{{Strength|}}} | ||
| {{{Strength}}} {{SkillIcon|Strength}} | | {{#ifexpr:{{{Strength}}} >= 0 | ||
| | | +{{{Strength}}} {{SkillIcon|Strength}} | ||
| {{{Strength}}} {{SkillIcon|Strength}} | |||
}} | |||
| | |||
}} | }} | ||
| {{#if:{{{Ranged|}}} | | {{#if:{{{Ranged|}}} | ||
| {{{Ranged}}} {{SkillIcon|Range}} | | {{#ifexpr:{{{Ranged}}} >= 0 | ||
| | | +{{{Ranged}}} {{SkillIcon|Range}} | ||
| {{{Ranged}}} {{SkillIcon|Range}} | |||
}} | |||
| | |||
}} | }} | ||
| {{#if:{{{Magic|}}} | | {{#if:{{{Magic|}}} | ||
| {{{Magic}}} {{SkillIcon|Magic}} | | {{#ifexpr:{{{Magic}}} >= 0 | ||
| | | +{{{Magic}}} {{SkillIcon|Magic}} | ||
| {{{Magic}}} {{SkillIcon|Magic}} | |||
}} | |||
| | |||
}} | }} | ||
</includeonly> | </includeonly> |