From Brotato Wiki
(add Template:Boss_Data) |
(Add toggles) |
||
Line 251: | Line 251: | ||
|{{MiscIcon|name=Tree}} | |{{MiscIcon|name=Tree}} | ||
|Using one of the 3 icon templates in the rows above is preferable, as it makes maintenance a bit easier. | |Using one of the 3 icon templates in the rows above is preferable, as it makes maintenance a bit easier. | ||
|} | |||
=== Toggles === | |||
Can be used to show/hide sections by clicking a button. | |||
{| class="wikitable" | |||
!Template | |||
!Description | |||
!Code | |||
|- | |||
|[[Template:ToggleStart|ToggleStart]] | |||
|Starts a toggleable section. The template page has docs for all the other toggle templates. | |||
|<code><nowiki>{{ToggleStart}}</nowiki></code> | |||
|- | |||
|[[Template:ToggleEnd|ToggleEnd]] | |||
|Ends a toggleable section. Required, otherwise the page will break! | |||
|<code><nowiki>{{ToggleEnd}}</nowiki></code> | |||
|- | |||
|[[Template:ToggleSection|ToggleSection]] | |||
|Lets you make multiple toggleable sections that open/collapse from a single button. | |||
|<code><nowiki>{{ToggleSection}}</nowiki></code> | |||
|- | |||
|[[Template:ToggleButton|ToggleButton]] | |||
|Use with [[Template:ToggleSection|ToggleSection]] to make a toggle button separate from its target section(s). | |||
|<code><nowiki>{{ToggleButton}}</nowiki></code> | |||
|} | |} | ||
Revision as of 13:55, 11 December 2022
This page serves as a reminder/introduction to some of the templates available to wiki contributors.
Templates
Quick reference list of useful templates. See also: Special:UncategorizedTemplates. For cleanup, see Special:UnusedTemplates.
Data
Contains all data of the specified type. Used by tables, infoboxes, Template:Iconbox, and more.
Template | Description |
---|---|
Template:Character_Data | All data for Characters |
Template:Item_Data | All data for Items |
Template:Weapon_Data | All data for Weapons |
Template:Elite_Data | All data for Elite Enemies |
Template:Boss_Data | All data for Bosses |
Template:WeaponClass | Contains and shows stats for every Weapon Class |
General
Frequently used miscellaneous templates.
Template | Description | Example | Preview |
---|---|---|---|
Template:Iconbox | Shows items/weapons in a box, with lots of options. Widely used. | ||
Template:MiniIconbox | Mini version of Iconbox, meant for use within content. | {{MiniIconbox|Acid}}
|
Acid |
Template:Color | Colours text, eg. green. | {{Color|red|-10%}}
|
-10% |
Template:StatIcon | Stat icons, eg. (Damage) | {{StatIcon|Max HP}}
|
|
Template:NavBoxCharacters | Navigation box, shown at the bottom of every Character page. |
Mods
Specifically made for mod pages, to showcase characters/items/weapons.
Template | Description | |
---|---|---|
Template:MiniModIconbox | Mini icon box with a custom image and no link, intended for mod pages. | |
Template:StatsCard | Full item/weapon stats box, to showcase modded content. Matches the in-game design | |
Template:StatsCardWeapon | Wrapper for StatsCard, with pre-filled weapon stats to save you some time. | |
Template:StatsCardWeaponTabs | Tabbed version of StatsCardWeapon, to show stats for every tier. | |
Template:Version | Wraps around the mod's game version. Shows green if the version is current, red if it's behind. | 0.6.0.7 / 0.5.3c |
Infobox
Adds a large section with lots of data. Shown on the right of the page. Some have helpers (see next section).
Template | Description |
---|---|
Template:Infobox_Character | Infobox for a single Character. Has a helper, listed below |
Template:Infobox_Character_Helper | Adds Template:Infobox_Character with pre-filled data, using the current page name. |
Template:Infobox_Item | Infobox for a single Item |
Template:Infobox_Weapon | Infobox for a single Weapon |
Template:Infobox_Elite | Infobox for a single Elite Enemy |
Text
Inserts pre-defined text that commonly appears on various page types.
Template | Usage | Page Type | Description |
---|---|---|---|
Template:Character | {{Character}}
|
Character | Character page text. Intro for all characters |
Template:CharacterUnlockedBy | {{CharacterUnlockedBy}}
|
Character | Character page text. Shows how to unlock the character |
Template:CharacterUnlocks | {{CharacterUnlocks}}
|
Character | Character page text. Shows what item the character unlocks |
Template:Item | {{Item}}
|
Item | Intro text |
Template:Unique | {{Unique}}
|
Item | States that the item is unique |
Template:Weapon | {{Weapon}}
|
Weapon | Intro text |
Template:Melee | {{Melee}}
|
Weapon | Weapon type text (Melee) |
Template:Ranged | {{Ranged}}
|
Weapon | Weapon type text (Ranged) |
Template:WeaponPageClassText | {{WeaponPageClassText}}
|
Weapon | Weapon class text |
Template:WeaponClassIntroText | {{WeaponClassIntroText}}
|
Weapon Class | Intro for single weapon class page |
Template:ItemTagText | {{ItemTagText|Exploration}}
|
Many | Full sentence stating the characters attributed to the specified item tag |
Template:DefaultModInstall | {{DefaultModInstall}}
|
Mod | Mod install instructions link |
Template:ModDisclaimerText | {{ModDisclaimerText}}
|
Mod | Mod disclaimer mentioning link safety |
Text Lists
Lists data.
Template | Description |
---|---|
Template:WeaponClassWeapons | Lists the Weapons that belong to a specific Weapon Class. |
Template:ItemTagCharacters | Lists the Characters that belong to a specific Item Tag. |
Tables
Makes it easier to add tables and rows for specific data sets. The page for Template:TableHeaders shows examples for every template.
Template | Description |
---|---|
Template:TableHeaders | Table row headers for all rows listed below |
Template:TableRowCharacter | Lists Characters |
Template:TableRowItem | Lists Items |
Template:TableRowWeapon | Lists Weapons |
Template:TableRowWeaponClass | Lists Weapon Classes |
Linked Icons
Add an pre-sized icon with a link to the specified item/weapon/character (eg. see Shop > Modifiers).
Most of these were widely used in common templates, prior to Template:Iconbox being updated with options that made them redundant for such use.
Template | Example | Preview | Notes |
---|---|---|---|
Template:CharacterIcon | {{CharacterIcon|Well Rounded}}
|
Well Rounded | |
Template:ItemIcon | {{ItemIcon|Acid}}
|
Acid | |
Template:WeaponIcon | {{WeaponIcon|Cacti Club}}
|
Cacti Club | |
Template:MiscIcon | {{MiscIcon|Tree}}
|
Tree | Using one of the 3 icon templates in the rows above is preferable, as it makes maintenance a bit easier. |
Toggles
Can be used to show/hide sections by clicking a button.
Template | Description | Code |
---|---|---|
ToggleStart | Starts a toggleable section. The template page has docs for all the other toggle templates. | {{ToggleStart}}
|
ToggleEnd | Ends a toggleable section. Required, otherwise the page will break! | {{ToggleEnd}}
|
ToggleSection | Lets you make multiple toggleable sections that open/collapse from a single button. | {{ToggleSection}}
|
ToggleButton | Use with ToggleSection to make a toggle button separate from its target section(s). | {{ToggleButton}}
|
Functions
Helper functions, used to get data with minimal template logic.
Template | Description |
---|---|
Template:GetType | Gets the type for the provided thing (item, weapon, character) |
Template:GetRarity | Gets the rarity for the provided item/weapon |
Template:GetVersion | Gets the current game version. Used by Template:Version |
Deprecated
Templates that have been replaced with new/renamed versions.
Deprecated Template | New Template | Reason |
---|---|---|
Template:WeaponSet | Template:WeaponClass | Renamed "weapon set" to "weapon class" after data mining showed "class" to be the official name |
Template:WeaponSetWeapons | Template:WeaponClassWeapons | |
Template:TableRowSet | Template:TableRowWeaponClass |