Jump to content

Module:Adjacent stations/Tramways in Île-de-France

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Gonnym (talk | contribs) at 14:16, 14 June 2022. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local line_icon = "[[File:Paris transit icons - Tram %s.svg|16px|alt=]]"

local function get_line_image(line_number)
	return string.format(line_icon, line_number)
end

local p = {
	["system title"] = "[[Tramways in Île-de-France]]",
	["system icon"] = "[[File:Paris transit icons - Tram.svg|16px|alt=]]",
		["lines"] = {
		["t1"] = {
			["title"] = "[[Île-de-France tramway Line 1|T1]]",
			["color"] = "0064B0",
			["icon"] = get_line_image(1),
		},
		["t2"] = {
			["title"] = "[[Île-de-France tramway Line 2|T2]]",
			["color"] = "C04191",
			["icon"] = get_line_image(2),
		},
		["t3a"] = {
			["title"] = "[[Île-de-France tramway Lines 3a and 3b|T3a]]",
			["color"] = "F28E42",
			["icon"] = get_line_image("3a"),
		},
		["t3b"] = {
			["title"] = "[[Île-de-France tramway Lines 3a and 3b|T3b]]",
			["color"] = "00814F",
			["icon"] = get_line_image("3b"),
		},
		["t4"] = {
			["title"] = "[[Île-de-France tramway Line 4|T4]]",
			["color"] = "E3B32A",
			["icon"] = get_line_image(4),
		},
		["t5"] = {
			["title"] = "[[Île-de-France tramway Line 5|T5]]",
			["color"] = "662483",
			["icon"] = get_line_image(5),
		},
		["t6"] = {
			["title"] = "[[Île-de-France tramway Line 6|T6]]",
			["color"] = "E3051C",
			["icon"] = get_line_image(6),
		},
		["t7"] = {
			["title"] = "[[Île-de-France tramway Line 7|T7]]",
			["color"] = "8D5E2A",
			["icon"] = get_line_image(7),
		},
		["t8"] = {
			["title"] = "[[Île-de-France tramway Line 8|T8]]",
			["color"] = "9F9825",
			["icon"] = get_line_image(8),
		},
		["t9"] = {
			["title"] = "[[Île-de-France tramway Line 9|T9]]",
			["color"] = "5291CE",
			["icon"] = get_line_image(9),
		},
		["t10"] = {
			["title"] = "T10",
			["color"] = "9F9825",
			["icon"] = get_line_image(10),
		},
		["t11"] = {
			["title"] = "[[Île-de-France tramway Line 11 Express|T11]]",
			["color"] = "F28E42",
			["icon"] = get_line_image(11),
		},
		["t12"] = {
			["title"] = "T12",
			["color"] = "B90845",
			["icon"] = get_line_image(12),
		},
		["t13"] = {
			["title"] = "T13",
			["color"] = "8D5E2A",
			["icon"] = get_line_image(13),
		},
	},
}

return p