mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 06:25:24 +00:00
22 lines
883 B
Python
22 lines
883 B
Python
from tasks.map.control.waypoint import Waypoint
|
|
from tasks.map.keywords.plane import Luofu_Cloudford
|
|
from tasks.rogue.route.base import RouteBase
|
|
|
|
|
|
class Route(RouteBase):
|
|
|
|
def Luofu_Cloudford_F1_X241Y947(self):
|
|
"""
|
|
| Waypoint | Position | Direction | Rotation |
|
|
| -------- | ------------------------- | --------- | -------- |
|
|
| spawn | Waypoint((216.3, 948.3)), | 275.8 | 271 |
|
|
| event | Waypoint((199.0, 940.8)), | 300.1 | 294 |
|
|
| exit | Waypoint((193.1, 947.2)), | 12.8 | 274 |
|
|
"""
|
|
self.map_init(plane=Luofu_Cloudford, floor="F1", position=(216.3, 948.3))
|
|
self.register_domain_exit(Waypoint((193.1, 947.2)), end_rotation=274)
|
|
event = Waypoint((199.0, 940.8))
|
|
|
|
self.clear_event(event)
|
|
# ===== End of generated waypoints =====
|