0
0
mirror of https://github.com/ok-oldking/ok-wuthering-waves.git synced 2025-06-05 08:25:28 +00:00
2024-09-24 23:18:26 +08:00

18 lines
471 B
Python

from src.char.Healer import Healer
class Verina(Healer):
def do_perform(self):
self.click_liberation()
if self.flying():
self.normal_attack()
return self.switch_next_char()
if self.click_resonance(send_click=False)[0]:
return self.switch_next_char()
self.click_echo()
if self.is_forte_full():
self.heavy_attack()
# self.normal_attack()
self.switch_next_char()