Template:CharacterSpellList/doc: Difference between revisions

From Dragon Quest Wiki
(Created page)
 
m (7 revisions: Import of Template namespace from Wikia)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
The CharacterSpellList template is used to display a list of spells a character can learn.
The CharacterSpellList template is used to display a list of spells a character can learn.  Each set of calls to this template represents the list of spells for a '''single character''' in a '''single version''' of a game.


==Usage==
==Usage==
===Header===
===Header===
A header call to this template should be the first usage of this template on any page.
A header call to this template should be the first usage of this template on any page.
<pre>{{CharacterSpellList|header}}</pre>
<pre>{{CharacterSpellList|header|title=Dragon Quest II|subtitle=NES}}</pre>
*header: A required parameter which marks this as the start of a spell list table.
*header: A required parameter which marks this as the start of a spell list table.
*title: A required parameter specifying the title of the table.  Typically the name of the game.
*subtitle: An optional parameter specifying a subtitle for the table.  Typically the console version of a game when there is more than one.
===Entry===
===Entry===
Each entry call designates a single spell.
Each entry call designates a single spell.
Line 11: Line 13:
*entry: A required parameter marking an entry.
*entry: A required parameter marking an entry.
*spell: The name of the spell.  Should be an interwiki link.
*spell: The name of the spell.  Should be an interwiki link.
*level: The level at which the spell is learned.  Should also include console information if a spell is learned at different levels in different versions of the same game (i.e. (NES, GBC))
*level: The level at which the spell is learned.  For spells which are learned by a different method than leveling, this parameter should be N/A, and a note should be made in the description outside the table.
===Note===
A note can be added to the table if additional details are necessary.
<pre>{{CharacterSpellList|note|text=This is a note}}</pre>
*note: A required parameter marking the note.
*text: The text to be displayed as a note.
===Footer===
===Footer===
The footer call marks the end of the spell table.
The footer call marks the end of the spell table.
Line 18: Line 25:
==Example==
==Example==
===Sample===
===Sample===
{{CharacterSpellList|header}}
{{CharacterSpellList|header|title=Dragon Quest II|subtitle=GBC}}
{{CharacterSpellList|entry|spell=[[Heal]]|level=10}}
{{CharacterSpellList|entry|spell=[[Heal]]|level=10}}
{{CharacterSpellList|entry|spell=[[Hocus Pocus]]|level=45}}
{{CharacterSpellList|entry|spell=[[Hocus Pocus]]|level=45}}
{{CharacterSpellList|entry|spell=[[Whack]]|level=12}}
{{CharacterSpellList|entry|spell=[[Whack]]|level=15}}
{{CharacterSpellList|entry|spell=[[Zoom]]|level=N/A}}
{{CharacterSpellList|note|text=The Zoom spelled is learned by a special event in the town of [[Zoomingale]].}}
{{CharacterSpellList|footer}}
{{CharacterSpellList|footer}}
===Code===
===Code===
<pre>
<pre>
{{CharacterSpellList|header}}
{{CharacterSpellList|header|title=Dragon Quest II|subtitle=GBC}}
{{CharacterSpellList|entry|spell=[[Heal]]|level=10}}
{{CharacterSpellList|entry|spell=[[Heal]]|level=10}}
{{CharacterSpellList|entry|spell=[[Hocus Pocus]]|level=45}}
{{CharacterSpellList|entry|spell=[[Hocus Pocus]]|level=45}}
{{CharacterSpellList|entry|spell=[[Whack]]|level=12}}
{{CharacterSpellList|entry|spell=[[Whack]]|level=15}}
{{CharacterSpellList|entry|spell=[[Zoom]]|level=N/A}}
{{CharacterSpellList|note|text=The Zoom spelled is learned by a special event in the town of [[Zoomingale]].}}
{{CharacterSpellList|footer}}
{{CharacterSpellList|footer}}
</pre>
</pre>

Latest revision as of 01:41, 19 October 2010

The CharacterSpellList template is used to display a list of spells a character can learn. Each set of calls to this template represents the list of spells for a single character in a single version of a game.

Usage[edit]

Header[edit]

A header call to this template should be the first usage of this template on any page.

{{CharacterSpellList|header|title=Dragon Quest II|subtitle=NES}}
  • header: A required parameter which marks this as the start of a spell list table.
  • title: A required parameter specifying the title of the table. Typically the name of the game.
  • subtitle: An optional parameter specifying a subtitle for the table. Typically the console version of a game when there is more than one.

Entry[edit]

Each entry call designates a single spell.

{{CharacterSpellList|entry|spell=Heal|level=10}}
  • entry: A required parameter marking an entry.
  • spell: The name of the spell. Should be an interwiki link.
  • level: The level at which the spell is learned. For spells which are learned by a different method than leveling, this parameter should be N/A, and a note should be made in the description outside the table.

Note[edit]

A note can be added to the table if additional details are necessary.

{{CharacterSpellList|note|text=This is a note}}
  • note: A required parameter marking the note.
  • text: The text to be displayed as a note.

Footer[edit]

The footer call marks the end of the spell table.

{{CharacterSpellList|footer}}
  • footer: A required parameter marking the template as the footer.

Example[edit]

Sample[edit]

Dragon Quest II (GBC) 
Spell Level Learned
Heal 10
Hocus Pocus 45
Whack 12
Whack 15
Zoom N/A
The Zoom spelled is learned by a special event in the town of Zoomingale.

Code[edit]

{{CharacterSpellList|header|title=Dragon Quest II|subtitle=GBC}}
{{CharacterSpellList|entry|spell=[[Heal]]|level=10}}
{{CharacterSpellList|entry|spell=[[Hocus Pocus]]|level=45}}
{{CharacterSpellList|entry|spell=[[Whack]]|level=12}}
{{CharacterSpellList|entry|spell=[[Whack]]|level=15}}
{{CharacterSpellList|entry|spell=[[Zoom]]|level=N/A}}
{{CharacterSpellList|note|text=The Zoom spelled is learned by a special event in the town of [[Zoomingale]].}}
{{CharacterSpellList|footer}}