-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
43bafae
commit eb1a3a0
Showing
8 changed files
with
97 additions
and
35 deletions.
There are no files selected for viewing
Binary file added
BIN
+37.8 KB
...13_50_556378_WindowsGraphicsCaptureMethod_3840x2160_title_None_Clie_z8GnYut.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,39 @@ | ||
from ok.logging.Logger import get_logger | ||
|
||
from src.char.BaseChar import BaseChar | ||
|
||
logger = get_logger(__name__) | ||
|
||
|
||
class Encore(BaseChar): | ||
def do_perform(self): | ||
if self.has_intro: | ||
logger.info('Encore has_intro sleep') | ||
if self.has_intro and self.liberation_available(): | ||
self.click_liberation() | ||
self.sleep(2) | ||
self.normal_attack() | ||
self.sleep(.4) | ||
self.normal_attack() | ||
self.sleep(.4) | ||
self.normal_attack() | ||
self.sleep(.4) | ||
self.normal_attack() | ||
self.n4() | ||
self.click_resonance() | ||
self.n4() | ||
self.sleep(0.5) | ||
elif self.resonance_available(): | ||
self.click_resonance() | ||
self.sleep(0.2) | ||
elif self.echo_available(): | ||
self.click_echo() | ||
self.sleep(0.3) | ||
self.sleep(0.2) | ||
self.click_echo() | ||
self.sleep(0.2) | ||
self.click_echo() | ||
self.sleep(0.2) | ||
self.switch_next_char() | ||
|
||
def n4(self): | ||
self.normal_attack() | ||
self.sleep(.4) | ||
self.normal_attack() | ||
self.sleep(.4) | ||
self.normal_attack() | ||
self.sleep(.4) | ||
self.normal_attack() | ||
self.sleep(.4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters