Skip to content

Commit

Permalink
降低渊武, 维里奈切人优先级
Browse files Browse the repository at this point in the history
  • Loading branch information
ok-oldking committed Jul 22, 2024
1 parent e4311f9 commit 232ca5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
10 changes: 2 additions & 8 deletions src/char/Verina.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions src/char/Yuanwu.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 232ca5a

Please sign in to comment.