-
Notifications
You must be signed in to change notification settings - Fork 0
/
The Taco Maker 9000.py
112 lines (97 loc) · 3.25 KB
/
The Taco Maker 9000.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
### taco generator stuff
### taco salad generator stuff also
### include translations n stuff
### make real tacos
import random
import time
shells = [
"Hard Shell, ",
"Soft Shell, "
]
meat = [
"Shredded Pork, ",
"Beef, ",
"Chicken, ",
"Grilled Steak, ",
"Fish, "
]
beans = [
"Black Beans, ",
"Pinto Beans, "
]
veggies = [
"Shreded Lettuce, ",
"Tomatoes, ",
"Red Bell Peppers, ",
"Green Bell Peppers, ",
"Yellow Bell Peppers, ",
"Banana Peppers, ",
"Jalapeños Peppers, ",
"Cilantro, ",
"Onions, "
]
toppings = [
"Guacamole",
"Pico De Gallo",
"Sour Cream",
"Shredded Cheese"
]
taco_graphic = r'''
-----------╭╯╭╯╭╯------------- _____ _____ _ _
----/▔▔▔▔▔▔▔▔▔\▔\--- |_ _| |_ _| | | | |
---/ --╭╮--╭╮-- \╮ \--- | | __ _ ___ ___ | |_ _ ___ ___ __| | __ _ _ _| |
---▏ ..________.. ▕╮▕--- | |/ _` |/ __/ _ \ | | | | |/ _ \/ __|/ _` |/ _` | | | | |
---▏ ▕╮▕--- | | (_| | (_| (_) | | | |_| | __/\__ \ (_| | (_| | |_| |_|
---▏ .. \____╱ .. ▕╮▕--- \_/\__,_|\___\___/ \_/\__,_|\___||___/\__,_|\__,_|\__, (_)
---\____________________\/---- __/ |
|___/
'''
print(taco_graphic)
print("Hola! ")
print("(Hello!) ")
input("\nContinue... ")
print("\nTienes hambre? ")
print("(Ya hungry?) ")
input("\nContinue... ")
print("\n¿Quieres un taco? ")
print("(Want a Taco?) ")
input("\nContinue... ")
print("\nEste magico script hara un taco para usted, ")
print("No realmente, pero usted entiende. ")
print("(This magical script will make a taco for you, ) ")
print("(not really, but you understand.) ")
input("\nContinue... ")
print("\nHACIENDO")
time.sleep(1)
print("TACO")
time.sleep(0.5)
print("beep")
time.sleep(0.5)
print("boop")
time.sleep(0.5)
print("\nUsted tendra un(You'll have a ) " + random.choice(shells) + "con(with ) " + random.choice(meat) + random.choice(beans) + random.choice(veggies) + random.choice(veggies) + random.choice(veggies) + "y(and ) " + random.choice(toppings) + "." )
while True:
want_another = input("\nEse le debería sostener. ¿Quieres otro? (si or no) \nThat should hold you. Want another? (yes or no) ")
if want_another == 'si':
print("\n¡Bien! ¡Otro! \nAlright! Another! ")
time.sleep(1)
print("\nHACIENDO")
time.sleep(1)
print("OTRO")
time.sleep(0.5)
print("beep")
time.sleep(0.5)
print("boop\n")
time.sleep(0.5)
print("\nUsted tendra un(You'll have a ) " + random.choice(shells) + "con(with ) " + random.choice(meat) + random.choice(beans) + random.choice(veggies) + random.choice(veggies) + random.choice(veggies) + "y(and ) " + random.choice(toppings) + "." )
if want_another == 'no':
print("\nBien, gracias por usar el Taco Maker 9000! \n(Alright, thank you for using the Taco Maker 9000!) ")
time.sleep(1)
print("GRACIAS!")
time.sleep(0.5)
print("beep")
time.sleep(0.5)
print("boop")
time.sleep(0.5)
input("\nDisfruta de tu taco. \n(Enjoy your taco.) ")
exit(0)