Jump to content

Module:Adjacent stations/Thessaloniki Metro

From Wikipedia, the free encyclopedia

local colors = {
	["1"] = "ff0000",
	["2"] = "0070ff",
}

local p = {
	["system title"] = "[[Thessaloniki Metro]]",
	["system color"] = "999999",
	["name format"] = {
		["Line 1"] = "border-top-style: solid; border-top-color: #" .. colors["1"] .. "; border-bottom-style: solid; border-bottom-color: #" .. colors["1"] .. ";",
		["Line 2"] = "border-top-style: solid; border-top-color: #" .. colors["2"] .. "; border-bottom-style: solid; border-bottom-color: #" .. colors["2"] .. ";",
		["Both"] = "border-top-style: solid; border-top-color: #" .. colors["1"] .. "; border-bottom-style: solid; border-bottom-color: #" .. colors["2"] .. ";",
	},
	["station format"] = {
		"%1 station",
		["N. Sid. Stathmos"] = "[[Neos Sidirodromikos Stathmos metro station|N. Sid. Stathmos]]",
		["Neos Sidirodromikos Stathmos"] = "[[Neos Sidirodromikos Stathmos metro station|Neos Sidirodromikos Stathmos]]",
		["Panepistimio"] = "[[Panepistimio metro station (Thessaloniki)|Panepistimio]]",
		["Pylaia"] = "[[Pylaia depot]]"
	},
	["lines"] = {
		["_default"] = {
			["title"] = "[[Line %1 (Thessaloniki Metro)|Line %1]]",
			["color"] = "999999",
			["icon"] = "[[File:Thessaloniki Metro Line %1.svg|16px|alt=]]",
		},
		["1"] = {
			["color"] = colors["1"],
			["text color"] = "ffffff",
			["left terminus"] = "N. Sid. Stathmos",
			["right terminus"] = "Nea Elvetia",
		},
		["2"] = {
			["color"] = colors["2"],
			["text color"] = "ffffff",
			["left terminus"] = "N. Sid. Stathmos",
			["right terminus"] = "Mikra",
		},
	},
	["aliases"] = {
		["line 1"] = "1",
		["line 2"] = "2",
	}
}

return p