StarRailCopilot/route/rogue/Elite/Jarilo_GreatMine_F1.py
2023-10-02 16:32:53 +08:00

26 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_F1_X175Y273(self):
"""
| Waypoint | Position | Direction | Rotation |
| -------- | ------------------------- | --------- | -------- |
| spawn | Waypoint((175.5, 273.5)), | 274.2 | 274 |
| enemy | Waypoint((128.5, 273.0)), | 282.9 | 271 |
| reward | Waypoint((116.8, 265.0)), | 293.1 | 290 |
| exit | Waypoint((111.5, 280.3)), | 250.7 | 248 |
"""
self.map_init(plane=Jarilo_GreatMine, floor="F1", position=(175.5, 273.5))
enemy = Waypoint((128.5, 273.0))
reward = Waypoint((116.8, 265.0))
exit_ = Waypoint((111.5, 280.3))
self.clear_elite(enemy)
self.domain_reward(reward)
self.domain_single_exit(exit_)
# ===== End of generated waypoints =====