# Name : Endgame 2 # Purpose : 11DGT # Author: Taylan Russell # Created : 29/02/2024 # Copyright : © Taylan Russell 29/02/2024 #------------------------------------------------------------------------ import random import time START_HP_CAP = 50 START_HP_THANOS = 100 cap_health = 0 thanos_health = 0 deflect = 0 thanos_sword = 0 cap_mjolnir = 0 cap_choice = " " play_again = "y" #Intro print("The sky grows darker as the army of Thanos moves closer.") time.sleep(2) print("Thor and Tony lie battered and motionless on the ground from the previous encounter.") time.sleep(3) print("It is up to you, Cap, to finish this. The fate of the universe is your weight to bare.") time.sleep(3) print("You stand there, hurt. But you have your shield in arm hand and wield Mjolnir in the other.") time.sleep(2) print("You are worthy, but will the power of Thor be enough....") time.sleep(2) print("You are in the ENDGAME now") time.sleep(1) while play_again > "y" : cap_health = START_HP_CAP thanos_health = START_HP_THANOS