Jump to navigation Jump to search

You are not logged in. Please consider registering an account. By having a StrategyWiki account, you can have your own user page, upload images for your guide, and even customize the look of the site to match your tastes! Also, another benefit of registering an account is that your IP address is not logged whenever you edit, so it adds security and privacy as well. Sign up today! It takes less than one minute and requires no personal information — you're not even required to provide an e-mail address!

If you choose not to register, don't worry! You can still edit StrategyWiki all the same, just with fewer luxuries than registered users have. Your IP address will be recorded in this page's edit history, you must use the Show Preview feature to check over your work before being allowed to save your changes, and your edit may be scrutinized a bit more than that of a registered user's edit. If you don't wish any of the preceding things to happen to you or your edit, please log in or register. Please make sure that you are following all applicable policies and guidelines when making your edit, and we hope that you continue to contribute to StrategyWiki in the future!

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
{{Header Nav|game=StrategyWiki:Guide}}
{{All Game Nav|game=StrategyWiki:Guide}}
{{floatingtoc}}
:''Template redirects here. For a list of templates see [[:Category:Templates]]''
If you have standard texts you want to include on several pages, the MediaWiki template feature comes into play (like the tag above which is included in the pages of the Help namespace).
If you have standard texts you want to include on several pages, the MediaWiki template feature comes into play (like the tag above which is included in the pages of the Help namespace).


==Creating a template==
==Creating a template==
Template names are prefixed with <code>Template:</code>, you create them like any other wiki page.
Template names are prefixed with <code>Template:</code>, you create them like any other wiki page.
Templates should only be created to graphically arrange data, and/or to ease the creation of additional pages or elements of pages. Keep in mind that templates should be used to reduce the amount of code on a page via repeated use.
Every template must be placed within a category, either [[:Category:Templates]] or [[:Category:Guide-specific templates]].
If you want to modify a template it's usually good to discuss it within the talk page if it's a major change. Making multiple changes to templates used on multiple pages can cause disastrous effects and bog down the job queue (increasing the server workload), so it's best to discuss changes on the talk page or try your idea in a sandbox before any changes are made. Most widely-used templates, like {{t|Game}} are protected to avoid this, so a discussion is the perfect way to get your ideas heard. Protected templates will require a [[StrategyWiki:Administrators|sysop/admin]] to make the change.
Categorization, careful naming, and maintaining a hierarchy is key in ensuring that our templates don't get cluttered.  Templates are critical for reducing redundancy, but they are powerful tools that must be given respect and much thought so that they don't in themselves become redundant.
=== Documentation Sub-pages ===
When a template becomes widely used, such as {{t|Game}}, it's necessary to move the documentation (a.k.a. explanation) of the template to another page.
Rules for creating a documentation subpage:
*First, start <nowiki><noinclude></nowiki> tags immediately after the template code ends. This is followed by the {{t|Documentation}} template, which automatically transcludes the documentation page and a link to it. After adding the <nowiki>[[Category:Templates|{{subst:PAGENAME}}]] or [[Category:Guide-specific templates|{{subst:PAGENAME}}]]</nowiki> category, close the <nowiki></noinclude></nowiki> tag.
*The documentation sub-page must be titled "Documentation", as in [[Template:Game/Documentation]]. After adding the {{t|Documentation}} template, you can click the red link it creates to go to the properly named page.
*The sub-page should be categorized by <nowiki>[[Category:Template documentation|{{subst:PAGENAME}}]], surrounded by <noinclude> tags</nowiki>.


==Using a template==
==Using a template==
Line 30: Line 12:


