import random import time health_potions = 3 # Corvus Glaive corvusHP = 100 corvusATK = 1 corvusDEF = 13 corvusDAM = 0 corvusEXP = 100 # Ebony Maw ebonyHP = 80 ebonyATK = 4 ebonyDEF = 1 ebonyDAM = 0 ebonyEXP = 300 # Proxima Midnight proxHP = 150 proxATK = 1 proxDEF = 14 proxDAM = 0 proxEXP = 200 # Cull Obsidian cullHP = 250 cullATK = 2 cullDEF = 17 cullDAM = 0 cullEXP = 50 # Thanos thanosHP = 1000 thanosATk = 5 thanosDEF = 30 thanosDAM = 0 thanosEXP = 1000 thanosMOVE = 0 player_choice = " " playerHP = 50 playerATK = 0 playerDEF = 13 bigpots = 5 while playerHP > 0: Username = input("ENTER YOUR USERNAME: ") print("Greetings mighty hero " + Username) time.sleep(2) print("Choose Who you would like to battle: Thanos, danger 10/10, Ebony, danger 8/10, Proxima, danger 7/10, Cull, Danger 5/10, and Corvius, Danger 4/10") fight = input("Your choice? ") if fight == "corvius": print("Oh yes the almighty Thanos, this battle will be legendary") time.sleep(2) print("You are face to face with Thanos....") print("You have:{} HP".format(playerHP)) print("Thanos has:{}HP".format(thanosHP)) time.sleep(2) print() print("Possible Actions:") print("[s]Attack with your sword") print("[a]Attack with your axe") print("[p]Drink a healing potion") print("[d]Defend your sheild") player_choice = input("Your choice?") if player_choice == "s": print("")