forked from bredeson/PnP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcombatwithcreatures.py
45 lines (38 loc) · 1.04 KB
/
combatwithcreatures.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
import re
import sys
import time
goblin = 20
gobatk = 2
prisoner = 40
attack = 5
import Creatures
Goblin = Creatures.Goblin()
while Goblin.hp > 0:
if prisoner < 1:
print('you have died; you little bitch')
break
elif Goblin.hp > 10:
print('You strike at the goblin dealing',attack,'damage')
#time.sleep(3)
Goblin.hp = Goblin.hp-attack
print('The goblin looks weakened, but still thriving. It has', Goblin.hp, 'health remaining')
#time.sleep(3)
prisoner = prisoner-Goblin.attack
print('The goblin hit you for', Goblin.attack, 'damage; your health is now',prisoner)
#time.sleep(3)
continue
elif Goblin.hp > 0:
print('You strike at the goblin dealing',attack,'damage')
#time.sleep(3)
Goblin.hp = Goblin.hp-attack
if Goblin.hp > 0:
print('The goblin is almost dead. It has', Goblin.hp, 'health remaining')
#time.sleep(3)
print('The goblin hit you for', Goblin.attack, 'damage; your health is now',prisoner)
#time.sleep(3)
prisoner = prisoner-Goblin.attack
else:
print('the goblin is dead')
break
else:
break