Difference between revisions of "Template:Attribute icon"

From Project: Gorgon Wiki
Jump to: navigation, search
m
Line 3: Line 3:
 
<!-- This section has been added automatically by a bot. Please contact [[User:Alleryn]] (check page history for link to user page with contact info) if you believe this section is in error. -->
 
<!-- This section has been added automatically by a bot. Please contact [[User:Alleryn]] (check page history for link to user page with contact info) if you believe this section is in error. -->
 
</noinclude>{{ #if: {{{1|}}} |  
 
</noinclude>{{ #if: {{{1|}}} |  
{{ #replace: http://cdn.projectgorgon.com/v356/icons/icon_{{ #switch: {{{1|None}}}
+
{{ #replace: http://cdn.projectgorgon.com/v370/icons/icon_{{ #switch: {{{1|None}}}
 
| ABILITY_AMMOSTICK_DELTA_KNIFE = 108
 
| ABILITY_AMMOSTICK_DELTA_KNIFE = 108
 
| ABILITY_CONSUMECHANCE_MOD_CARROTPOWER = 3697
 
| ABILITY_CONSUMECHANCE_MOD_CARROTPOWER = 3697

Revision as of 11:53, 17 October 2022

Item-icon-none.png

Description

This accepts an Attribute name as input and returns the in-game icon. Be aware that Attribute icons have various sizes, and you can use CSS to easily resize them. 99% of the time, you'll want 32x32. If you do NEED 64x64, remember that some icons are not inherently that big so you'll lose image quality. See the Examples section below.

Syntax

{{Attribute icon|<name>}}

Parameters

<name>
The name of the Attribute. It must match exactly what the Attributes json uses. NOT the Label.

Examples

Basic Use

{{Attribute icon|ABILITY_AMMOSTICK_DELTA_KNIFE}}

icon_108.png


Forcing 32x32 size

<span class="extimage32px">{{Attribute icon|ABILITY_AMMOSTICK_DELTA_KNIFE}}</span>

icon_108.png


Forcing 64x64 size

<span class="extimage64px">{{Attribute icon|ABILITY_AMMOSTICK_DELTA_KNIFE}}</span>

icon_108.png