Add two railways
Some checks failed
Build maps / build-mapcrafter (push) Failing after 19s
Build maps / build-bluemap (push) Failing after 22s

This commit is contained in:
2025-12-17 01:25:21 +09:00
parent 89e9d8827c
commit 1b3a7d0e90

View File

@@ -1,7 +1,59 @@
from lib_marker import MarkerSet
from lib_marker import MarkerSet, Track
MARKER_SET = MarkerSet(
name="Railways",
markers=[],
markers=[
Track(
name="Sentralbane vest",
points=[
(143, 71, 127),
(44, 71, 127),
(41, 71, 123),
(-32, 71, 123),
(-32, 71, 126),
(-34, 71, 128),
(-53, 71, 128),
(-68, 71, 128),
(-77, 71, 128),
(-106, 71, 173),
(-106, 71, 180),
(-129, 71, 203),
(-271, 71, 203),
(-308, 71, 165),
(-358, 71, 165),
],
),
Track(
name="Shiro Monorail",
points=[
(-689, 73, -770),
(-685, 73, -770),
(-685, 73, -765),
(-685, 74, -764),
(-685, 74, -760),
(-720, 74, -760),
(-737, 76, -760),
(-737, 76, -646),
(-739, 77, -646),
(-742, 77, -646),
(-744, 78, -646),
(-759, 92, -646),
(-815, 92, -646),
(-815, 92, -643),
(-815, 101, -633),
(-815, 101, -385),
(-815, 97, -380),
(-815, 97, -377),
(-815, 90, -370),
(-813, 90, -370),
(-813, 73, -352),
(-813, 73, -306),
(-813, 68, -300),
(-813, 68, -298),
(-817, 68, -298),
(-819, 67, -298),
(-822, 67, -298),
],
),
],
)