Difference between revisions of "Module:Adjacent stations/Kaohsiung Rapid Transit/sandbox"

From blackwiki
Jump to navigation Jump to search
blackwiki>Szqecs
(Created page with 'return { ['system title'] = '18px|link=Kaohsiung Rapid Transit System [[Kaohsiung Rapid Transit System...')
 
m (6 revisions imported)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
return {
+
local p = {
['system title'] = '[[File:Kaohsiung Mass Rapid Transit Logo(Logo Only).svg|18px|link=Kaohsiung Rapid Transit System]] [[Kaohsiung Rapid Transit System]]',
+
["lang"] = "en-GB",
['station format'] = {
+
["system title"] = "[[File:Kaohsiung Mass Rapid Transit Logo(Logo Only).svg|18px|link=Kaohsiung Rapid Transit System]] [[Kaohsiung Rapid Transit System]]",
'%1 MRT station',
+
["station format"] = {
['Ciaotou'] = 'Qiaotou station',
+
"%1 MRT station",
['Kaohsiung Main station'] = 'Kaohsiung station',
+
["Ciaotou"] = "Qiaotou station",
['Zuoying'] = 'Zuoying HSR station'
+
["Kaohsiung Main station"] = "Kaohsiung station",
 +
["Zuoying"] = "Zuoying HSR station",
 +
 +
["Hamasen"] = "%1 LRT station",
 +
["Lizihnei"] = "%1 LRT station"
 
},
 
},
['lines'] = {
+
["lines"] = {
['Red'] = {
+
["Red"] = {
['line title'] = '[[Red line (Kaohsiung MRT)|Red line]]',
+
["line title"] = "[[Red line (Kaohsiung MRT)|Red line]]",
['colour'] = 'ea0437',
+
["color"] = "ea0061",
['left terminus'] = 'Gangshan South',
+
["left terminus"] = "Gangshan South",
['right terminus'] = 'Siaogang'
+
["right terminus"] = "Siaogang"
 
},
 
},
['Orange'] = {
+
["Orange"] = {
['line title'] = '[[Orange line (Kaohsiung MRT)|Orange line]]',
+
["line title"] = "[[Orange line (Kaohsiung MRT)|Orange line]]",
['colour'] = 'ff8800',
+
["color"] = "fd973c",
['left terminus'] = 'Sizihwan',
+
["left terminus"] = "Sizihwan",
['right terminus'] = 'Daliao'
+
["right terminus"] = "Daliao"
 
},
 
},
['Circular'] = {
+
["Circular"] = {
['line title'] = '[[Circular light rail]]',
+
["line title"] = "[[Circular light rail]]",
['colour'] = '00b14f',
+
["color"] = "77c35e",
['left terminus'] = 'Hamasen',
+
["left terminus"] = "Hamasen",
['right terminus'] = 'Lizihnei'
+
["right terminus"] = "Lizihnei"
 
}
 
}
 
}
 
}
 
}
 
}
 +
 +
return p

Latest revision as of 12:39, 26 September 2020

Documentation for this module may be created at Module:Adjacent stations/Kaohsiung Rapid Transit/sandbox/doc

local p = {
	["lang"] = "en-GB",
	["system title"] = "[[File:Kaohsiung Mass Rapid Transit Logo(Logo Only).svg|18px|link=Kaohsiung Rapid Transit System]] [[Kaohsiung Rapid Transit System]]",
	["station format"] = {
		"%1 MRT station",
		["Ciaotou"] = "Qiaotou station",
		["Kaohsiung Main station"] = "Kaohsiung station",
		["Zuoying"] = "Zuoying HSR station",
		
		["Hamasen"] = "%1 LRT station",
		["Lizihnei"] = "%1 LRT station"
	},
	["lines"] = {
		["Red"] = {
			["line title"] = "[[Red line (Kaohsiung MRT)|Red line]]",
			["color"] = "ea0061",
			["left terminus"] = "Gangshan South",
			["right terminus"] = "Siaogang"
		},
		["Orange"] = {
			["line title"] = "[[Orange line (Kaohsiung MRT)|Orange line]]",
			["color"] = "fd973c",
			["left terminus"] = "Sizihwan",
			["right terminus"] = "Daliao"
		},
		["Circular"] = {
			["line title"] = "[[Circular light rail]]",
			["color"] = "77c35e",
			["left terminus"] = "Hamasen",
			["right terminus"] = "Lizihnei"
		}
	}
}

return p