==Using parameters in templates==
==Using parameters in templates==
{|{{prettytable}}
<div style="float:right">
! Description
{| {{Prettytable}}
! Template text
! You type…
! You get…
|-
|-
| Template with numbered parameters
|bgcolor="#A7C1F2" colspan="2" align="center" |'''Template with numbered parameters'''
|<pre><nowiki>  
|-
| colspan="2" |
<pre><nowiki>  
'''A little thank you...'''<br>
'''A little thank you...'''<br>
<small>for {{{1}}}.<br>
<small>for {{{1}}}.<br>
hugs, {{{2}}}</small>
hugs, {{{2}}}</small>
</nowiki></pre>  
</nowiki></pre>  
|<code><nowiki>{{Thank you|all|~~~}}</nowiki></code>
|{{Thank you|all|[[User:Someuser|Someuser]]}}
|-
|-
| Template with named parameters
|bgcolor="#A7C1F2"|'''You type'''
|<pre><nowiki>  
|bgcolor="#A7C1F2"|'''You get'''
|-
|<code><nowiki>{{Thankyou|all|~~~}}</nowiki></code>
|
{{Thankyou|all|[[User:Someuser|Someuser]]}}
|-
|bgcolor="#A7C1F2" colspan="2" align="center" |'''with named parameters'''
|-
| colspan="2" |
<pre><nowiki>  
'''A little thank you...'''<br>
'''A little thank you...'''<br>
<small>for {{{reason}}}.<br>
<small>for {{{reason}}}.<br>
hugs, {{{signature}}}</small>
hugs, {{{signature}}}</small>
</nowiki></pre>  
</nowiki></pre>  
|<pre><nowiki>{{Thank you
|-
|bgcolor="#A7C1F2"|'''You type'''
|bgcolor="#A7C1F2"|'''You get'''
|-
|<pre><nowiki>{{Thankyou
|reason=all
|reason=all
|signature=~~~
|signature=~~~}}</nowiki></pre>
}}</nowiki></pre>
|
|{{Thank you|all|[[User:Someuser|Someuser]]}}
{{Thankyou|all|[[User:Someuser|Someuser]]}}
|}
|}
 
</div>
You can define parameters in templates either numbered as <code><nowiki>{{{1}}}</nowiki></code> or named <code><nowiki>{{{param}}}</nowiki></code>.   
You can define parameters in templates either numbered as <code><nowiki>{{{1}}}</nowiki></code> or named <code><nowiki>{{{param}}}</nowiki></code>.   


'''Example:''' you want a little thank you note you can put other users on their talk page with a reason and your signature. In the [[Template:Thank you]] you enter your text.
'''Example:''' you want a little thank you note you can put other users on their talk page with a reason and your signature. In the [[Template:Thankyou]] you enter your text.


When using the template on a page, you fill in the parameter values, separated by a pipe char (|): <code><nowiki>{{Thank you|all|~~~}}</nowiki></code> or - if you have used named parameters  <code><nowiki>{{Thank you|reason=all|signature=~~~}}</nowiki></code>. The advantage of using named parameters in your template is that they are flexible in order. It also makes the template easier to understand if you have many parameters. If you want to change the order of numbered parameters, you have to mention them explicitly: <code><nowiki>{{Thank you|2=~~~|1=all}}</nowiki></code>.
When using the template on a page, you fill in the parameter values, separated by a pipe char (|): <code><nowiki>{{Thankyou|all|~~~}}</nowiki></code> or - if you have used named parameters  <code><nowiki>{{Thankyou|reason=all|signature=~~~}}</nowiki></code>. The advantage of using named parameters in your template is that they are flexible in order. It also makes the template easier to understand if you have many parameters. If you want to change the order of numbered parameters, you have to mention them explicitly: <code><nowiki>{{Thankyou|2=~~~|1=all}}</nowiki></code>.


==Control template inclusion==
==Control template inclusion==
You can control template inclusion by the use of <code>&lt;noinclude&gt;</code>, <code>&lt;includeonly&gt;</code> and <code>&lt;onlyinclude&gt;</code> tags.
You can control template inclusion by the use of <code><nowiki><noinclude></nowiki></code> and
<code><nowiki><includeonly></nowiki></code> tags.


