mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-15 22:19:18 +00:00
Fix: Enemy is early killed in Himeko trial
This commit is contained in:
parent
8452e91312
commit
4be9eba0fb
@ -42,14 +42,17 @@ class Route(RouteBase, Combat, CharacterTrial):
|
|||||||
self.wait_next_skill()
|
self.wait_next_skill()
|
||||||
# Herta A, or Natasha A, depends on who wasn't being attacked
|
# Herta A, or Natasha A, depends on who wasn't being attacked
|
||||||
self.use_A()
|
self.use_A()
|
||||||
self.wait_next_skill()
|
if not self.wait_next_skill():
|
||||||
|
return
|
||||||
# Natasha A, this will also cause weakness break
|
# Natasha A, this will also cause weakness break
|
||||||
# To achieve In_a_single_battle_inflict_3_Weakness_Break_of_different_Types
|
# To achieve In_a_single_battle_inflict_3_Weakness_Break_of_different_Types
|
||||||
self.use_A()
|
self.use_A()
|
||||||
self.wait_next_skill()
|
if not self.wait_next_skill():
|
||||||
|
return
|
||||||
# Just whoever user A, in case Himeko Q didn't kill it, usually to be Herta
|
# Just whoever user A, in case Himeko Q didn't kill it, usually to be Herta
|
||||||
self.use_A()
|
self.use_A()
|
||||||
self.wait_next_skill()
|
if not self.wait_next_skill():
|
||||||
|
return
|
||||||
# Himeko Q
|
# Himeko Q
|
||||||
# To achieve Use_an_Ultimate_to_deal_the_final_blow_1_time
|
# To achieve Use_an_Ultimate_to_deal_the_final_blow_1_time
|
||||||
# May kill the enemy
|
# May kill the enemy
|
||||||
|
Loading…
Reference in New Issue
Block a user