Template:Slot/doc: Difference between revisions
From Archaelund Wiki
(Created page with "== Description == This template contains the predefined equipment slots to be used within equipment pages and takes the corresponding tags ({{ListFormat|{{Slot|TagList}}|Bullets}}) as input. The output is the description to be displayed on the Wiki page. == Usage == <pre> {{Slot|<tag>}} </pre> For generating a semicolon-separated list of all available tags (intended for documentation purposes) use <pre> {{Slot|TagList}} </pre> == Tag options == <table class="wikitable"...") |
No edit summary |
||
| Line 14: | Line 14: | ||
<table class="wikitable"> | <table class="wikitable"> | ||
<tr><th>Tag</th><th>Output</th></tr> | <tr><th>Tag</th><th>Output</th></tr> | ||
<tr><td>Chest</td><td>{{Slot|Chest}}</td></tr> | <tr><td>Chest</td><td>{{Slot|Chest}}</td></tr> | ||
<tr><td>Finger</td><td>{{Slot|Finger}}</td></tr> | |||
<tr><td>Foot</td><td>{{Slot|Foot}}</td></tr> | <tr><td>Foot</td><td>{{Slot|Foot}}</td></tr> | ||
<tr><td>Hand</td><td>{{Slot|Hand}}</td></tr> | <tr><td>Hand</td><td>{{Slot|Hand}}</td></tr> | ||
| Line 22: | Line 22: | ||
<tr><td>Neck</td><td>{{Slot|Neck}}</td></tr> | <tr><td>Neck</td><td>{{Slot|Neck}}</td></tr> | ||
<tr><td>Offhand</td><td>{{Slot|Offhand}}</td></tr> | <tr><td>Offhand</td><td>{{Slot|Offhand}}</td></tr> | ||
<tr><td>Shoulder</td><td>{{Slot|Shoulder}}</td></tr> | <tr><td>Shoulder</td><td>{{Slot|Shoulder}}</td></tr> | ||
<tr><td>Waist</td><td>{{Slot|Waist}}</td></tr> | |||
</table> | </table> | ||
Revision as of 19:23, 7 January 2025
Description
This template contains the predefined equipment slots to be used within equipment pages and takes the corresponding tags (Chest • Finger • Feet • Hands • Head • Mainhand • Neck • Offhand • Projectile • Shoulders • Waist) as input. The output is the description to be displayed on the Wiki page.
Usage
{{Slot|<tag>}}
For generating a semicolon-separated list of all available tags (intended for documentation purposes) use
{{Slot|TagList}}
Tag options
| Tag | Output |
|---|---|
| Chest | Chest |
| Finger | Finger |
| Foot | |
| Hand | |
| Head | Head |
| Mainhand | Mainhand |
| Neck | Neck |
| Offhand | Offhand |
| Shoulder | |
| Waist | Waist |
How to add new slots
In order to add a new slot, you have to insert a new case in the template's #switch structure (only parts indicated by <...> may be edited):
|<NewTag> = <output text>
Also, add the new tag to the existing TagList case so it will appear in any documentation:
|TagList = ...; <NewTag>; ...