Module:ParallelAliases: Difference between revisions

Add trophies
No edit summary
(Add trophies)
Line 311: Line 311:
aliases[name] = { title = '&l' .. color .. name, name = name, text = lore .. hatArmorText}
aliases[name] = { title = '&l' .. color .. name, name = name, text = lore .. hatArmorText}
end
end
--------------------------------
----------- TROPHIES -----------
--------------------------------
-- Trophies --
local trophies = {
{ 'Ender Dragon Trophy', '&d',  'Parallel Ender Dragon Fight',    'Awarded to the brave souls who ventured/into the End to defeat the Ender Dragon'},
{ 'Unstable Rift Trophy', '&5',  'Rift Event 8\/21\/20',    'Awarded to those who were present/to witness Jess crash the server/by harnessing the power of the rift'},
{ 'Gold Medal', '&6',    'Parallel Olympics 2020',  'Awarded to &r&ePlayer'},
{ 'Halloween Build Battle - First Place Trophy', '&6', 'Halloween Build Battle 2020',    'Awarded to &r&eBrotherKarl and FroootLooops &r&5&ofor their build:/"Nightmare Before Christmas on a Budget"'},
{ 'Halloween Build Battle - Second Place Trophy', '&6', 'Halloween Build Battle 2020',    'Awarded to &r&e_IronHugo_ &r&5&ofor their build:/"UCO (Unidentified Crashed Object From Sky)"'},
{ 'Roast Turkey Trophy', '&6', 'Thanksgiving 2020',  'The beginning of a great holiday season!'},
{ 'First Purge Trophy', '&c',  'January 15, 2021',  'All crime is legal until the server switches hosts.'},
{ 'Red\'s Space Station Event Trophy', '&c',  'August 15, 2021',  'Let\'s hope you\'re wearing a helmet...'},
{ 'End Dimension Reset Trophy', '&d',  'October 16, 2021',  'That darn dragon won\'t stay dead!'},
{ 'Turkey Friend Trophy', '&6',  'Thanksgiving 2021',  'This little guy will accompany you/on this special day!'},
{ 'Grinch Head', '&2',  'Christmas 2021',  '"And what happened, then? Well, in Whoville they say –/that the Grinch\'s small heart grew three sizes that day."'},
{ 'Parallel Worlds Event Trophy', '&#f5ecd4',  'January 29, 2022',  'So this is what happens when you let/a dragon crash through your rift...'},
{ 'Valentine\'s Day Candle', '&#ff69b4',  'Valentine\'s Day 2022',  'Will you put your Minecraft bed/next to mine?'},
{ 'Haunted House Trophy', '&5',  'Halloween 2022',  'Spooky...'},
{ 'Pumpkin Pie Trophy', '&6',  'Thanksgiving 2022',  '"Don\'t you know anything about Thanksgiving dinners?/Where\'s the mashed potatoes?Where\'s the cranberry sauce?Where\'s the pumpkin pie?"'},
{ 'Reindeer Trophy', '&2',  'Christmas 2022',  'You wouldn\'t mind my red nose?'},
{ '2023 Countdown Trophy', '&6',  'New Year\'s Eve 2022',  '3... 2... 1... HAPPY NEW YEAR!!!'},
{ 'Cornucopia Trophy', '&6',  'Thanksgiving 2023',  'From all of us at Parallel, we hope/you have a happy Thanksgiving!'},
{ 'Gingerbread House Trophy', '&#9f5529', 'Christmas 2023',  'If you can\'t catch me... I might be here!'},
{ 'Hatching Chick Trophy', '&b',  'Easter 2024',  'Happy Easter, everyone!'},
}
for _, hat in ipairs( trophies ) do
local name = trophy[1]
local color = trophy[2]
local date = trophy[3]
local lore = trophy[4]
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8' .. date .. '/&r&5&o' .. lore}
end
-- Anniversary Trophies --
local anniversaryTrophies = {
{ '1', '&b',  '2021', 'Thanks for being a part of our community!/Here\'s to the future!'},
{ '2', '&e',  '2022', 'Thanks for being with us for two years!'},
{ '3', '&b',  '2023', 'Three whole years?!?'},
{ '4', '&9',  '2024', 'We\'re still here FOUR years later?!?!?'},
}
for _, hat in ipairs( anniversaryTrophies ) do
local name = 'Parallel ' .. trophy[1] .. '-Year Anniversary Trophy'
local color = trophy[2]
local year = trophy[3]
local lore = trophy[4]
aliases[name] = { title = '&f&lParallel ' .. color .. trophy[1] .. '-Year Anniversary &fTrophy', name = name, text = '&8April 1, ' .. year .. '/&r&5&o' .. lore}
end
-- Firework Rocket Trophies --
local anniversaryTrophies = {
{ 'Festive', '&9',  '2020', 'Firework go boom!'},
{ 'Explosive', '&c',  '2021', 'Oooooo... pretty colors!'},
{ 'Thunderous', '&9',  '2022', 'Yowza, would\'ya look at that!'},
{ 'Flammable', '&c',  '2023', 'KABOOOOM!'},
{ 'Vivid', '&9',  '2024', 'I\'m going to record this and/never look at the footage again!'},
}
for _, hat in ipairs( anniversaryTrophies ) do
local name = trophy[1] .. ' Firework Rocket Trophy'
local color = trophy[2]
local year = trophy[3]
local lore = trophy[4]
aliases[name] = { title = '&l' .. color .. trophy[1] .. ' Firework Rocket Trophy', name = name, text = '&8Fourth of July ' .. year .. '/&r&5&o' .. lore}
end




return aliases
return aliases