forked from webbshasta/pfb2019_VisuallyImpaired
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backbone.py
executable file
·38 lines (20 loc) · 816 Bytes
/
backbone.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
#!/usr/bin/env python
import user, weapon_choice #, personality_quiz
#intro
print('To begin please answer a few questions about yourself')
#quiz happens here
pigeon = user.User('Pigeon', 100, 60, 60, 40, set(), dict())
horseshoecrab = user.User('Horseshoe Crab', 100, 80, 50, 60, set(), dict())
slug = user.User('Banana Slug', 100, 40, 30, 80, set(), dict())
squirrel = user.User('Squirrel', 100, 50, 60, 60, set(), dict())
player.print_user_stats()
#======================================================
print('You find yourself on the Cold Spring Harbor Laboratories Campus')
#call the weapon choice script
weapon_choice.choose_weapon(player)
#==================================================
#while player.health > 0:
# first_encounter.raccoon(player)
#encounter 1
#encounter 2
#encounter 3