From 232ca5a9cad7a46f932857fd20d890dd948ce6ff Mon Sep 17 00:00:00 2001 From: "firedcto@gmail.com" Date: Mon, 22 Jul 2024 13:19:26 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=8D=E4=BD=8E=E6=B8=8A=E6=AD=A6,=20?= =?UTF-8?q?=E7=BB=B4=E9=87=8C=E5=A5=88=E5=88=87=E4=BA=BA=E4=BC=98=E5=85=88?= =?UTF-8?q?=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/char/Verina.py | 10 ++-------- src/char/Yuanwu.py | 4 ++-- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/char/Verina.py b/src/char/Verina.py index cc0c0687..8d6e3ce0 100644 --- a/src/char/Verina.py +++ b/src/char/Verina.py @@ -12,14 +12,8 @@ def do_perform(self): 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 diff --git a/src/char/Yuanwu.py b/src/char/Yuanwu.py index 63120e5b..bfac2a2e 100644 --- a/src/char/Yuanwu.py +++ b/src/char/Yuanwu.py @@ -9,8 +9,8 @@ def count_resonance_priority(self): 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)