mirror of
https://github.com/ok-oldking/ok-wuthering-waves.git
synced 2025-06-07 09:25:34 +00:00
14 lines
399 B
Python
14 lines
399 B
Python
from src.char.Healer import Healer
|
|
|
|
|
|
class Baizhi(Healer):
|
|
|
|
def do_perform(self):
|
|
if self.has_intro:
|
|
self.logger.debug('has_intro wait click 1.2 sec')
|
|
self.continues_normal_attack(1.2, click_resonance_if_ready_and_return=True)
|
|
self.click_liberation(con_less_than=1)
|
|
self.click_resonance()
|
|
self.click_echo()
|
|
self.switch_next_char()
|