Lucky's Tale Wiki

Welcome to the Lucky's Tale Wiki!
  • This wiki is currently lacking content, and we'd want you to help out by contributing and/or adding pages related to the Lucky's Tale franchise.
  • The Lucky's Tale Wiki is purely a community-driven wiki fan site; managed and ran completely by fans. It isn't affiliated by Playful and/or any third-party company whatsoever to provide official or accurate information about its characters, games, etc. For more information, see Lucky's Tale Wiki:Disclaimer.

READ MORE

Lucky's Tale Wiki
Lucky's Tale Wiki
Advertisement
Infobox
Notices
Manual of Style
This page is permanently protected.

Infoboxes hold important points of a topic of a specific character, a world, etc. And they're common on 95% of articles. Some infoboxes such as {{Reviews}} hold information about reviews and ratings about the game, and the character and group infoboxes contains a complex set of parameters and layout, and formatting changes as it is subject to vandalism and only admins are allowed to make changes to it.

Adding an infobox

To add an infobox on Visual Editor, simply click on "Insert", then "Infobox", there are three infoboxes for characters, worlds, soundtracks, games, and more. The most common ones are characters.

Alternatively on Source Editor, copy the source code on its template documentation and start filling in the correct parameters.

Adding multiple images

You can add multiple images on an infobox by using the <gallery> tag. Although it can be possible on Visual Editor, it its recommended to add this when you're in Source Editor.

You can do this using this format:

<gallery>
Image.png|Title 1
Image2.png|Title 2
Image3.png|Title 3
Image4.png|Title 4
</gallery>

Formatting

Commonly used templates in an infobox are {{color}}, {{small}}, and {{infolist}} or {{plainlist}}. Templates can be placed inside of templates.

Small

{{small}} does exactly what it does, it shrinks text by 80% and it's used for additional context or data.

Infolist and Plainlist

{{flatlist}} is used to replace the usage of <br/> tag per line or empty gaps in each line. The template always starts as a bulleted list and will display as one line. Otherwise, it wouldn't work.

{{plainlist}} is similar to infolist, but its key difference is it has a wide range of customization and is specifically used on the colors parameter.

{{flatlist|
* Item 1
* Item 2
* Item 3
}}

will show...

  • Item 1
  • Item 2
  • Item 3


To put simply...

Do this. Don't do this.
{{infolist|
* Item 1
* Item 2
* Item 3
}}

Example:

{{Infobox character
|relatives = {{flatlist|
*[[Liam]] {{small|(father)}}
*[[Lyra]] {{small|(sister)}}
*[[Lucas]] {{small|(brother)}}
}}

}}

Item 1<br>
Item 2<br>
Item 3

... or this...

Item 1
*space*
Item 2
*space*
Item 3

Example:

{{Infobox character
|relatives = [[Liam]] {{small|(father)}}<br>
[[Lyra]] {{small|(sister)}}<br>
[[Lucas]] {{small|(brother)}}<br>
}}

}}

Color

{{Color}} is used and specifically in the colors parameter, requires to be placed under the {{plainlist}} template that doesn't require an indent. This can get confusing since it nests templates on top of other templates. Your key note is when nesting multiple templates, you'll notice a purple highlight getting darker. So don't forget to close them with a }} closing double brackets. See example.

Icons

Not to be confused with icons that appear on the top-right on the page. Icons that appear such as obtainable clovers, medals, coins, etc. These are the templates that can be used into infoboxes:

Complicated infobox parameters

Code Example
{{Infobox character}}
home
This uses an image from in-game locations, these include:
  • Sky Castle
  • Veggie Village
  • Holiday Canyon
  • Wrestful Retreat
  • Spookington
  • Hauntingham
  • Foxington
If it you type any of what's listed above, it'll show an error. If that's the case, use home_alt, it uses text instead an image.

{{Infobox character
|home = Foxington
}}

will show...

Hometown FoxingtonTitle Foxington

Or alternatively use parameter home_alt will show text instead of images..

|home_alt = Foxington

Hometown Foxington

However, it's not going to show an image if you provide any kind of input.

|home = foo

will show...

Hometown 74px
Advertisement