Jump to content

Module:Adjacent stations/MÁV START

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mackensen (talk | contribs) at 18:11, 15 June 2023 (flip Sz Rajka-Csorna). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local stn = "%1 station"
local hbf = "[[%1 Hauptbahnhof|%1 Hbf]]"

local p = {
	["system title"] = "[[MÁV START]]",
	["system icon"] = "",
	["station format"] = {
		"%1 railway station",
		["Budapest Déli"] = stn,
		["Budapest Keleti"] = stn,
		["Graz"] = hbf,
		["Salzburg"] = hbf,
		["Wien"] = hbf,
	},
	["lines"] = {
		-- InterCity lines
		["IC Ljubljana-Budapest"] = {
			["title"] = "[[InterCity#Hungary|InterCity]]",
			["color"] = "0000ff",
			["left terminus"] = "Ljubljana",
			["right terminus"] = "Budapest Keleti",
		},
		["IC Sopron-Budapest"] = {
			["title"] = "[[InterCity#Hungary|InterCity]]",
			["color"] = "0000ff",
			["left terminus"] = "Sopron",
			["right terminus"] = "Budapest Keleti",
		},
		["IC Graz-Budapest"] = {
			["title"] = "[[InterCity#Hungary|InterCity]]",
			["color"] = "0000ff",
			["left terminus"] = "Graz",
			["right terminus"] = "Budapest Keleti",
		},
		["IC Szentgotthárd-Budapest"] = {
			["title"] = "[[InterCity#Hungary|InterCity]]",
			["color"] = "0000ff",
			["left terminus"] = "Szentgotthárd",
			["right terminus"] = "Budapest Keleti",
		},
		-- EuroNight
		["EN Salzburg-Budapest"] = {
			["title"] = "''[[EuroNight|Kálmán Imre]]''",
			["color"] = "0044ff",
			["left terminus"] = "Salzburg",
			["right terminus"] = "Budapest Keleti",
		},
		
		-- Gyorsvonat
		["Gy Vienna-Bucharest"] = {
			["title"] = "''[[Train categories in Europe#Hungary (MÁV, GYSEV)|Dacia–Corvin Express]]''",
			["color"] = "ff0000",
			["left terminus"] = "Wien",
			["right terminus"] = "Bucharest North",
		},
		
		-- InterRégió
		["IR Kaposvar-Győr"] = {
			["title"] = "[[InterRegio#Hungary|InterRegio]]",
			["color"] = "008000",
			["left terminus"] = "Kaposvar",
			["right terminus"] = "Győr",
		},
		-- Személyvonat
		["Sz Celldömölk-Győr"] = {
			["title"] = "[[Személyvonat]]",
			["color"] = "000000",
			["left terminus"] = "Celldömölk",
			["right terminus"] = "Győr",			
		},
		["Sz Rajka-Csorna"] = {
			["title"] = "[[Személyvonat]]",
			["color"] = "000000",
			["left terminus"] = "Rajka",
			["right terminus"] = "Csorna",			
		},
		["Sz Rajka-Győr"] = {
			["title"] = "[[Személyvonat]]",
			["color"] = "000000",
			["left terminus"] = "Rajka",
			["right terminus"] = "Győr",			
		},
		["Sz Sopron-Győr"] = {
			["title"] = "[[Személyvonat]]",
			["color"] = "000000",
			["left terminus"] = "Sopron",
			["right terminus"] = "Győr",			
		},
		["Sz Veszprem-Győr"] = {
			["title"] = "[[Személyvonat]]",
			["color"] = "000000",
			["left terminus"] = "Veszprem",
			["right terminus"] = "Győr",			
		},
		-- Budapest suburban services
		["S10"] = {
			["title"] = "[[Suburban trains in Budapest|S10]]",
			["color"] = "00aff0",
			["text color"] = "FFFFFF",
			["left terminus"] = "Győr",
			["right terminus"] = "Budapest Déli",
		}
	},
	["aliases"] = {
		["dráva"] = "IC Ljubljana-Budapest",
		["helikon"] = "IR Kaposvar-Győr",
		["ikva"] = "IC Sopron-Budapest",
		["kékfrankos"] = "IC Sopron-Budapest",
		["lővér"] = "IC Sopron-Budapest",
		["magnet bank"] = "IC Sopron-Budapest",
		["mura"] = "IC Graz-Budapest",
		["savaria"] = "IC Szentgotthárd-Budapest",
		["scarbantia"] = "IC Sopron-Budapest",
		["soproni közgáz"] = "IC Sopron-Budapest",
		["tűztorony"] = "IC Sopron-Budapest",
	}
}

return p