mNo edit summary |
mNo edit summary |
||
Line 14: | Line 14: | ||
["station format"] = { | ["station format"] = { | ||
"[[%1 LRT Station|%1]]", | "[[%1 LRT Station|%1]]", | ||
["Have Idea"] = BHF | ["Have Idea"] = BHF, | ||
}, | }, | ||
["lines"] = lines_aux { | ["lines"] = lines_aux { |
Revision as of 14:46, 20 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 BHF = "[[%1 Station|%1]]"
local p = {
["system title"] = "[[Nordstetten Light Rail]]",
["system icon"] = "",
["station format"] = {
"[[%1 LRT Station|%1]]",
["Have Idea"] = BHF,
},
["lines"] = lines_aux {
["1"] = {
["color"] = "268bd2",
["left terminus"] = "Have Idea",
["right terminus"] = "Eulerstraße",
}
},
}
return p