11,286
edits
FlyingRagnar (talk | contribs) mNo edit summary |
FlyingRagnar (talk | contribs) (updated to match updated layout) |
||
| Line 1: | Line 1: | ||
The LocationItem template is used to display items acquired at various locations in Dragon Quest games. It applies to items found in treasure chests, in various furniture, or from non-player characters. | The LocationItem template is used to display items acquired at various locations in Dragon Quest games. It applies to items found in treasure chests, in various furniture, or from non-player characters. Each set of LocationItem calls is made to represent a '''single game''' in cases where there is more than 1 game/version. | ||
==Usage== | ==Usage== | ||
| Line 5: | Line 5: | ||
===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>{{LocationItem|header}}</pre> | <pre>{{LocationItem|header|title=[[Dragon Quest III]]|subtitle=NES}}</pre> | ||
*header: A required parameter which marks this as the start of an items table. | *header: A required parameter which marks this as the start of an items table. | ||
*title: A required parameter specifying the title of the item table. This should be a link to the game name in cases where there is more than 1, otherwise it should simply be "Items". | |||
*subtitle: An optional parameter to enhance the title. Used only in cases where title is the game name, subtitle will then be the console version (i.e NES). | |||
===Entries=== | ===Entries=== | ||
Each entry in the items table is represented by a single template call. | Each entry in the items table is represented by a single template call. | ||
<pre>{{LocationItems|entry|item=[[Boxer Shorts]]|location= | <pre>{{LocationItems|entry|item=[[Boxer Shorts]]|location=In a drawer in the inn}}</pre> | ||
*entry: A required parameter which marks this as a single item table entry. | *entry: A required parameter which marks this as a single item table entry. | ||
*item: The item name. Should be a link to an interwiki article. | *item: The item name. Should be a link to an interwiki article. | ||
*location: Location of the item. Should be descriptive enough that it is easy to locate. | *location: Location of the item. Should be descriptive enough that it is easy to locate. | ||
===Footer=== | ===Footer=== | ||
The footer call marks the end of the item table. | The footer call marks the end of the item table. | ||
| Line 21: | Line 21: | ||
==Example== | ==Example== | ||
===Sample=== | ===Sample=== | ||
{{LocationItem|header}} | {{LocationItem|header|title=[[Dragon Warrior III]]|subtitle=NES}} | ||
{{LocationItem|entry|item=[[Antidote Herb]]|location=Barrel in southwest house | {{LocationItem|entry|item=[[Antidote Herb]]|location=Barrel in southwest house}} | ||
{{LocationItem|entry|item=[[Leather Shield]]|location=Behind [[Final Key]] door | {{LocationItem|entry|item=[[Leather Shield]]|location=Behind [[Final Key]] door}} | ||
{{LocationItem|footer}} | {{LocationItem|footer}} | ||
===Code=== | ===Code=== | ||
<pre> | <pre> | ||
{{LocationItem|header}} | {{LocationItem|header|title=[[Dragon Warrior III]]|subtitle=NES}} | ||
{{LocationItem|entry|item=[[Antidote Herb]]|location=Barrel in southwest house | {{LocationItem|entry|item=[[Antidote Herb]]|location=Barrel in southwest house}} | ||
{{LocationItem|entry|item=[[Leather Shield]]|location= | {{LocationItem|entry|item=[[Leather Shield]]|location=Behind [[Final Key]] door}} | ||
{{LocationItem|footer | {{LocationItem|footer}} | ||
</pre> | </pre> | ||