reefboy1
Jan 26, 2015 - 05:39
this is an update to my game. I would have posted my update in the comments of this post but it glitches so I made this one:
coding: utf-8
import sound
import speech
import console
rate=.1
lang='en-US'
console.set_font('Futura-CondensedExtraBold')
print('say shoot')
console.set_font('Cousine-Bold')
d = raw_input('Enter a number 1-3')
if d == '1':
print(' ö')
print(' -|-')
print(' | |')
gun = '''
•
|^|
| |
| |)___
\_____|'''
op = raw_input(' ')
if op == 'shoot':
print(gun)
sound.play_effect('Laser_6')
speech.say('Fireing Sir',lang,rate)
elif d == '2':
console.set_font('Cousine-Bold')
print(' ö ')
print('-|-')
print('| |')
gun = '''
•
|^|
| |
| |)___
\_____|'''
op = raw_input(' ')
if op == 'shoot':
print(gun)
sound.play_effect('Laser_6')
speech.say('Fireing Sir',lang,rate)
elif d == '3':
rate=.1
lang='en-US'
console.set_font('Copperplate')
guy = '''
ö
-|-
| |'''
console.set_font('Cousine-Bold')
gun = '''
•
|^|
| |
| |)___
\_____|'''
print(guy)
op = raw_input(' ')
if op == 'shoot':
print(gun)
sound.play_effect('Laser_6')
speech.say('Fireing Sir',lang,rate)