Template:Item: Difference between revisions
Jump to navigation
Jump to search
imported>Deantwo (Just changed the headlines. I am done now I promise!) |
imported>Deantwo (→Override Image: Added a better description.) |
||
Line 93: | Line 93: | ||
==Override Image== | ==Override Image== | ||
If an image is bigger than 50px they will break, setting "OverrideImage=true" will disable the default image code so you can add your own.<br> | |||
The default image code is:<br> | |||
<nowiki>[[File:{{{image|{{{name|Unknown}}}.png}}}|px50|{{{name|Item}}}]]</nowiki> | |||
For better understanding see these two examples: | |||
'''Without setting "OverrideImage":''' | '''Without setting "OverrideImage":''' | ||
Line 104: | Line 106: | ||
<nowiki>|image = ParticleAccelerator.gif</nowiki> | <nowiki>|image = ParticleAccelerator.gif</nowiki> | ||
<nowiki>}}</nowiki> | <nowiki>}}</nowiki> | ||
{{Item | {{Item | ||
|bgcolor1 = #cce6ff | |bgcolor1 = #cce6ff | ||
Line 119: | Line 120: | ||
<nowiki>|bgcolor2 = #99ccff</nowiki> | <nowiki>|bgcolor2 = #99ccff</nowiki> | ||
<nowiki>|name = Particle Accelerator</nowiki> | <nowiki>|name = Particle Accelerator</nowiki> | ||
<nowiki>|image = [[File:ParticleAccelerator.gif]]</nowiki> | <nowiki>|image = [[File:ParticleAccelerator.gif|Particle Accelerator]]</nowiki> | ||
<nowiki>|OverrideImage = true</nowiki> | <nowiki>|OverrideImage = true</nowiki> | ||
<nowiki>}}</nowiki> | <nowiki>}}</nowiki> | ||
{{Item | {{Item | ||
|bgcolor1 = #cce6ff | |bgcolor1 = #cce6ff | ||
|bgcolor2 = #99ccff | |bgcolor2 = #99ccff | ||
|name = Particle Accelerator | |name = Particle Accelerator | ||
|image = [[File:ParticleAccelerator.gif]] | |image = [[File:ParticleAccelerator.gif|Particle Accelerator]] | ||
|OverrideImage = true | |OverrideImage = true | ||
}} | }} | ||
</noinclude> | </noinclude> |
Revision as of 15:00, 14 April 2014
How to use
template intended for lists of objects to clean them up a bit.
With no parameters
{{Item}}
The item needs to have the name defined.
With minimum parameters
The bare minimum is the name parameter.
{{Item |name=Test Item |bgcolor1 = #FFEE88 |bgcolor2 = #FFDD66 |image = Redtoolbox.png }}
|
Normal item
If the description is set, this template will show.
{{Item |bgcolor1 = #FFEE88 |bgcolor2 = #FFDD66 |name = Emergency Toolbox |image = Redtoolbox.png |foundin = emergency lockers and storage areas |usedfor = Contains tools which are useful in emergencies |strategy = It is very heavy, useful for the beating up of people. Contains a flashlight which is very useful as well as a crowbar. |description = The toolbox contains a flashlight, a crowbar, a radio and a fire extinguisher. All of which are very useful not only when emergencies hit but also when trying to cause an emergency. Be quick in getting one as they tend to get looted quickly if you want until an emergency strikes. }}
Container items
If the contents variable is set, this template will thow:
{{Item |bgcolor1 = #FFEE88 |bgcolor2 = #FFDD66 |name = Emergency Toolbox |image = Redtoolbox.png |foundin = emergency lockers and storage areas |usedfor = Contains tools which are useful in emergencies |strategy = It is very heavy, useful for the beating up of people. Contains a flashlight which is very useful as well as a crowbar. |contents = [[File:Screwdriver tool.png|link=Screwdriver]] [[File:Wrench.png|link=Wrench]] [[File:Welder.png|link=Welding Tool]]<br> [[File:Crowbar.png|link=Crowbar]] <nowiki>[[File:Analyzer.png|link=Analyzer]] [[File:Wirecutters.png|link=Wirecutters]] |description = The toolbox contains a flashlight, a crowbar, a radio and a fire extinguisher. All of which are very useful not only when emergencies hit but also when <nowiki>trying to cause an emergency. Be quick in getting one as they tend to get looted quickly if you want until an emergency strikes. }}
|
Override Image
If an image is bigger than 50px they will break, setting "OverrideImage=true" will disable the default image code so you can add your own.
The default image code is:
[[File:{{{image|{{{name|Unknown}}}.png}}}|px50|{{{name|Item}}}]]
For better understanding see these two examples:
Without setting "OverrideImage":
{{Item |bgcolor1 = #cce6ff |bgcolor2 = #99ccff |name = Particle Accelerator |image = ParticleAccelerator.gif }}
|
With setting "OverrideImage":
{{Item |bgcolor1 = #cce6ff |bgcolor2 = #99ccff |name = Particle Accelerator |image = [[File:ParticleAccelerator.gif|Particle Accelerator]] |OverrideImage = true }}
|