mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-26 18:20:42 +00:00
15 lines
372 B
Python
15 lines
372 B
Python
from tasks.base.ui import UI
|
|
from tasks.rogue.assets.assets_rogue_ui import *
|
|
from tasks.rogue.keywords import *
|
|
|
|
|
|
class RogueUI(UI):
|
|
path: RoguePath
|
|
blessings: list
|
|
|
|
def is_page_choose_blessing(self):
|
|
return self.image_color_count(PAGE_CHOOSE_BUFF, (245, 245, 245))
|
|
|
|
def is_page_choose_curio(self):
|
|
return self.appear(PAGE_CHOOSE_MIRACLE)
|