Template:Equipment/doc: Difference between revisions
FlyingRagnar (talk | contribs) mNo edit summary |
m (Updated wikidoc) |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 12: | Line 12: | ||
===Entry=== | ===Entry=== | ||
An entry call is made to designate equipment data for a specific console. Note that pieces of equipment that have the exact same attributes across different consoles can be described in the same entry. | An entry call is made to designate equipment data for a specific console. Note that pieces of equipment that have the exact same attributes across different consoles can be described in the same entry. | ||
<pre>{{Equipment|stat|name=Attack| | <pre>{{Equipment|stat|name=Attack|modifier=+10}}</pre> | ||
*'''stat''': A required parameter marking a stat entry. | *'''stat''': A required parameter marking a stat entry. | ||
*'''name''': The name of the stat being modified by the equipment | *'''name''': The name of the stat being modified by the equipment | ||
*'''modifier''': The value (+/-) the stat is being modified. Should include a + or - in front of the value. | *'''modifier''': The value (+/-) the stat is being modified. Should include a + or - in front of the value. | ||
===Footer=== | ===Footer=== | ||
The footer call marks the end of the equipment table. | The footer call marks the end of the equipment table. | ||
<pre>{{Equipment|footer|sellPrice=300|flavor=This is some flavor.|notes=These are notes.}}</pre> | <pre>{{Equipment|footer|sellPrice=300|flavor=This is some flavor.|notes=These are notes.}}</pre> | ||
*'''footer''': A required parameter marking the template as the footer. | *'''footer''': A required parameter marking the template as the footer. | ||
*'''buyPrice''': The price of the equipment when bought from a shop. | *'''class''': The class of the piece of equipment. | ||
*'''sellPrice''': The price of the equipment when sold to a shop | *'''equipableBy''': List of characters who can equip the weapon. | ||
*'''buyPrice''': The price of the equipment when bought from a shop. | |||
*'''sellPrice''': The price of the equipment when sold to a shop. | |||
*'''flavor''': If there is specific flavor text used to describe this equipment in the game, it should be quoted here. This paramter is optional. | *'''flavor''': If there is specific flavor text used to describe this equipment in the game, it should be quoted here. This paramter is optional. | ||
*'''notes''': Any special notes about this particular piece of equipment (cursed, in-battle effects, etc.) This parameter is optional. | *'''notes''': Any special notes about this particular piece of equipment (cursed, in-battle effects, etc.) This parameter is optional. | ||
==Example== | ==Example== | ||
===Sample=== | ===Sample=== | ||
Line 29: | Line 33: | ||
{{Equipment|stat|name=Attack|modifier=+8}} | {{Equipment|stat|name=Attack|modifier=+8}} | ||
{{Equipment|stat|name=Agility|modifier=-10}} | {{Equipment|stat|name=Agility|modifier=-10}} | ||
{{Equipment|footer|buyPrice= | {{Equipment|footer|buyPrice=60g|sellPrice=30g|flavor=A giant hammer with destructive power.|notes=Casts Slow when used in battle.|class=Hammer}} | ||
===Code=== | ===Code=== | ||
<pre> | <pre> | ||
Line 35: | Line 40: | ||
{{Equipment|stat|name=Attack|modifier=+8}} | {{Equipment|stat|name=Attack|modifier=+8}} | ||
{{Equipment|stat|name=Agility|modifier=-10}} | {{Equipment|stat|name=Agility|modifier=-10}} | ||
{{Equipment|footer|buyPrice= | {{Equipment|footer|buyPrice=60g|sellPrice=30g | ||
|flavor=A giant hammer with destructive power. | |flavor=A giant hammer with destructive power. | ||
|notes=Casts Slow when used in battle.}} | |notes=Casts Slow when used in battle.}} | ||
</pre> | </pre> |
Latest revision as of 10:52, 22 September 2016
The Equipment template is used to display information for various pieces of equipment in Dragon Quest games. This template covers all types of equipment (weapons, armor, shields, helmets, accessories). This template describes a single piece of equipment for a single game.
Usage[edit]
In almost all cases, using this template should be preceded by a heading of the game it comes from. This is because the template only covers a single item in a single game. Each game, therefore, should have its own instance of this template.
Header[edit]
A header call to this template should be the first usage of this template on any page.
{{Equipment|header|image=Broad_sword.png|name=Broad Sword|console=NES}}
- header: A required parameter which marks this as the start of a equipment table.
- console: An optional parameter for specifying the console version of the game the equipment appears in.
- name: The name of the equipment. This should be the localization name used in the game in which this piece of equipment appears.
- image: if there is an image of this piece of equipment, it should be included here. Note this is the filename only, not a link to the image.
Entry[edit]
An entry call is made to designate equipment data for a specific console. Note that pieces of equipment that have the exact same attributes across different consoles can be described in the same entry.
{{Equipment|stat|name=Attack|modifier=+10}}
- stat: A required parameter marking a stat entry.
- name: The name of the stat being modified by the equipment
- modifier: The value (+/-) the stat is being modified. Should include a + or - in front of the value.
[edit]
The footer call marks the end of the equipment table.
{{Equipment|footer|sellPrice=300|flavor=This is some flavor.|notes=These are notes.}}
- footer: A required parameter marking the template as the footer.
- class: The class of the piece of equipment.
- equipableBy: List of characters who can equip the weapon.
- buyPrice: The price of the equipment when bought from a shop.
- sellPrice: The price of the equipment when sold to a shop.
- flavor: If there is specific flavor text used to describe this equipment in the game, it should be quoted here. This paramter is optional.
- notes: Any special notes about this particular piece of equipment (cursed, in-battle effects, etc.) This parameter is optional.
Example[edit]
Sample[edit]
Giant Hammer (GBC) | |
---|---|
Attack | +8 |
Agility | -10 |
Equipable by | |
Buy Price | 60g |
Sell Price | 30g |
Flavor text | A giant hammer with destructive power. |
Notes | Casts Slow when used in battle. |
Code[edit]
{{Equipment|header|image=Lottery_icon.png|name=Giant Hammer|console=GBC}} {{Equipment|stat|name=Attack|modifier=+8}} {{Equipment|stat|name=Agility|modifier=-10}} {{Equipment|footer|buyPrice=60g|sellPrice=30g |flavor=A giant hammer with destructive power. |notes=Casts Slow when used in battle.}}