2023-10-05 11:32:47 +00:00
|
|
|
from tasks.map.control.waypoint import Waypoint
|
|
|
|
from tasks.map.keywords.plane import Luofu_StargazerNavalia
|
|
|
|
from tasks.rogue.route.base import RouteBase
|
|
|
|
|
|
|
|
|
|
|
|
class Route(RouteBase):
|
|
|
|
|
|
|
|
def Luofu_StargazerNavalia_F2_X579Y183(self):
|
|
|
|
"""
|
|
|
|
| Waypoint | Position | Direction | Rotation |
|
|
|
|
| -------- | ------------------------- | --------- | -------- |
|
|
|
|
| spawn | Waypoint((579.8, 183.5)), | 96.7 | 91 |
|
2023-10-18 05:49:44 +00:00
|
|
|
| event | Waypoint((615.3, 195.5)), | 105.6 | 66 |
|
2023-10-05 11:32:47 +00:00
|
|
|
| exit | Waypoint((622.1, 186.3)), | 96.7 | 91 |
|
|
|
|
"""
|
|
|
|
self.map_init(plane=Luofu_StargazerNavalia, floor="F2", position=(579.8, 183.5))
|
|
|
|
self.register_domain_exit(Waypoint((622.1, 186.3)), end_rotation=91)
|
2023-10-18 05:49:44 +00:00
|
|
|
event = Waypoint((615.3, 195.5))
|
2023-10-05 11:32:47 +00:00
|
|
|
|
|
|
|
self.clear_event(event)
|
|
|
|
# ===== End of generated waypoints =====
|