Jump to content

Module:Adjacent stations/SMRT

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by R22-3877 (talk | contribs) at 08:44, 19 February 2022 (Fixed bug). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local smrt = "%1 MRT/LRT station"

local p = {
	["system title"] = "[[Mass Rapid Transit (Singapore)|Mass Rapid Transit]]",
	["system icon"] = "",
	["station format"] = {
		"%1 MRT station",
		["Bukit Panjang"] = smrt,
		["Punggol"] = smrt,
		["Sengkang"] = smrt,
	},
	["lines"] = {
		["Circle"] = {
			["title"] = "[[Circle MRT line|Circle Line]]",
			["color"] = "fa9e0d",
			["left terminus"] = "Dhoby Ghaut",
			["right terminus"] = "HarbourFront",
			["types"] = {
				["Stadium"] = {
					["title"] ="Stadium Shuttle",
					["left terminus"] = "Marina Bay",
					["right terminus"] = "Stadium",
				},
				["CCL6"] = {
					["title"] ="Future service",
					["left terminus"] = "Clockwise / outer",
					["right terminus"] = "Anticlockwise / inner",
					["circular"] = true,
				},
			},
		},
		["Cross Island"] = {
			["title"] = "[[Cross Island MRT line|Cross Island Line]]",
			["color"] = "97C616",
			["left terminus"] = "Aviation Park",
			["right terminus"] = "Bright Hill",
		},
		["Downtown"] = {
			["title"] = "[[Downtown MRT line|Downtown Line]]",
			["color"] = "005ec4",
			["left terminus"] = "Bukit Panjang",
			["right terminus"] = {"Expo","Sungei Bedok"},
		},
		["East West"] = {
			["title"] = "[[East West MRT line|East West Line]]",
			["color"] = "009645",
			["left terminus"] = "Pasir Ris",
			["right terminus"] = "Tuas Link",
			["types"] = {
				["Changi"] ={
					["title"] = "Changi Airport Line",
					["left terminus"] = "Tanah Merah",
					["right terminus"] = "Changi Airport",
				},
			},
		},
		["Jurong Region"] = {
			["title"] = "[[Jurong Region MRT line|Jurong Region Line]]",
			["color"] = "0099aa",
			["types"] = {
				["Pandan"] = {
					["title"] = "Future service",
					["left terminus"] = "Tengah",
					["right terminus"] = "Pandan Reservoir",
					},
				["Jurong Pier BJN"] = {
					["title"] = "Future service",
					["left terminus"] = {"Jurong Pier",
						"Boon Lay",
						["via"] = "Bahar Junction",
					},
					["oneway-right"] = true,
				},
				["Jurong Pier"] = {
					["title"] = "Future service",
					["left terminus"] = {"Jurong Pier",
						"Boon Lay",
					},
					["oneway-right"] = true,
				},
				["Peng Kang BJN"] = {
					["title"] = "Future service",
					["left terminus"] = {"Peng Kang Hill",
						"Tawas",
						["via"] = "Bahar Junction",
					},
					["oneway-right"] = true,
				},
				["Peng Kang"] = {
					["title"] = "Future service",
					["left terminus"] = {"Peng Kang Hill",
						"Tawas",
					},
					["oneway-right"] = true,
				},
				["CCK BJN"] = {
					["title"] = "Future service",
					["oneway-left"] = true,
					["right terminus"] = {"Choa Chu Kang",
						["via"] = "Bahar Junction",
					},
				},
				["CCK"] = {
					["title"] = "Future service",
					["oneway-left"] = true,
					["right terminus"] = "Choa Chu Kang",
				},
			},
		},
		["North East"] = {
			["title"] = "[[North East MRT line|North East Line]]",
			["color"] = "9900aa",
			["left terminus"] = "HarbourFront",
			["right terminus"] = {"Punggol","Punggol Coast"},
		},
		["North South"] = {
			["title"] = "[[North South MRT line|North South Line]]",
			["color"] = "d42e12",
			["left terminus"] = "Jurong East",
			["right terminus"] = "Marina South Pier",
		},
		["Thomson-East Coast"] = {
			["title"] = "[[Thomson-East Coast MRT line|Thomson-East Coast Line]]",
			["color"] = "9D5B25",
			["left terminus"] = "Woodlands North",
			["right terminus"] = {"Caldecott",
				"Gardens by the Bay",
				"Bayshore","Sungei Bedok"},
		},
	},
}

return p