StarRailCopilot/route/rogue/Occurrence/Jarilo_GreatMine_F1RogueOcc.py
LmeSzinc 0bf4b45c8c Upd: Regenerate rogue routes
regen Combat/Herta
regen Combat/Jarlio
regen Combat/Luofu
regen Elite
regen Occurrence
regen Respite
Update position
2023-11-14 02:26:12 +08:00

25 lines
1.0 KiB
Python

from tasks.map.control.waypoint import Waypoint
from tasks.map.keywords.plane import Jarilo_GreatMine
from tasks.rogue.route.base import RouteBase
class Route(RouteBase):
def Jarilo_GreatMine_F1RogueOcc_X109Y423(self):
"""
| Waypoint | Position | Direction | Rotation |
| -------- | ------------------------- | --------- | -------- |
| spawn | Waypoint((109.3, 422.9)), | 337.2 | 334 |
| item | Waypoint((93.3, 399.2)), | 327.8 | 324 |
| event | Waypoint((96.2, 382.0)), | 354.1 | 350 |
| exit_ | Waypoint((85.9, 381.5)), | 334.8 | 331 |
"""
self.map_init(plane=Jarilo_GreatMine, floor="F1RogueOcc", position=(109.3, 422.9))
self.register_domain_exit(Waypoint((85.9, 381.5)), end_rotation=331)
item = Waypoint((93.3, 399.2))
event = Waypoint((96.2, 382.0))
self.clear_item(item)
self.clear_event(event)
# ===== End of generated waypoints =====