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

降低渊武, 维里奈切人优先级

This commit is contained in:
firedcto@gmail.com 2024-07-22 13:19:26 +08:00
parent e4311f9af3
commit 232ca5a9ca
2 changed files with 4 additions and 10 deletions

View File

@ -12,14 +12,8 @@ class Verina(BaseChar):
if self.click_echo():
self.heavy_attack()
return self.switch_next_char()
# if self.current_con < 1:
# # self.continues_normal_attack(1.9, click_resonance_if_ready_and_return=True, until_con_full=True)
# if self.current_con < 1:
self.heavy_attack()
self.switch_next_char()
def count_resonance_priority(self):
return 20
def do_get_switch_priority(self, current_char: BaseChar, has_intro=False):
return super().do_get_switch_priority(current_char, has_intro)
def count_base_priority(self):
return - 1

View File

@ -9,8 +9,8 @@ class Yuanwu(BaseChar):
def count_echo_priority(self):
return 0
def count_liberation_priority(self):
return 1
def count_base_priority(self):
return -1
def do_perform(self):
self.click_liberation(con_less_than=1)