Module:Adjacent stations/Nordstetten Light Rail: Difference between revisions

From 1F616EMO Survival Server Wiki
mNo edit summary
mNo edit summary
Line 16: Line 16:
["lines"] = lines_aux {
["lines"] = lines_aux {
["1"] = {
["1"] = {
["color"] = "0000FF",
["color"] = "268bd2",
["left terminus"] = "Wörther Straße",
["left terminus"] = "Offenburger Straße",
["right terminus"] = "Eulerstraße",
["right terminus"] = "Eulerstraße",
}
}

Revision as of 23:37, 13 April 2024

local function lines_aux(lines)
	for k, def in pairs(lines) do
		if not def.title then
			def.title = ("[[Nordstetten LRT Line %s|Line %s]]"):format(k, k)
		end
	end
	return lines
end

local p = {
	["system title"] = "[[Nordstetten Light Rail]]",
	["system icon"] = "",
	["station format"] = {
		"[[%1 LRT Station|%1]]",
	},
	["lines"] = lines_aux {
		["1"] = {
			["color"] = "268bd2",
			["left terminus"] = "Offenburger Straße",
			["right terminus"] = "Eulerstraße",
		}
	},
}

return p