Template:Attitude/doc: Difference between revisions
From Archaelund Wiki
(Created page with "== Description == This template contains the predefined attitude texts to be used within Template:Character and takes the corresponding tags ({{ListFormat|{{Attitude|TagLi...") |
No edit summary |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 8: | Line 8: | ||
For generating a semicolon-separated list of all available tags (intended for documentation purposes) use | For generating a semicolon-separated list of all available tags (intended for documentation purposes) use | ||
<pre> | <pre> | ||
{{ | {{Attitude|TagList}} | ||
</pre> | </pre> | ||
== How to add new | == Tag options == | ||
In order to add a new | <table class="wikitable"> | ||
<tr><th>Tag</th><th>Output</th></tr> | |||
<tr><td>Friendly</td><td>{{Attitude|Friendly}}</td></tr> | |||
<tr><td>Hostile</td><td>{{Attitude|Hostile}}</td></tr> | |||
<tr><td>FriendlyHostile</td><td>{{Attitude|FriendlyHostile}}</td></tr> | |||
<tr><td>HostileFriendly</td><td>{{Attitude|HostileFriendly}}</td></tr> | |||
<tr><td>PretendFriendly</td><td>{{Attitude|PretendFriendly}}</td></tr> | |||
<tr><td>Unknown</td><td>{{Attitude|Unknown}}</td></tr> | |||
</table> | |||
== How to add new attitude texts == | |||
In order to add a new attitude text, you have to insert a new case in the template's <nowiki>#switch</nowiki> structure (only parts indicated by <...> may be edited): | |||
<pre> | <pre> | ||
|<NewTag> = <output text> | |<NewTag> = <output text> | ||
Latest revision as of 15:17, 13 April 2025
Description
This template contains the predefined attitude texts to be used within Template:Character and takes the corresponding tags (Friendly • Hostile • FriendlyHostile • HostileFriendly • PretendFriendly • Unknown) as input. The output is the description to be displayed on the Wiki page.
Usage
{{Attitude|<tag>}}
For generating a semicolon-separated list of all available tags (intended for documentation purposes) use
{{Attitude|TagList}}
Tag options
| Tag | Output |
|---|---|
| Friendly | Always friendly. |
| Hostile | Always hostile. |
| FriendlyHostile | Initially friendly, but may turn hostile (depending on player's choices). |
| HostileFriendly | Initially hostile, but may turn friendly (depending on player's choices). |
| PretendFriendly | Pretends to be friendly, but turns hostile later. |
| Unknown | Unknown (no direct interaction possible). |
How to add new attitude texts
In order to add a new attitude text, 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>; ...