Anything between <code>&lt;noinclude&gt;</code> and <code>&lt;/noinclude&gt;</code> will be processed and displayed only when the page is being viewed directly, not included.
Anything between <code><nowiki><noinclude></nowiki></code> and <code><nowiki></noinclude></nowiki></code> will be processed and
displayed only when the page is being viewed directly, not included.


Possible applications are:
Possible applications are:
Line 74: Line 68:
* Explanatory text about how to use the template
* Explanatory text about how to use the template


The converse is <code>&lt;includeonly&gt;</code>. Text between <code>&lt;includeonly&gt;</code> and <code>&lt;/includeonly&gt;</code> will be processed and displayed only when the page is being included. The obvious application is to add all pages containing a given template to a category.
The converse is <code><nowiki><includeonly></nowiki></code>. Text between <code><nowiki><includeonly></nowiki></code> and
 
<code><nowiki></includeonly></nowiki></code> will be processed and displayed only when the page is
<code>&lt;onlyinclude&gt;</code> is somewhat different. Anything between
being included. The obvious application is to add all pages containing a given template to a category.
<code>&lt;onlyinclude&gt;</code> and
<code>&lt;/onlyinclude&gt;</code> displays everywhere, but everything outside of it is treated as if it was wrapped in
<code>&lt;noinclude&gt;</code> tags (so only the stuff in the onlyinclude is included on other pages).


Note that the usual update problems apply -- if you change the
Note that the usual update problems apply -- if you change the
Line 85: Line 76:
won't be updated until those pages are edited.
won't be updated until those pages are edited.
==Making templates useful==
==Making templates useful==
For templates to be effective, users need to find them and be able to use them. When editing, a list of links to all templates used on the page can be found at the bottom of the page, below the edit text box and Save page button. Wikis are not user friendly when it comes to finding, using, and working with templates. A simple technique is to have a usage section on the template page. For example, under a "Usage" heading, you may find a copy/paste-able version of the template, with example content or a short list of the necessary and optional parameters:
For templates to be effective users need to find them and be able to use them. Wikis are not user friendly when it comes to finding, using, and working with templates. A simple technique is to have a usage on the template page.
{{col|2|begin}}
For example
<div style="text-align:center;font-size:1.2em;text-decoration:underline">Example content</div>
<div style="display:table; width:auto;">
<pre>
==Advanced Template Usage==
{{sidebar
We already covered parameters, think of them as variables (temporarily stored data). MediaWiki allows us to look at those variables and check if they even contain anything. What this lets us do is create templates in which only certain parts appear if the data exists within them, for instance in [[:Template:Infobox]] and [[:Template:Final Fantasy VII/Boss]].
|float=left, right, or none (default: right)
|class=Variant class (e.g. "banner"; default: empty)
|width=Box width (CSS syntax)
|title=Box title
|contents=Box contents
}}
</pre>
{{col|2}}
<div style="text-align:center;font-size:1.2em;text-decoration:underline">Parameter list</div>
<pre>
{{sidebar
|float=
|class=
|width=
|title=
|contents=
}}
</pre>
*'''Necessary parameters'''
**''title'': Box title
**''contents'': Box contents
**''width'': Box width (CSS syntax)
*'''Optional parameters'''
**''float'': left, right, or none (default: right)
**''class'': Variant class (e.g. "banner"; default: empty)
{{col|2|end}}
The user can then simply copy and paste the template for use. Make sure to use '''<nowiki><noinclude></nowiki>''' tags around everything from the end of the tempate code to the end of the page.
== Advanced template usage ==
We already covered parameters, think of them as variables (temporarily stored data). MediaWiki allows us to look at those variables and check if they even contain anything. What this lets us do is create templates in which only certain parts appear if the data exists within them, for instance in {{t|Game}} and [[:Template:Final Fantasy VII/Boss]].


