Module:Setlist2/Songs
Jump to navigation
Jump to search
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"}, ["Truce"] = {"Vessel"}, ["Shy Away"] = {"Vessel"}, ["Fake You Out"] = {"Vessel"}, ["Guns For Hands"] = {"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, }