Module:Setlist2/Songs: Difference between revisions
Jump to navigation
Jump to search
(Created page with "-- Module:Setlist/Songs return { ["Friend, Please"] = {"Twenty One Pilots"}, ["Trapdoor"] = {"Twenty One Pilots"}, ["Johnny Boy"] = {"Twenty One Pilots"}, ["Car Radio"] = {"Regional at Best", "Vessel"}, ["Fall Away"] = {"Twenty One Pilots"}, ["Ode to Sleep"] = {"Regional at Best", "Vessel"}, -- ...добавь остальные песни... }") |
No edit summary |
||
Line 1: | Line 1: | ||
local songs = { | |||
["Friend, Please"] = {"Twenty One Pilots"}, | ["Friend, Please"] = {"Twenty One Pilots"}, | ||
["Trapdoor"] = {"Twenty One Pilots"}, | ["Trapdoor"] = {"Twenty One Pilots"}, | ||
["Johnny Boy"] = {"Twenty One Pilots"}, | ["Johnny Boy"] = {"Twenty One Pilots"}, | ||
["March To The Sea"] = {"Twenty One Pilots"}, | |||
["Fall Away"] = {"Twenty One Pilots"}, | |||
["Car Radio"] = {"Regional at Best", "Vessel"}, | ["Car Radio"] = {"Regional at Best", "Vessel"}, | ||
["Ode to Sleep"] = {"Regional at Best", "Vessel"}, | ["Ode to Sleep"] = {"Regional at Best", "Vessel"}, | ||
-- ... | ["Holding On to You"] = {"Regional at Best", "Vessel"}, | ||
-- ... и т.д. | |||
} | |||
-- Определяем цвета альбомов | |||
local albumColors = { | |||
["Twenty One Pilots"] = "#87B22A", | |||
["Regional at Best"] = "#e6ad2b", | |||
["Vessel"] = "#b0d8e3", | |||
["Blurryface"] = "#dc4747", | |||
["Trench"] = "#ffcc4d", | |||
["Scaled and Icy"] = "#b3e7fa", | |||
} | |||
-- Определяем ссылки для альбомов | |||
local albumLinks = { | |||
["Twenty One Pilots"] = "Twenty One Pilots (album)", | |||
["Regional at Best"] = "Regional at Best", | |||
["Vessel"] = "Vessel (album)", | |||
["Blurryface"] = "Blurryface (album)", | |||
["Trench"] = "Trench (album)", | |||
["Scaled and Icy"] = "Scaled and Icy", | |||
} | |||
return { | |||
songs = songs, | |||
albumColors = albumColors, | |||
albumLinks = albumLinks, | |||
} | } |
Revision as of 02:14, 9 July 2025
Documentation for this module may be created at Module:Setlist2/Songs/doc
local songs = { ["Friend, Please"] = {"Twenty One Pilots"}, ["Trapdoor"] = {"Twenty One Pilots"}, ["Johnny Boy"] = {"Twenty One Pilots"}, ["March To The Sea"] = {"Twenty One Pilots"}, ["Fall Away"] = {"Twenty One Pilots"}, ["Car Radio"] = {"Regional at Best", "Vessel"}, ["Ode to Sleep"] = {"Regional at Best", "Vessel"}, ["Holding On to You"] = {"Regional at Best", "Vessel"}, -- ... и т.д. } -- Определяем цвета альбомов local albumColors = { ["Twenty One Pilots"] = "#87B22A", ["Regional at Best"] = "#e6ad2b", ["Vessel"] = "#b0d8e3", ["Blurryface"] = "#dc4747", ["Trench"] = "#ffcc4d", ["Scaled and Icy"] = "#b3e7fa", } -- Определяем ссылки для альбомов local albumLinks = { ["Twenty One Pilots"] = "Twenty One Pilots (album)", ["Regional at Best"] = "Regional at Best", ["Vessel"] = "Vessel (album)", ["Blurryface"] = "Blurryface (album)", ["Trench"] = "Trench (album)", ["Scaled and Icy"] = "Scaled and Icy", } return { songs = songs, albumColors = albumColors, albumLinks = albumLinks, }