mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00:00
22 lines
900 B
Python
22 lines
900 B
Python
from tasks.map.control.waypoint import Waypoint
|
|
from tasks.map.keywords.plane import Herta_StorageZone
|
|
from tasks.rogue.route.base import RouteBase
|
|
|
|
|
|
class Route(RouteBase):
|
|
|
|
def Herta_StorageZone_F1_X273Y93(self):
|
|
"""
|
|
| Waypoint | Position | Direction | Rotation |
|
|
| ------------ | ------------------------ | --------- | -------- |
|
|
| spawn | Waypoint((273.5, 93.2)), | 308.0 | 304 |
|
|
| event | Waypoint((238.4, 64.8)), | 324.9 | 311 |
|
|
| exit_X227Y69 | Waypoint((227.8, 69.5)), | 30.2 | 299 |
|
|
"""
|
|
self.map_init(plane=Herta_StorageZone, floor="F1", position=(273.5, 93.2))
|
|
self.register_domain_exit(Waypoint((227.8, 69.5)), end_rotation=299)
|
|
event = Waypoint((238.4, 64.8))
|
|
|
|
self.clear_event(event)
|
|
# ===== End of generated waypoints =====
|