-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
> Added fade
- Loading branch information
Showing
62 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/bins | ||
/__pycache__ |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -59,11 +59,21 @@ def invalid(): | |
#Makes an infinite reapeating loop | ||
while True: | ||
if keyboard.read_key() == "q":#Detects if the user presses a button on their keyboard in this case its 'q' | ||
cls() | ||
print("Made by Xanthus In my spare time") | ||
enter() | ||
print("Check out my other works at https://github.com/Xanthus58") | ||
enter() | ||
print("Email me on '[email protected]'") | ||
enter() | ||
print("Feel free to fork; submit issues; or otherwise interact with the project here!") | ||
print("https://github.com/Xanthus58/Valorant-Randomizer") | ||
time.sleep(5) | ||
break #Closes the application | ||
#When "C" is pressed it will show my credits | ||
elif keyboard.read_key() == "a": #Registers keyboard inputs in this case its the letter "A" | ||
#Lists all of the current agents in the game, in colour | ||
agents = [Fore.YELLOW + 'Breach, ',Fore.YELLOW + 'Killjoy, ',Fore.BLUE + 'Neon, ',Fore.MAGENTA + 'Astra, ',Fore.YELLOW + 'Brimstone, ',Fore.YELLOW + 'Chamber, ','Cypher, ',Fore.BLUE + 'Jett, ',Fore.BLUE + 'Kayo, ',Fore.MAGENTA + 'Omen, ',Fore.YELLOW + 'Phoenix, ',Fore.YELLOW + 'Raze, ',Fore.MAGENTA + 'Reyna, ',Fore.GREEN + 'Sage, ',Fore.GREEN + 'Skye, ',Fore.BLUE + 'Sova, ',Fore.GREEN + 'Viper, ',Fore.BLUE + 'Yoru, '] | ||
agents = [Fore.YELLOW + 'Breach, ',Fore.YELLOW + 'Killjoy, ',Fore.BLUE + 'Neon, ',Fore.MAGENTA + 'Astra, ',Fore.YELLOW + 'Brimstone, ',Fore.YELLOW + 'Chamber, ','Cypher, ',Fore.BLUE + 'Jett, ',Fore.BLUE + 'Kayo, ',Fore.MAGENTA + 'Omen, ',Fore.YELLOW + 'Phoenix, ',Fore.YELLOW + 'Raze, ',Fore.MAGENTA + 'Reyna, ',Fore.GREEN + 'Sage, ',Fore.GREEN + 'Skye, ',Fore.BLUE + 'Sova, ',Fore.GREEN + 'Viper, ',Fore.BLUE + 'Yoru, ',Fore.RED + 'Fade, '] | ||
#Displays a message on singular or team selection | ||
cls() | ||
print("Press 1 to generate a singular Agent.") | ||
|