The <nowiki>{{#if:}}</nowiki> function is what lets us manipulate wiki code in this way.  We can test for existence within a parameter, then display a certain text if it exists, and a certain text if it doesn't. This way we can display and hide text when empty spaces would normally exist. Other parser functions like <nowiki>{{#if:}}</nowiki> exist and are used for different purposes. Usage of these functions is outlined below.
The <nowiki>{{#if:}}</nowiki> function is what lets us manipulate wiki code in this way.  We can test for existence within a parameter, then display a certain text if it exists, and a certain text if it doesn't. This way we can display and hide text when empty spaces would normally exist. Other parser functions like {{#if:}} exist and are used for different purposes. Usage of these functions is outlined below.


Note: use <nowiki>{{!}}</nowiki> to replace the use of pipes (the "|" character). If you don't, the conditional argument (e.g. <nowiki>{{#if:}}</nowiki>) will end abruptly.  Typically, <nowiki>{{!}}</nowiki> is used when generating new rows of a table (HTML TR/TD) within a conditional argument.
===<nowiki>{{#if:}}</nowiki>===
 
=== <nowiki>{{#if:}}</nowiki> ===
The {{#if:}} function allows us to test a variable to see if it is empty or not. It returns the first value (value after the first pipe) if it is not empty and the second value (value after the second pipe) if it is. It is used with the syntax:
The {{#if:}} function allows us to test a variable to see if it is empty or not. It returns the first value (value after the first pipe) if it is not empty and the second value (value after the second pipe) if it is. It is used with the syntax:
<pre>{{#if:<variable to test>|<what to display if test is not empty>|<what to display if test is empty>}}</pre>
<pre>{{#if:<variable to test>|<what to display if test is not empty>|<what to display if test is empty>}}</pre>
{|{{prettytable}}
{| {{prettytable|notwide=1}}
|+ Usage of <nowiki>{{#if:}}</nowiki>
|bgcolor="#A7C1F2" colspan="3" align="center"|'''Usage of <nowiki>{{#if:}}</nowiki>'''
|-
|-
!You type…
!What you type
!You see…
!What you see
!Why?
!Why you see it
|-
|-
|<pre>{{#if:{{{1|}}}|not empty|empty}}</pre>
|<pre>{{#if:{{{1|}}}|not empty|empty}}</pre>
Line 158: Line 118:
|The test parameter was empty, so that was the result. When skipping sections in the middle of the #if construct, you still need the pipes to go to later sections.
|The test parameter was empty, so that was the result. When skipping sections in the middle of the #if construct, you still need the pipes to go to later sections.
|}
|}
</div>


=== <nowiki>{{#expr:}}</nowiki> ===
==Usage==
<nowiki>{{#expr:}}</nowiki> evaluates a mathematical expression or boolean comparison (where the results are only 1 or 0, for true and false respectively). It is used with the syntax:<pre>
Allows to establish a link to a subject:
{{#expr:<expression to be evaluated>}}</pre>
<div><pre>
The operands that can be used in <nowiki>{{#expr:}}</nowiki> are listed below.
{{NameOfTemplate|Term1+Term2+Term3}}
 
</pre></div>
{|{{prettytable}}
|+ Usage of <nowiki>{{#expr:}}</nowiki>
|-
! Operator
! Operation
! Example
|-
|rowspan="2" colspan="2" align="center"| None
|
<nowiki>{{#expr: 123456789012345}}</nowiki> = {{#expr: 123456789012345}}
|-
|
<nowiki>{{#expr: 0.000001}}</nowiki> = {{#expr: 0.000001}}
|-
! ( )
| Grouping operators
|
<nowiki>{{#expr: (30 + 7) * 7 }}</nowiki> = {{#expr: (30 + 7) * 7 }}
|-
! +
| Unary '''<tt>+</tt>''' sign
|
<nowiki>{{#expr: +30 * +7}}</nowiki> = {{#expr: +30 * +7}}
|-
! -
| Unary '''<tt>-</tt>''' sign (negation)
|
<nowiki>{{#expr: -30 * -7}}</nowiki> = {{#expr: -30 * -7}}
|-
! not
|  Unary NOT, logical NOT
|
<nowiki>{{#expr: not 0 * 7}}</nowiki> = {{#expr: not 0 * 7}}<br />
<nowiki>{{#expr: not 30+7}}</nowiki> = {{#expr: not 30+7}}
|-
! *
| Multiplication
|
<nowiki>{{#expr: 30 * 7}}</nowiki> = {{#expr: 30 * 7}}
|-
! /
| Division, same as '''div'''
|
<nowiki>{{#expr: 30 / 7}}</nowiki> = {{#expr: 30 / 7}}
|-
! div
| Division, same as '''/''',<br />no integer division
|
<nowiki>{{#expr: 30 div 7}}</nowiki> = {{#expr: 30 div 7}}<br />
<nowiki>{{#expr: 5 div 2 * 2 + 5 mod 2}}</nowiki> = {{#expr: 5 div 2 * 2 + 5 mod 2}}
|-
! mod
| "Modulo", remainder of division after truncating both operands to an integer.<br />Caveat, '''div''' and '''mod''' are different from all programming languages.
|
<nowiki>{{#expr: 30 mod 7}}</nowiki> = {{#expr: 30 mod 7}}<br />
<nowiki>{{#expr: -8 mod -3}}</nowiki> = {{#expr: -8 mod -3}}<br />
<nowiki>{{#expr: -8 mod +3}}</nowiki> = {{#expr: -8 mod +3}}<br />
<nowiki>{{#expr: 8 mod 2.7}}</nowiki> = {{#expr: 8 mod 2.7}}<br />
<nowiki>{{#expr: 8 mod 3.2}}</nowiki> = {{#expr: 8 mod 3.2}}<br />
<nowiki>{{#expr: 8.9 mod 3}}</nowiki> = {{#expr: 8.9 mod 3}}
|-
! <tt>+</tt>
| Addition
|
<nowiki>{{#expr: 30 + 7}}</nowiki> = {{#expr: 30 + 7}}
|-
! <tt>-</tt>
| Subtraction
|
<nowiki>{{#expr: 30 - 7}}</nowiki> = {{#expr: 30 - 7}}
|-
! round
| Rounds off the number on the left to the power of 1/10 given on the right
|
<nowiki>{{#expr: 30 / 7 round 3}}</nowiki> = {{#expr: 30 / 7 round 3}}<br />
<nowiki>{{#expr: 30 / 7 round 0}}</nowiki> = {{#expr: 30 / 7 round 0}}<br />
<nowiki>{{#expr: 3456 round -2}}</nowiki> = {{#expr: 3456 round -2}}
|-
! =
| Equality (numerical incl. logical)
|
<nowiki>{{#expr: 30 = 7}}</nowiki> = {{#expr: 30 = 7}}
|-
! &lt;&gt;
| Inequality, same as '''!='''
|
<nowiki>{{#expr: 30 <> 7}}</nowiki> = {{#expr: 30 <> 7}}
|-
! !=
| Inequality, same as '''&lt;&gt;''', logical ''xor''
|
<nowiki>{{#expr: 1 != 0}}</nowiki> = {{#expr: 1 != 0}}
|-
! &lt;
| Less than
|
<nowiki>{{#expr: 30 < 7}}</nowiki> = {{#expr: 30 < 7}}
|-
! &gt;
| Greater than
|
<nowiki>{{#expr: 30 > 7}}</nowiki> = {{#expr: 30 > 7}}
|-
! &lt;=
| Less than or equal to
|
<nowiki>{{#expr: 30 <= 7}}</nowiki> = {{#expr: 30 <= 7}}
|-
! &gt;=
| Greater than or equal to
|
<nowiki>{{#expr: 30 >= 7}}</nowiki> = {{#expr: 30 >= 7}}
|-
! and
| Logical AND
|
<nowiki>{{#expr: 4<5 and 4 mod 2}}</nowiki> = {{#expr: 4<5 and 4 mod 2}}
|-
! or
| Logical OR
|
<nowiki>{{#expr: 4<5 or 4 mod 2}}</nowiki> = {{#expr: 4<5 or 4 mod 2}}
|}
 
=== <nowiki>{{#ifeq:}}</nowiki> ===
This function compares a string or numerical value in <parameter to test> to the string or numerical value in <parameter to compare test to>. If you wish to compare strings represented by numbers and numeral operators, enclose the string within "" to force a string comparison. <What to display if test is true> and <what to display if test is false> are optional, but one must be used unless you wish to return absolutely nothing. Also, when testing operations, use <nowiki>{{#expr:}}</nowiki>. The usage for <nowiki>{{#ifeq:}}</nowiki> is as follows:
<pre>{{#ifeq:<parameter to test>
|<parameter to compare test to>
|<what to display if test is true>
|<what to display if test is false>
}}</pre>
 
{|{{prettytable}}
|+ Usage of <nowiki>{{#ifeq:}}</nowiki>
|-
!You type…
!You see…
|-
|<pre>{{#ifeq:+07|007|yes|no}}</pre>
|{{#ifeq:+07|007|yes|no}}
|-
|<pre>{{#ifeq:"+07"|"007"|yes|no}}</pre>
|{{#ifeq:"+07"|"007"|yes|no}}
|-
|<pre>{{#ifeq:foo|bar|yes|no}}</pre>
|{{#ifeq:foo|bar|yes|no}}
|-
|<pre>{{#ifeq:{{#expr:7*5+5}}|40|yes|no}}</pre>
|{{#ifeq:{{#expr:7*5+5}}|40|yes|no}}
|}
 
=== <nowiki>{{#switch:}}</nowiki> ===
This function allows you to do various things depending on the value of a variable (so you only need one function instead of multiple nested ifeqs). The usage for <nowiki>{{#switch:}}</nowiki> is as follows:
<pre>{{#switch:<parameter to test>
|<value 1> = <what to display if parameter is value 1>
|<value 2> = <what to display if parameter is value 2>
|<value 3> = <what to display if parameter is value 3>
...
|<default if none of the above worked>
}}</pre>
Please note that you may have as many checks as you wish and the default parameter is optional. If you need an equals sign <tt>=</tt> in your default value, use <tt>|#default = <default if none of the above worked></tt> instead. Also, the default parameter, if given, must ''always'' be last. Comparisons are case sensitive. "Default" parameters within the statements themselves will just be read as the value to match, and the text displayed will be the next parameter with the equals sign.


{|{{prettytable}}
The user can simply copy and paste the template to establish a new page that is similar to other pages. The example demonstrated is trival true, however a working example that demonstrates how templates can be used in complex situations to save time, accuracy and help categories pages on specialty topics more easily. see working example [[Template:All Game Nav|here]].
|+ Usage of <nowiki>{{#switch:}}</nowiki>
|-
!You type…
!You see…
|-
|<pre>{{#switch:hello|HELLO=foo|Hello=bar|baz}}</pre>
|{{#switch:hello|HELLO=foo|Hello=bar|baz}}
|-
|<pre>{{#switch:hello|HELLO=foo|hello=bar|baz}}</pre>
|{{#switch:hello|HELLO=foo|hello=bar|baz}}
|-
|<pre>{{#switch:hello|HELLO=foo = 1|Hello=bar = 2|#default=baz = 3}}</pre>
|{{#switch:hello|HELLO=foo = 1|Hello=bar = 2|#default=baz = 3}}
|-
|<pre>{{#switch:hello|HELLO=foo = 1|hello|hi|Hello=bar = 2|#default=baz = 3}}</pre>
|{{#switch:hello|HELLO=foo = 1|hello|hi|Hello=bar = 2|#default=baz = 3}}
|-
|<pre>{{#switch:{{{parametername}}}|<value1>=Whatever|<value2>=Something|Nothing}}</pre>
|When used in a template, depending on what you pass to "{{{parametername}}}", it could be either "Whatever", "Something", or "Nothing" if nothing is passed.
|}


{{Footer Nav|game=StrategyWiki:Guide|prevpage=Regular expressions|nextpage=Walkthrough}}
== See also ==
*[[:Category:Templates]]
{{Footer Nav|game=StrategyWiki:Guide|backpage=Tables|nextpage=Preview and save}}
Please note that all contributions to StrategyWiki are considered to be released under the Creative Commons Attribution-ShareAlike (see StrategyWiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here. You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!
Cancel Editing help (opens in new window)

Notice to contributors: The StrategyWiki administration does not condone plagiarism or the use of materials from any other source. Period. By saving this page you are promising us that you wrote this yourself, or copied it from a public domain or similar free resource. With the exception of official media (screenshots, artwork, symbols, etc., but not text) and materials released under the CC-BY-SA you must have the rights to or ownership of all work you submit to StrategyWiki. Do not copy text or images from other websites without permission. They will be deleted.

Copy and paste: – — ° ′ ″ ≈ ≠ ≤ ≥ ± − × ÷ ← → · §   Sign your posts on talk pages: ~~~~   Cite your sources: <ref></ref>


{{}}   {{{}}}   |   []   [[]]   [[Category:]]   #REDIRECT [[]]   &nbsp;   <s></s>   <sup></sup>   <sub></sub>   <code></code>   <pre></pre>   <blockquote></blockquote>   <ref></ref> <ref name="" />   {{Reflist}}   <references />   <includeonly></includeonly>   <noinclude></noinclude>   {{DEFAULTSORT:}}   <nowiki></nowiki>   <!-- -->   <span class="plainlinks"></span>


{{Header Nav|game={{subst:BASEPAGENAME}}}}   {{Footer Nav|game={{subst:BASEPAGENAME}}|prevpage=|nextpage=}}   {{spoilers}}   {{spoiler|}}   {{delete|Unused}}   {{rename|MS Monster .png}}   {{floatingtoc}}   {{stub}}


Symbols: ~ | ¡ ¿ † ‡ ↔ ↑ ↓ • ¶   # ∞   ‘ ’ “ ” ‹› «»   ¤ ₳ ฿ ₵ ¢ ₡ ₢ $ ₫ ₯ € ₠ ₣ ƒ ₴ ₭ ₤ ℳ ₥ ₦ № ₧ ₰ £ ៛ ₨ ₪ ৳ ₮ ₩ ¥   ♠ ♣ ♥ ♦   ♭ ♯ ♮   © ® ™
Latin: A a Á á À à  â Ä ä Ǎ ǎ Ă ă Ā ā à ã Å å Ą ą Æ æ Ǣ ǣ   B b   C c Ć ć Ċ ċ Ĉ ĉ Č č Ç ç   D d Ď ď Đ đ Ḍ ḍ Ð ð   E e É é È è Ė ė Ê ê Ë ë Ě ě Ĕ ĕ Ē ē Ẽ ẽ Ę ę Ẹ ẹ Ɛ ɛ Ǝ ǝ Ə ə   F f   G g Ġ ġ Ĝ ĝ Ğ ğ Ģ ģ   H h Ĥ ĥ Ħ ħ Ḥ ḥ   I i İ ı Í í Ì ì Î î Ï ï Ǐ ǐ Ĭ ĭ Ī ī Ĩ ĩ Į į Ị ị   J j Ĵ ĵ   K k Ķ ķ   L l Ĺ ĺ Ŀ ŀ Ľ ľ Ļ ļ Ł ł Ḷ ḷ Ḹ ḹ   M m Ṃ ṃ   N n Ń ń Ň ň Ñ ñ Ņ ņ Ṇ ṇ Ŋ ŋ   O o Ó ó Ò ò Ô ô Ö ö Ǒ ǒ Ŏ ŏ Ō ō Õ õ Ǫ ǫ Ọ ọ Ő ő Ø ø Œ œ   Ɔ ɔ   P p   Q q   R r Ŕ ŕ Ř ř Ŗ ŗ Ṛ ṛ Ṝ ṝ   S s Ś ś Ŝ ŝ Š š Ş ş Ș ș Ṣ ṣ ß   T t Ť ť Ţ ţ Ț ț Ṭ ṭ Þ þ   U u Ú ú Ù ù Û û Ü ü Ǔ ǔ Ŭ ŭ Ū ū Ũ ũ Ů ů Ų ų Ụ ụ Ű ű Ǘ ǘ Ǜ ǜ Ǚ ǚ Ǖ ǖ   V v   W w Ŵ ŵ   X x   Y y Ý ý Ŷ ŷ Ÿ ÿ Ỹ ỹ Ȳ ȳ   Z z Ź ź Ż ż Ž ž   ß Ð ð Þ þ Ŋ ŋ Ə ə   {{Unicode|}}
Greek: Ά ά Έ έ Ή ή Ί ί Ό ό Ύ ύ Ώ ώ   Α α Β β Γ γ Δ δ   Ε ε Ζ ζ Η η Θ θ   Ι ι Κ κ Λ λ Μ μ   Ν ν Ξ ξ Ο ο Π π   Ρ ρ Σ σ ς Τ τ Υ υ   Φ φ Χ χ Ψ ψ Ω ω   {{Polytonic|}}
Cyrillic: А а Б б В в Г г   Ґ ґ Ѓ ѓ Д д Ђ ђ   Е е Ё ё Є є Ж ж   З з Ѕ ѕ И и І і   Ї ї Й й Ј ј К к   Ќ ќ Л л Љ љ М м   Н н Њ њ О о П п   Р р С с Т т Ћ ћ   У у Ў ў Ф ф Х х   Ц ц Ч ч Џ џ Ш ш   Щ щ Ъ ъ Ы ы Ь ь   Э э Ю ю Я я   ́
IPA: t̪ d̪ ʈ ɖ ɟ ɡ ɢ ʡ ʔ   ɸ β θ ð ʃ ʒ ɕ ʑ ʂ ʐ ç ʝ ɣ χ ʁ ħ ʕ ʜ ʢ ɦ   ɱ ɳ ɲ ŋ ɴ   ʋ ɹ ɻ ɰ   ʙ ⱱ ʀ ɾ ɽ   ɫ ɬ ɮ ɺ ɭ ʎ ʟ   ɥ ʍ ɧ   ʼ   ɓ ɗ ʄ ɠ ʛ   ʘ ǀ ǃ ǂ ǁ   ɨ ʉ ɯ   ɪ ʏ ʊ   ø ɘ ɵ ɤ   ə ɚ   ɛ œ ɜ ɝ ɞ ʌ ɔ   æ   ɐ ɶ ɑ ɒ   ʰ ʱ ʷ ʲ ˠ ˤ ⁿ ˡ   ˈ ˌ ː ˑ ̪   {{IPA|}}

Your changes will be visible immediately.
  • For testing, please use the sandbox instead.
  • On talk pages, please sign your comment by typing four tildes (~~~~).

Please note:
  • If you don't want your writing to be edited mercilessly or redistributed by others, do not submit it.
  • Only public domain resources can be copied without permission — this does not include the vast majority of web pages or images.
  • See our policies and guidelines for more information on editing.

This page is a member of a hidden category: