-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTamagotchi.py
240 lines (173 loc) · 6.55 KB
/
Tamagotchi.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
from random import randint
from time import sleep
class Tamagotchi:
def __init__(self, nombre):
#Parametro
self.nombre = nombre
#Atributos cuidado
self.hambre = 0
self.aburrimiento = 0
self.cansancio = 0
self.suciedad= 0
self.comida = 2
self.dormido = False
self.vivo = True
def comer(self):
if(self.comida):
self.comida -= 1
self.hambre -= randint(1,4)
print(f"Tu tamagochi {self.nombre} ha comido")
else:
print("No hay comida disponible")
if self.hambre < 0:
self.hambre = 0
def jugar(self):
num_random = randint(0,2)
print(f"{self.nombre} quiere jugar...")
respuesta= int(input("Elige uno:\n 0: Piedra\n 1: Papel\n 2: Tijeras "))
valores = {
0:"Piedra",
1:"Papel",
2:"Tijeras"
}
print(num_random)
print(respuesta)
if num_random == respuesta:
print(f"{self.nombre} y tu habeis empatado")
else:
if (num_random == 0 and respuesta == 1) or (num_random == 1 and respuesta == 2) or (num_random == 2 and respuesta == 0):
print(f"{self.nombre} ha sacado {valores[num_random]}, has ganado!")
self.aburrimiento -= 1
else:
print(f"{self.nombre} ha sacado {valores[num_random]}, te ha ganado!")
self.aburrimiento -= 3
if self.aburrimiento < 0:
self.aburrimiento = 0
print("Quieres jugar otra?")
otra = int(input("1: Si\n0: No\n"))
if otra:
self.jugar()
def dormir(self):
self.dormido = True
self.cansancio = 0 if self.cansancio - 3 < 0 else self.cansancio - 3
self.aburrimiento = 0 if self.aburrimiento - 2 < 0 else self.aburrimiento - 3
print(f"{self.nombre} esta durmiendo...")
def despertar(self):
num = randint(0,2)
if num == 0:
print(f"{self.nombre} se ha despertado")
self.dormido = False
self.aburrimiento = 0
else:
print(f"{self.nombre} sigue durmiendo")
self.dormir()
def ducha(self):
self.suciedad = 0
print(f"{self.nombre} ha tomado una ducha")
def buscar_comida(self):
comida_encontrada = randint(0,4)
self.comida += comida_encontrada
self.suciedad += 2
print(f"{self.nombre} ha encontrado {comida_encontrada} comidas!")
def mostrar_valores(self):
print(f"Nombre: {self.nombre}")
print(f"Hambre: {self.hambre}")
print(f"Aburrimiento: {self.aburrimiento}")
print(f"Cansancio: {self.cansancio}")
print(f"Comida: {self.comida}")
print(f"Dormido: {self.dormido}")
print(f"Suciedad: {self.suciedad}")
def dificultad(self,nivel = 1):
if(nivel < 1 | nivel > 5):
print("Nivel no valido, prueva de nuevo")
return
self.hambre += randint(0,nivel)
self.suciedad += randint(0,nivel)
if not(self.dormido):
self.aburrimiento += randint(0,nivel)
self.cansancio += randint(0,nivel)
def morir(self):
if self.hambre >= 10:
print(f"{self.nombre} murio de hambre")
self.vivo = False
if self.suciedad >= 10:
print(f"{self.nombre} murio de una infección")
self.vivo = False
if self.aburrimiento >= 10:
print(f"{self.nombre} está muy aburrido y ser durmió")
self.aburrimiento = 10
self.dormido = True
if self.cansancio >= 10:
print(f"{self.nombre} está muy cansado y se durmió")
self.cansancio = 10
self.dormido = True
def mostrar_menu (tamagotchi):
if not(tamagotchi.dormido):
print("""
Presiona 1: Comer
Presiona 2: Jugar
Presiona 3: Dormir
Presiona 4: Ducha
Presiona 5: Buscar Comida
""")
option = input()
if option.isnumeric():
option = int(option)
if not(option in [1,2,3,4,5]):
return
else:
print("Opción no valida")
return
return option
else:
print(f"{tamagotchi.nombre} esta dormido... Presiona 6")
option = input()
if option != "6": option = "6"
return int(option)
def llamar_accion(tamagotchi,option):
if option == 1:
tamagotchi.comer()
elif option == 2:
tamagotchi.jugar()
elif option == 3:
tamagotchi.dormir()
elif option == 4:
tamagotchi.ducha()
elif option == 5:
tamagotchi.buscar_comida()
elif option == 6:
tamagotchi.despertar()
else:
print("OPCIÓN NO VALIDA")
def pedir_nivel ():
while True:
nivel = input("Introduce el nivel de dificultad del 1 al 5 : ")
if nivel in ["1","2","3","4","5"]:
print("Nivel establecido en "+nivel)
return int(nivel)
else:
print("Entrada no válida, intentalo de nuevo!")
def main():
print("Tamagotchi en Python ")
print("En este proyecto he programado un tamagotchi basico para el manejor de funciones y clases en python")
nivel = pedir_nivel()
nombre = input("Introducce el nombre de tu tamagotchi: ")
mi_tamagotchi = Tamagotchi(nombre)
mi_tamagotchi.mostrar_valores()
ronda = 1
mi_tamagotchi.vivo = True
while mi_tamagotchi.vivo:
print("**********************")
print(f"Esta es la ronda {ronda}")
mi_tamagotchi.mostrar_valores()
print(" ****************")
llamar_accion(mi_tamagotchi, mostrar_menu(mi_tamagotchi))
print(" *****************")
print(f"Ronda nº: {ronda}")
mi_tamagotchi.mostrar_valores()
sleep(3)
mi_tamagotchi.dificultad(nivel)
mi_tamagotchi.morir()
print("**********************")
ronda +=1
main()