2023-10-01 15:20:42 +00:00
|
|
|
from tasks.map.control.waypoint import Waypoint
|
|
|
|
from tasks.map.keywords.plane import Herta_StorageZone
|
|
|
|
from tasks.rogue.route.base import RouteBase
|
|
|
|
|
|
|
|
|
|
|
|
class Route(RouteBase):
|
|
|
|
|
|
|
|
def Herta_StorageZone_F1_X703Y267(self):
|
|
|
|
"""
|
2023-11-13 08:21:25 +00:00
|
|
|
| Waypoint | Position | Direction | Rotation |
|
|
|
|
| -------- | ------------------------- | --------- | -------- |
|
|
|
|
| spawn | Waypoint((703.2, 267.6)), | 300.1 | 292 |
|
|
|
|
| item | Waypoint((690.6, 255.0)), | 327.8 | 322 |
|
|
|
|
| herta | Waypoint((660.9, 244.9)), | 311.8 | 308 |
|
|
|
|
| exit_ | Waypoint((645.3, 251.4)), | 294.6 | 292 |
|
2023-10-01 15:20:42 +00:00
|
|
|
"""
|
|
|
|
self.map_init(plane=Herta_StorageZone, floor="F1", position=(703.2, 267.6))
|
2023-11-13 08:21:25 +00:00
|
|
|
item = Waypoint((690.6, 255.0))
|
2023-10-01 15:20:42 +00:00
|
|
|
herta = Waypoint((660.9, 244.9))
|
2023-10-03 10:03:37 +00:00
|
|
|
exit_ = Waypoint((645.3, 251.4))
|
2023-10-01 15:20:42 +00:00
|
|
|
|
2023-11-13 08:21:25 +00:00
|
|
|
self.clear_item(item)
|
2023-10-01 15:20:42 +00:00
|
|
|
self.domain_herta(herta)
|
2023-10-03 10:03:37 +00:00
|
|
|
self.domain_single_exit(exit_)
|
2023-10-01 15:20:42 +00:00
|
|
|
# ===== End of generated waypoints =====
|