StarRailCopilot/route/rogue/Respite/Jarilo_BackwaterPass_F1.py

28 lines
1.1 KiB
Python
Raw Normal View History

2023-10-01 15:20:42 +00:00
from tasks.map.control.waypoint import Waypoint
from tasks.map.keywords.plane import Jarilo_BackwaterPass
from tasks.map.route.base import locked_position
2023-10-01 15:20:42 +00:00
from tasks.rogue.route.base import RouteBase
class Route(RouteBase):
@locked_position
2023-10-01 15:20:42 +00:00
def Jarilo_BackwaterPass_F1_X581Y403(self):
"""
| Waypoint | Position | Direction | Rotation |
| -------- | ------------------------- | --------- | -------- |
| spawn | Waypoint((581.5, 403.5)), | 131.7 | 126 |
| item | Waypoint((586.8, 418.6)), | 172.7 | 165 |
| herta | Waypoint((606.6, 433.0)), | 143.8 | 140 |
| exit_ | Waypoint((618.6, 430.6)), | 116.7 | 114 |
2023-10-01 15:20:42 +00:00
"""
self.map_init(plane=Jarilo_BackwaterPass, floor="F1", position=(581.5, 403.5))
item = Waypoint((586.8, 418.6))
herta = Waypoint((606.6, 433.0))
exit_ = Waypoint((618.6, 430.6))
self.clear_item(item)
self.domain_herta(herta)
self.domain_single_exit(exit_)
# ===== End of generated waypoints =====