StarRailCopilot/route/rogue/Occurrence/Luofu_StargazerNavalia_F1.py

42 lines
1.9 KiB
Python
Raw Normal View History

2023-10-18 17:21:20 +00:00
from tasks.map.control.waypoint import Waypoint
from tasks.map.keywords.plane import Luofu_StargazerNavalia
from tasks.map.route.base import locked_position
2023-10-18 17:21:20 +00:00
from tasks.rogue.route.base import RouteBase
class Route(RouteBase):
@locked_position
2023-10-18 17:21:20 +00:00
def Luofu_StargazerNavalia_F1_X250Y498(self):
"""
| Waypoint | Position | Direction | Rotation |
| -------------- | ------------------------- | --------- | -------- |
| spawn | Waypoint((249.4, 498.5)), | 190.1 | 184 |
| event_X236Y528 | Waypoint((236.8, 528.9)), | 188.1 | 181 |
| exit_ | Waypoint((245.3, 550.1)), | 282.9 | 181 |
2023-10-18 17:21:20 +00:00
"""
self.map_init(plane=Luofu_StargazerNavalia, floor="F1", position=(249.4, 498.5))
self.register_domain_exit(Waypoint((245.3, 550.1)), end_rotation=181)
event_X236Y528 = Waypoint((236.8, 528.9))
self.clear_event(event_X236Y528)
# ===== End of generated waypoints =====
def Luofu_StargazerNavalia_F1_X521Y595(self):
"""
| Waypoint | Position | Direction | Rotation |
| -------------- | ------------------------- | --------- | -------- |
| spawn | Waypoint((521.6, 595.4)), | 190.1 | 184 |
2023-10-20 14:24:30 +00:00
| item_X504Y610 | Waypoint((504.0, 610.0)), | 188.9 | 186 |
2023-10-18 17:21:20 +00:00
| event_X510Y626 | Waypoint((510.6, 626.4)), | 282.9 | 181 |
| exit_ | Waypoint((522.2, 630.6)), | 190.0 | 184 |
2023-10-18 17:21:20 +00:00
"""
self.map_init(plane=Luofu_StargazerNavalia, floor="F1", position=(521.6, 595.4))
self.register_domain_exit(Waypoint((522.2, 630.6)), end_rotation=184)
2023-10-20 14:24:30 +00:00
item_X504Y610 = Waypoint((504.0, 610.0))
2023-10-18 17:21:20 +00:00
event_X510Y626 = Waypoint((510.6, 626.4))
2023-10-20 14:24:30 +00:00
self.clear_item(item_X504Y610)
2023-10-18 17:21:20 +00:00
self.clear_event(event_X510Y626)
# ===== End of generated waypoints =====