Template:ItemBox: Difference between revisions

Fixed inconsistent widths on mobile
Tags: Mobile edit Mobile web edit
cleanup. comment: this is a great template
Line 35: Line 35:
  | background-color: #FFF0D7; color: #151912;}}"
  | background-color: #FFF0D7; color: #151912;}}"
! {{#if:{{{link|}}}|[[{{{link}}}|{{{item_name}}}]]|[[{{{item_name}}}]]}}
! {{#if:{{{link|}}}|[[{{{link}}}|{{{item_name}}}]]|[[{{{item_name}}}]]}}
|}</div></onlyinclude>
|}</div></onlyinclude><noinclude>{{Documentation}}</noinclude>
 
 
A port of the initial box in [[Template:Infobox item]] with links, for use on pages that could use it without the whole infobox.
 
All data for each item is populated using data from [[Data:ItemData.json]]
 
{{ItemBox|item_name = Soul Shredder Bullets|link=Basic Magazine}}
{{ItemBox|item_name = Titanic Magazine}}
{{ItemBox|item_name = Shadow Weave}}
{{ItemBox|item_name = Debuff Remover}}
{{ItemBox|item_name = Duration Extender}}
{{ItemBox|item_name = Improved Spirit}}
 
<noinclude>
<templatedata>
{
"params": {
        "item_name": {
"description": "Name of the item",
"example": "Basic Magazine",
"type": "string",
"required": true
},
        "link": {
"description": "The name of the item's link in cases where item_name is incorrect",
"example": "Bullet Lifesteal (item)",
"type": "string"
},
"item_type": {
"description": "Overrides default item type. See Module:ItemData",
"example": "Spirit",
"type": "string",
"suggestedvalues": [
"Weapon",
"Vitality",
"Spirit"
]
},
"item_price": {
"description": "Overrides default item price. See Module:ItemData",
"example": "500",
"type": "number"
}
},
"paramOrder": [
"item_name",
        "link",
"item_type",
"item_price"
]
}
</templatedata>
</noinclude>