Editing Template:ItemBox

Warning: You are not logged in. Once you make an edit, a temporary account will be created for you. Learn more. Log in or create an account to continue receiving notifications after this account expires, and to access other features.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
<templatestyles src="Template:ItemBox/styles.css" /><includeonly>
<onlyinclude>
<div style="display:inline-block; margin-left: 5px">
{|- style="text-align:center; border-collapse:collapse; border-radius: 7px; width:100px; max-width:200px; height:2px; font-size: 12px;{{
#switch: {{{item_type}}}|
| Weapon = background-color: #C97A03;
| Vitality = background-color: #659818;
| Spirit = background-color: #8B56B4;
| background-color: #C97A03;}}"
! {{souls|{{{item_price}}}}}
|- style="text-align:center; width:100px; max-width:200px; height:60px; {{
#switch: {{{item_type}}}
| Weapon = background-color: #FCAC4D; color: #3A2B08;
| Vitality = background-color: #86C921; color: #233A00;
| Spirit = background-color: #DE9CFF; color: #3C254E;
| background-color: #FCAC4D; color: #3A2B08;}}"
| <span style="filter: brightness(0) saturate(100%); transition: 0.1s transform ease-in-out; "{{
#switch: {{{item_type}}}
| Weapon = color: #3A2B08;
| Vitality = color: #233A00;
| Spirit = color: #3C254E;
| color: #3A2B08;}}">[[File:{{{item_name}}}.png|50px|link={{{item_name}}}]]</span>
{{#ifeq:{{{active|}}}|true
|<tr style="text-align:center; width:100px; max-width:200px; height:6px; font-size:12px;><th><span style="color:#FFF0D7"> Active </span></th></tr>}}
|-
{{#if:{{{componentOf|}}}
|<tr style="text-align:center; width:100px; max-width:200px; height:6px; font-size:12px;><th>[[{{{componentOf}}}|<span style="color:#FFF0D7"> Component </span>]]</th></tr>}}
|- style="text-align: center; height:30px; font-size: 14px; {{
#switch: {{{item_type}}}
| Weapon = background-color: #FFF0D7; color: #151912;
| Vitality = background-color: #FFFFE7; color: #1C1E18;
| Spirit = background-color: #FFEFD7; color: #131610;
| background-color: #FFF0D7; color: #151912;}}"
! {{#if:{{{display_name|}}}|[[{{{item_name}}}|{{{display_name}}}]]|[[{{{item_name}}}]]}}
|}</div></onlyinclude>


{{#vardefine:itemName|{{{itemName|{{{1}}}}}}}}<!--


    Display name: Lang string for the codename, else the raw name, then override.
A port of the initial box in [[Template:Infobox item]] with links, for use on pages that could use it without the whole infobox.
-->{{#vardefine:displayName|{{#invoke:Lang|get_string|{{#invoke:ItemData|get_codename|{{#var:itemName}}}}}}}}<!--
-->{{#vardefine:displayName|{{#if:{{#var:displayName}}|{{#var:displayName}}|{{#var:itemName}}}}}}<!--
-->{{#vardefine:displayName|{{{overrideDisplayName|{{#var:displayName}}}}}}}<!--


    Measured name size (cqw) and stable per-item texture variety.
{{ItemBox|item_name = Bullet Lifesteal (item)|item_type = Vitality|item_price = 1250|display_name = Bullet Lifesteal}} {{ItemBox|item_name = Alchemical Fire|active = true|item_type = Weapon|item_imagefilepath = Basic Magazine|item_price = 500}} {{ItemBox|item_name = Duration Extender|componentOf = Superior Duration|item_type = Spirit|item_price = 1250}}
-->{{#vardefine:fontSize|{{#invoke:ItemBox|getFontSize|{{#var:displayName}}}}}}<!--
<noinclude>
-->{{#vardefine:variants|{{#invoke:ItemBox|variants|{{#var:itemName}}}}}}<!--
<templatedata>
 
{
    Modifier classes: slot (Weapon/Armor/Tech from data, or Weapon/Vitality/Spirit override -> weapon/vitality/spirit), tier, tags.
"params": {
-->{{#vardefine:slot|{{#switch:{{{overrideSlot|{{#invoke:ItemData|get_prop|{{#var:itemName}}|Slot}}}}}|Weapon=itembox-weapon|Armor|Vitality=itembox-vitality|Tech|Spirit=itembox-spirit}}}}<!--
"item_type": {
-->{{#vardefine:tier|itembox-tier-{{{overrideTier|{{#invoke:ItemData|get_prop|{{#var:itemName}}|Tier}}}}}}}<!--
"description": "What category of Item is this?",
-->{{#vardefine:showTierTag|{{#ifeq:{{{showTierTag|}}}|true|itembox-show-tier}}}}<!--
"example": "Spirit",
-->{{#vardefine:isActive|{{{overrideIsActive|{{#invoke:ItemData|is_active|{{#var:itemName}}}}}}}}}<!--
"type": "string",
-->{{#vardefine:isActive|{{#ifeq:{{#var:isActive}}|true|itembox-active}}}}<!--
"suggestedvalues": [
-->{{#vardefine:isImbue|{{{overrideIsImbue|{{#invoke:ItemData|get_prop|{{#var:itemName}}|IsImbue}}}}}}}<!--
"Weapon",
-->{{#vardefine:isImbue|{{#ifeq:{{#var:isImbue}}|true|itembox-imbue}}}}<!--
"Vitality",
 
"Spirit"
    lowGraphics=true is for callers that place dozens of cards on one page (the
],
    card navboxes). It swaps the paper texture from the normal-mode multiply,
"required": true
    which blends two images and so is re-rasterised every scrolled frame, to a
},
    transparent-paper overlay that is a single cacheable image. On the profiled
"item_price": {
    navbox this took the render thread's OpenGL work from ~230 ms/s to ~10 and
"description": "How much does this item cost in souls?",
    roughly doubled the frame rate. The wear and icon masks are clips of a
"example": "500",
    single image, not blends, so they cache once rasterised and stay at full
"type": "number",
    detail. The overlay itself is defined in [[Template:ItemBox/styles.css]] and
"required": true
    keyed off the same per-item texture-vN class, so a card keeps its paper
},
    across both modes.
"item_name": {
-->{{#vardefine:lowGraphics|{{#ifeq:{{{lowGraphics|}}}|true|itembox-lowgfx}}}}<!--
"description": "Name of the item",
 
"example": "Basic Magazine",
    Links.
"type": "string",
-->{{#vardefine:linkTooltip|{{{overrideLinkTooltip|{{#var:itemName}}}}}}}<!--
"required": true
-->{{#vardefine:linkImage|{{{overrideLinkImage|{{#var:itemName}}}}}}}<!--
},
-->{{#vardefine:linkClick|{{{overrideLinkClick|{{#var:itemName}}{{If lang}}}}}}}<!--
"display_name": {
 
"description": "The display name of the item (for special cases such as Bullet Lifesteal (item) or Spirit Lifesteal (item))",
--><div class="itembox {{#var:showTierTag}} {{#var:tier}} {{#var:slot}} {{#var:isActive}} {{#var:isImbue}} {{#var:variants}} {{#var:lowGraphics}}" style="font-size:{{#expr: 10 * {{#if:{{{size|}}}|{{{size}}}|1}} }}px;">
"example": "Bullet Lifesteal",
<div class="itembox-background">
"type": "string"
<div class="itembox-card">
},
<div class="itembox-icon-area">
"active": {
<div class="itembox-icon">[[File:{{#var:linkImage}}.png|160px|link=]]</div>
"description": "Whether or not this is an active item",
<div class="itembox-tier-badge">
"example": "true",
<div class="itembox-tier-badge-shadow"></div>
"type": "boolean",
<div class="itembox-tier-badge-fill"></div>
"default": "false"
<div class="itembox-tier-badge-number"></div>
},
</div>
"componentOf": {
<div class="itembox-imbue-tag">{{#invoke:Lang|get_string|item_info_imbue}}</div>
"description": "The name of the item this is a component of, for linking",
</div>
"example": "Headhunter",
<!-- container-type is inline because TemplateStyles strips it; the name's cqw size measures against this box. -->
"type": "string"
<div class="itembox-name-area" style="container-type: inline-size;">
}
<p class="itembox-name" style="font-size:{{#var:fontSize}};text-wrap:balance;">{{#var:displayName}}</p>
},
</div>
"paramOrder": [
<div class="itembox-wear"></div>
"item_name",
<div class="itembox-texture"></div>
"item_type",
<div class="itembox-bevel"></div>
"item_price",
<div class="itembox-active-tag">{{#invoke:Lang|get_string|item_info_active}}</div>
"display_name",
<div class="itembox-outline"></div>
"active",
</div>
"componentOf"
</div>
]
<div class="item-link-wrapper" data-item-name="{{#var:linkTooltip}}">[[{{#var:linkClick}}|<span></span>]]</div>
}
</div></includeonly><noinclude>{{Documentation}}</noinclude>
</templatedata>
</noinclude>
Please note that all contributions to The Deadlock Wiki are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see Deadlock:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)
Preview page with this template