2023-10-14 20:23:50 +00:00
|
|
|
from tasks.map.control.waypoint import Waypoint
|
|
|
|
from tasks.map.keywords.plane import Luofu_ScalegorgeWaterscape
|
2023-10-23 15:48:23 +00:00
|
|
|
from tasks.map.route.base import locked_position, locked_rotation
|
2023-10-14 20:23:50 +00:00
|
|
|
from tasks.rogue.route.base import RouteBase
|
|
|
|
|
|
|
|
|
|
|
|
class Route(RouteBase):
|
|
|
|
|
2023-10-23 15:48:23 +00:00
|
|
|
@locked_position
|
|
|
|
@locked_rotation(270)
|
2023-10-14 20:23:50 +00:00
|
|
|
def Luofu_ScalegorgeWaterscape_F1_X701Y321(self):
|
|
|
|
"""
|
2023-10-15 09:30:19 +00:00
|
|
|
| Waypoint | Position | Direction | Rotation |
|
|
|
|
| ------------- | ------------------------- | --------- | -------- |
|
|
|
|
| spawn | Waypoint((701.5, 320.8)), | 274.2 | 274 |
|
|
|
|
| item_X691Y314 | Waypoint((691.4, 314.9)), | 315.9 | 301 |
|
|
|
|
| herta | Waypoint((673.0, 314.9)), | 300.1 | 297 |
|
2023-11-13 08:21:25 +00:00
|
|
|
| exit_ | Waypoint((664.2, 319.4)), | 256.9 | 264 |
|
2023-10-14 20:23:50 +00:00
|
|
|
"""
|
|
|
|
self.map_init(plane=Luofu_ScalegorgeWaterscape, floor="F1", position=(701.5, 320.8))
|
2023-10-15 09:30:19 +00:00
|
|
|
item_X691Y314 = Waypoint((691.4, 314.9))
|
2023-10-14 20:23:50 +00:00
|
|
|
herta = Waypoint((673.0, 314.9))
|
2023-11-13 08:21:25 +00:00
|
|
|
exit_ = Waypoint((664.2, 319.4))
|
2023-10-14 20:23:50 +00:00
|
|
|
|
2023-10-15 09:30:19 +00:00
|
|
|
self.clear_item(item_X691Y314)
|
2023-10-14 20:23:50 +00:00
|
|
|
self.domain_herta(herta)
|
2023-11-13 08:21:25 +00:00
|
|
|
self.domain_single_exit(exit_)
|
2023-10-14 20:23:50 +00:00
|
|
|
# ===== End of generated waypoints =====
|