25 lines
612 B
Python
25 lines
612 B
Python
from lib_marker import MarkerSet, Track
|
|
|
|
MARKER_SET = MarkerSet(
|
|
name="Tunnels",
|
|
markers=[
|
|
Track(
|
|
name="Danio's Warp Tunnel End Connection",
|
|
points=[
|
|
(-829, 23, -196),
|
|
(-981, 23, -196),
|
|
(-997, 15, -196),
|
|
(-1000, 15, -196),
|
|
],
|
|
),
|
|
Track(
|
|
name="Danio's Warp Tunnel South",
|
|
points=[
|
|
(-1000, 23, 1000),
|
|
(-1000, 23, -1161),
|
|
],
|
|
),
|
|
# NOTE: there is a north part to this tunnel, yet to be mapped
|
|
],
|
|
)
|