Template:A-slot
Revision as of 02:20, 19 December 2021 by Tobias Alcaraz (talk | contribs)
If you find a typo, inconsistency, or error, please sign up and help out the wiki! We can't do it without your help! :D Thank you!
Contents
About
This template (named A-slot as a shortcut for Animated [item] slot) serves as an easy method to add animated icon sprites that are inside of a in-game slot, with tooltip included with the items' names and/or with extra info. Can support to up to 15 items.
Note: If the icon is not going to be animated, use Template:I-slot instead.
Usage
The syntax of the template is:
{{I-slot | name1 = <file-name> | animated1 = <true/false> | amount1 = <number> | durability1 = <number> | link1 = <item-link> | size1 = <file-size> (width and height at the same time) | class1 = <file-class> | tooltip1 = <default-tooltip-text> | minetip-title1 = <mb-minetip-title> | minetip-text1 = <mb-minetip-text> }}
The single line version is:
{{I-slot|name= <file-name>|amount= <number>|durability= <number>|link= <item-link>|size= <file-size> (width and height at the same time)|class= <file-class>|tooltip= <default-tooltip-text>|minetip-title= <mb-minetip-title>|minetip-text= <mb-minetip-text>}}
Note that minetip-title
and minetip-text
are mandatory for the tooltip to work. In case you don't need minetip-text
, you can mention the parameter and leave it empty. minetip-title
defaults to the first parameter (file-name
)'s text if it's not used.
Parameter | Function | Value type | Default value | Status |
---|---|---|---|---|
name
|
It's the item's name. It's mainly used for the image name. No format is needed to specify. | String | Invisible-sprite
|
Recommended |
amount
|
Number of the same item. | Integer | None | Optional |
durability
|
Amount of durability of the item, expressed in percentages multiples of 10. | Integer | None | Optional |
link
|
Icon's link. | Wikitext | name 's value
|
Optional |
size
|
Icon's size (both width and height share the same value to keep the image fully squared). | Integer | 16
|
Optional |
class
|
Icon's extra classes. | String | None | Optional |
tooltip
|
Icon's default tooltip text. It's automatically removed if the Mine Blocks-themed tooltip isbeing used (see below). | String | name 's value
|
Optional |
minetip-title
|
Icon's Mine Block tooltip title. | String | name 's value
|
Optional |
minetip-text
|
Icon's Mine Block tooltip text. Use the forward slash (/ ) as line breaks.
|
String | None | Optional |
Examples
Values used | Code | Result |
---|---|---|
Name |
{{I-slot | name = Wooden Planks }} |
|
Name and amount |
{{I-slot | name = Wooden Planks | amount = 64 }} |
|
Name, amount, and durability |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 0 }} |
|
Name, amount, durability and link |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 10 | link = Cow }} |
|
Name, amount, durability, link, and size |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 20 | link = Cow | size = 24 }} |
|
Name, amount, durability, link, size, and icon class |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 30 | link = Cow | size = 24 | class = thumb-class }} |
|
Name, amount, durability, link, size, icon class, and default tooltip text |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 40 | link = Cow | size = 24 | class = thumb-class | tooltip = Default tooltip text. }} |
|
Name, amount, durability, link, size, icon class, default tooltip text, and empty mb tooltip title |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 50 | link = Cow | size = 24 | class = thumb-class | tooltip = Default tooltip text. | minetip-title = }} |
|
Name, amount, durability, link, size, icon class, default tooltip text, and mb tooltip title with custom text |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 60 | link = Cow | size = 24 | class = thumb-class | tooltip = Default tooltip text. | minetip-title = Lorem Ipsum }} |
|
Name, amount, durability, link, size, icon class, default tooltip text, and empty mb tooltip text |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 70 | link = Cow | size = 24 | class = thumb-class | tooltip = Default tooltip text. | minetip-text = }} |
|
Name, amount, durability, link, size, icon class, default tooltip text, and mb tooltip with custom text |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 80 | link = Cow | size = 24 | class = thumb-class | tooltip = Default tooltip text. | minetip-text = Dolor sit amet. }} |
|
Name, amount, durability, link, size, icon class, default tooltip text, mb tooltip title with custom text, and mb tooltip with custom text |
{{I-slot | name = Wooden Planks | amount = 64 | durability = 90 | link = Cow | size = 24 | class = thumb-class | tooltip = Default tooltip text. | minetip-title = Lorem Ipsum | minetip-text = Dolor sit amet. }} |
Notes
- If a custom value for the icons' size is going to be used, it should be any of these:
16
,18
,20
,22
, or24
.- Using any other value will make the icon to not be centered.
- Using a value higher than the ones mentioned above will make the icon overflow from its container box.
- The values supported by the
durability
parameter are:10
,20
,30
,40
,50
,60
,70
,80
,90
, and100
.- Any other value will make the durability bar empty.
- Despite the default tooltip being removed if the custom mb tooltip is being used, it's recommended to not remove it (using the parameter but leaving its value empty) since it will display as a fallback in case the user has disabled their JavaScript.