Module:Inventory slot/Aliases: Difference between revisions
mNo edit summary |
added painting aliases |
||
| Line 451: | Line 451: | ||
end | end | ||
aliases[name] = { title = '&fDisc Fragment', name = name, text = '&7Music Disc - ' .. trackname } | aliases[name] = { title = '&fDisc Fragment', name = name, text = '&7Music Disc - ' .. trackname } | ||
end | |||
-- Paintings -- | |||
local paintings = { | |||
{ 'Kebab med tre pepperoni ', 'Kristoffer Zetterstrand', '1x1'}, | |||
{ 'de_aztec', 'Kristoffer Zetterstrand', '1x1'}, | |||
{ 'Albanian', 'Kristoffer Zetterstrand', '1x1'}, | |||
{ 'Target Successfully Bombed', 'Kristoffer Zetterstrand', '1x1'}, | |||
{ 'Paradisträd', 'Kristoffer Zetterstrand', '1x1'}, | |||
{ 'Wasteland', 'Kristoffer Zetterstrand', '1x1'}, | |||
{ 'Meditative', 'Sarah Boeving', '1x1'}, | |||
{ 'Wanderer', 'Kristoffer Zetterstrand', '1x2'}, | |||
{ 'Graham', 'Kristoffer Zetterstrand', '1x2'}, | |||
{ 'Prairie Ride', 'Sarah Boeving', '1x2'}, | |||
{ 'The Pool', 'Kristoffer Zetterstrand', '2x1'}, | |||
{ 'Bonjour Monsieur Courbet ', 'Kristoffer Zetterstrand', '2x1'}, | |||
{ 'sunset_dense', 'Kristoffer Zetterstrand', '2x1'}, | |||
{ 'Seaside', 'Kristoffer Zetterstrand', '2x1'}, | |||
{ 'Creebet', 'Kristoffer Zetterstrand', '2x1'}, | |||
{ 'Match', 'Kristoffer Zetterstrand', '2x2'}, | |||
{ 'Bust', 'Kristoffer Zetterstrand', '2x2'}, | |||
{ 'The Stage Is Set', 'Kristoffer Zetterstrand', '2x2'}, | |||
{ 'The void', 'Kristoffer Zetterstrand', '2x2'}, | |||
{ 'Skull and Roses', 'Kristoffer Zetterstrand', '2x2'}, | |||
{ 'Wither', 'Mojang', '2x2'}, | |||
{ 'Baroque', 'Sarah Boeving', '2x2'}, | |||
{ 'Humble', 'Sarah Boeving', '2x2'}, | |||
{ 'Bouquet', 'Kristoffer Zetterstrand', '3x3'}, | |||
{ 'Cavebird', 'Kristoffer Zetterstrand', '3x3'}, | |||
{ 'Cotán', 'Kristoffer Zetterstrand', '3x3'}, | |||
{ 'Endboss', 'Kristoffer Zetterstrand', '3x3'}, | |||
{ 'Fern', 'Kristoffer Zetterstrand', '3x3'}, | |||
{ 'Owlemons', 'Kristoffer Zetterstrand', '3x3'}, | |||
{ 'Sunflowers', 'Kristoffer Zetterstrand', '3x3'}, | |||
{ 'Tides', 'Kristoffer Zetterstrand', '3x3'}, | |||
{ 'Backyard', 'Kristoffer Zetterstrand', '3x4'}, | |||
{ 'Pond', 'Kristoffer Zetterstrand', '3x4'}, | |||
{ 'Fighters', 'Kristoffer Zetterstrand', '4x2'}, | |||
{ 'Changing', 'Kristoffer Zetterstrand', '4x2'}, | |||
{ 'Finding', 'Kristoffer Zetterstrand', '4x2'}, | |||
{ 'Lowmist', 'Kristoffer Zetterstrand', '4x2'}, | |||
{ 'Passage', 'Kristoffer Zetterstrand', '4x2'}, | |||
{ 'Mortal Coil', 'Kristoffer Zetterstrand', '4x3'}, | |||
{ 'Kong', 'Kristoffer Zetterstrand', '4x3'}, | |||
{ 'Pointer', 'Kristoffer Zetterstrand', '4x4'}, | |||
{ 'Pigscene', 'Kristoffer Zetterstrand', '4x4'}, | |||
{ 'Skull On Fire', 'Kristoffer Zetterstrand', '4x4'}, | |||
{ 'Unpacked', 'Sarah Boeving', '4x4'}, | |||
{ 'Orb', 'Kristoffer Zetterstrand', '4x4'}, | |||
{ 'Earth', 'Mojang', '2x2'}, | |||
{ 'Wind', 'Mojang', '2x2'}, | |||
{ 'Fire', 'Mojang', '2x2'}, | |||
{ 'Water', 'Mojang', '2x2'} | |||
} | |||
for _, painting in ipairs( paintings ) do | |||
local name = 'Painting ' .. painting[1] | |||
local artist = painting[2] | |||
local artwork = painting[1] | |||
local size = painting[3] | |||
aliases[name] = { title = 'Painting', name = name, text = '&e' .. artwork .. '/&7' .. artist .. '/' .. '&f' .. size } | |||
end | end | ||