Module:ParallelAliases

From Parallel Wiki
Revision as of 07:28, 1 June 2022 by Diamondback88 (talk | contribs) (Created page with "local aliases = { 'Gear', ['Pocket Teleporter'] = { title = '&5Pocket Teleporter', text = '/&eRight-click &8to teleport between spawn/&7and your last location./&eShift + Right-click &7to reset your last location.' }, ['Totem of the Void'] = { title = '&5Totem of the Void', text = '&7Prevents you from dying in the void' }, ['Makeshift Wings'] = { title = '&#c8a249Makeshift Wings', text = '/This apparatus *should* grant/its wearer the ability to fly'...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This module is used for recreating ingame tooltips for Parallel items with custom textures. These are referenced in item templates using the prefix parallel:, as in parallel:itemname. To be rendered correctly on the wiki, an item needs display information specified on this page and an associated image uploaded, titled File:itemname.png.


local aliases = {

	'Gear',
	['Pocket Teleporter']     	= { title = '&5Pocket Teleporter', text = '/&eRight-click &8to teleport between spawn/&7and your last location./&eShift + Right-click &7to reset your last location.' },
	['Totem of the Void']     	= { title = '&5Totem of the Void', text = '&7Prevents you from dying in the void' },
	['Makeshift Wings']	        = { title = '&#c8a249Makeshift Wings', text = '/This apparatus *should* grant/its wearer the ability to fly' },
	['Broken Makeshift Wings']	= { title = '&#c8a249Makeshift Wings', text = '/This apparatus *should* grant/its wearer the ability to fly' },
	['Red Astronaut Helmet']	= { title = '&4&lRed Astronaut Hat', text = 'The vast void of space is harsh without this.//&7When on head:/&2+2 Armor Toughness/&2+2 Armor' },

	'Food',
	['Baguette']	    = { name = 'Baguette'},
	['Halloween Candy']	= { title = '&5Spooky Candy', text = '&6&oIts flavor is unique, and/&6&oalways changing. Quite spooky!' },

	'Misc',
	['Soul Shard']           	= { name = 'Soul Shard'},
	['Unstable Soul Shard']	    = { title = '&6Unstable Soul Shard'},
	['Tinted Potion Bottle']	= { title = '&7Tinted Potion Bottle', text = 'A gross bottle that you should/never drink under any circumstances' },
}


return aliases