mirror of
https://github.com/ok-oldking/ok-wuthering-waves.git
synced 2025-06-06 17:05:54 +00:00
25 lines
696 B
Python
25 lines
696 B
Python
from src.char.BaseChar import BaseChar
|
|
|
|
|
|
class Yuanwu(BaseChar):
|
|
|
|
def count_resonance_priority(self):
|
|
return 0
|
|
|
|
def count_echo_priority(self):
|
|
return 0
|
|
|
|
def count_base_priority(self):
|
|
return -2
|
|
|
|
def do_perform(self):
|
|
self.click_liberation(con_less_than=1)
|
|
if self.has_intro:
|
|
self.continues_normal_attack(1.2)
|
|
if self.is_forte_full():
|
|
self.send_resonance_key(down_time=0.7, post_sleep=0.2)
|
|
self.click_echo()
|
|
self.continues_normal_attack(1.1 - self.time_elapsed_accounting_for_freeze(self.last_perform),
|
|
until_con_full=True)
|
|
self.switch_next_char()
|