Module:TrophySprite/Aliases: Difference between revisions

From Official Gamemode 4 Wiki
Jump to navigation Jump to search
m (Can't forget this)
(set the name so it can get the right texture)
Line 1: Line 1:
local aliases = {
local aliases = {
['March 2020 Trophy'] = { },
['March 2020 Trophy'] = { },
['March 2020 Build Comp'] = { title = '&4Smokey Eye Shadow', text = '&7The newest eye shadow from Gamemode 4 Cosmetics./Given to Participants of the March Build Comp./Report if stolen. Do not place down.'},
['March 2020 Build Comp'] = { name = 'March 2020 Build Comp', title = '&4Smokey Eye Shadow', text = '&7The newest eye shadow from Gamemode 4 Cosmetics./Given to Participants of the March Build Comp./Report if stolen. Do not place down.'},
['April 2020 Trophy'] = { title = '&eGolden Egg Trophy', text = '&o&7Given to April supporters of the server/Texture by ToffeeMax'},
['April 2020 Trophy'] = { name = 'April 2020 Trophy', title = '&eGolden Egg Trophy', text = '&o&7Given to April supporters of the server/Texture by ToffeeMax'},
['May 2020 Trophy'] = { title = '&eEmerald Steve Trophy', text = '&o&7Given to May Supports of the server/Texture by ToffeeMax'},  
['May 2020 Trophy'] = { name = 'May 2020 Trophy', title = '&eEmerald Steve Trophy', text = '&o&7Given to May Supports of the server/Texture by ToffeeMax'},  
['June 2020 Trophy'] = { title = '&ePride Trophy', text = '&o&7Given to June supporters of the server/Texture by Sparks'},
['June 2020 Trophy'] = { name = 'June 2020 Trophy', title = '&ePride Trophy', text = '&o&7Given to June supporters of the server/Texture by Sparks'},
['July 2020 Trophy'] = { title = '&eMonet Trophy', text = '&o&7Given to July supporters of the server/Texture by ToffeeMax'},
['July 2020 Trophy'] = { name = 'July 2020 Trophy', title = '&eMonet Trophy', text = '&o&7Given to July supporters of the server/Texture by ToffeeMax'},
['December 2020 Trophy'] = { title = '&ePacked Iceman Trophy', text = '&o&7Given to December supports of the server/Texture by Sparks'},
['December 2020 Trophy'] = { name = 'December 2020 Trophy', title = '&ePacked Iceman Trophy', text = '&o&7Given to December supports of the server/Texture by Sparks'},
['January 2021 Trophy'] = { title = '&eFireworks Trophy', text = '&o&7Given to January 21 supporters of the server\Texture by Jackohhh'}
['January 2021 Trophy'] = { name = 'January 2021 Trophy', title = '&eFireworks Trophy', text = '&o&7Given to January 21 supporters of the server\Texture by Jackohhh'}
}
}


return aliases
return aliases

Revision as of 06:41, 11 February 2021

Documentation for this module may be created at Module:TrophySprite/Aliases/doc

local aliases = {
	['March 2020 Trophy'] = { },
	['March 2020 Build Comp'] = { name = 'March 2020 Build Comp', title = '&4Smokey Eye Shadow', text = '&7The newest eye shadow from Gamemode 4 Cosmetics./Given to Participants of the March Build Comp./Report if stolen. Do not place down.'},
	['April 2020 Trophy'] = { name = 'April 2020 Trophy', title = '&eGolden Egg Trophy', text = '&o&7Given to April supporters of the server/Texture by ToffeeMax'},
	['May 2020 Trophy'] = { name = 'May 2020 Trophy', title = '&eEmerald Steve Trophy', text = '&o&7Given to May Supports of the server/Texture by ToffeeMax'}, 
	['June 2020 Trophy'] = { name = 'June 2020 Trophy', title = '&ePride Trophy', text = '&o&7Given to June supporters of the server/Texture by Sparks'},
	['July 2020 Trophy'] = { name = 'July 2020 Trophy', title = '&eMonet Trophy', text = '&o&7Given to July supporters of the server/Texture by ToffeeMax'},
	['December 2020 Trophy'] = { name = 'December 2020 Trophy', title = '&ePacked Iceman Trophy', text = '&o&7Given to December supports of the server/Texture by Sparks'},
	['January 2021 Trophy'] = { name = 'January 2021 Trophy', title = '&eFireworks Trophy', text = '&o&7Given to January 21 supporters of the server\Texture by Jackohhh'}
}

return aliases