-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsuperheroes.py
113 lines (93 loc) · 3.56 KB
/
superheroes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#####################################################################
# Team Edge objects: SUPERHERO CHALLENGES
#
# In self challenge you are going to modify self code to do the
# the following below. Before you begin, walkthrough the code
# with your coaches.
#
# 1. Change both superhero and nemesis using same class.
# 2. Change the variables to modify gameplay and see how it affects
# the game outcomes.
# 3. Make any improvements you think would make self game better.
# 4. Complete all the comments to demonstrate you understand the code
# Be specific about what each code block is doing.
#
#
# ###############################################################/
import random
from time import sleep
print("------------------- SUPERHERO !! -------------------")
DELAY = 3
DAMAGE_LIMIT = 5
MAJOR_BLOW = DAMAGE_LIMIT -2
LIVES_TOP_RANGE = 60
LIVES_BOTTOM_RANGE = 40
rounds = 1
game_is_on = True
#COMMENT 1:
class Superhero:
def __init__(self, name=None, is_alive=None, friends=None, hit_points=None, is_good=None, attack_power=None):
self.name = name
self.is_alive = is_alive
self.taunts=[]
self.cries=[]
self.lives = []
def attack(self, enemy):
global game_is_on
#COMMENT 2 ....
if self.is_alive and enemy.is_alive:
print(" \n ")
damage = random.randint(0,DAMAGE_LIMIT)
enemy.lives = enemy.lives[:len(enemy.lives) - damage]
if damage >= MAJOR_BLOW:
print("Major Blow!")
#COMMENT 3....
print(f"{self.name} 💬 \: {self.taunts[random.randint(0,len(self.taunts) -1)]} \n")
print(f"{self.name} 💥X {damage} {enemy.name} {enemy.lives} \: {len(enemy.lives)} \n")
if len(enemy.lives) <= 0:
#COMMENT 4....
enemy.is_alive=False
game_is_on=False
print(f"💀💀💀💀💀💀 {enemy.name} has been slain!!! 💀💀💀💀💀 ")
print("GAME OVER")
if len(self.lives) <= 0:
self.is_alive = False
game_is_on = False
print(f"💀💀💀💀💀💀 {self.name} has been slain!!! 💀💀💀💀💀")
print(" GAME OVER ")
def fill_health(self):
#COMMENT 5....
amt = random.randint(LIVES_BOTTOM_RANGE, LIVES_TOP_RANGE)
for i in range(0, amt):
self.lives.append("💙")
#COMMENT 6....
batman = Superhero()
batman.name="Batman 🦸♂️"
batman.is_alive = True
batman.lives=[]
batman.taunts=["The Dark Knight always wins!" , "You can't hang with the bat man" , "Meet my fist, scumbag" , "You Suck!"]
batman.cries=["Ouch!" , "UFF!" , "Gaaaaaaa" , "No!!!!!"]
batman.fill_health()
joker = Superhero()
joker.name = "Joker 🦹♂️"
joker.is_alive = True
joker.lives=[]
joker.taunts =["You are a schmemer" , "Don't mess with the Joker!" , "Pick your face off the ground, you might need it!", "Getting tired of the beatings?"]
joker.cries = ["Aaaa!" , "Goh!" , "Hmph!" ,"You will pay for self"]
joker.fill_health()
print(f"{joker.name} : {joker.lives} - {len(joker.lives)}")
print(f"{batman.name} : {batman.lives} - {len(batman.lives)}")
print(f"{batman.name} 💬 {batman.taunts[1]} \n")
print(f"{joker.name} 💬 {joker.taunts[1]} \n")
#COMMENT 7....
def fight(a, b):
global rounds
print(" ------------- ROUND -------------> " + str(rounds))
a.attack(b)
b.attack(a)
rounds += 1
#COMMENT 8....
while game_is_on:
fight(batman,joker)
print(" \n")
sleep(DELAY)