-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame2.py
582 lines (556 loc) · 17.7 KB
/
game2.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
import random, time, colorama, os
from colorama import Fore,Back,Style,init
#f open('text',r)
#r открытие на чтение
#w открытие на апись, если файл не существует создется новый
#inv.append(element)
#len(inv)>10
#
#
#
#
def menu():
inv = []
clear = lambda: os.system('cls')
init()
my_property = ""
my_property_int = 0
my_characteristic = ""
my_characteristic_int = 0
my_weapon = ""
weapon_color = ""
items = ""
chatacter = ""
total_damage = 0
start = 0
my_weapon_int = 0
print ("Добро пожаловать в игру.\n1. Начать новую игру \n2. Загрузить сохранение \n3. Выйти")
answer = input()
clear()
if (answer == "2"):
f = open ('save.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='life':
life = int(l[1])
if l[0]=='hp':
hp = int(l[1])
if l[0]== 'strength':
strength = int(l[1])
if l[0]== 'agility':
agility = int(l[1])
if l[0]== 'gold':
gold = int(l[1])
if l[0]== 'exp':
exp = int(l[1])
if l[0]== 'hexpp':
hexpp = int(l[1])
if l[0]== 'expp':
expp = int(l[1])
if l[0]== 'name':
name = l[1]
if l[0]== 'race':
race = l[1]
if l[0]== 'damage':
damage = l[1]
if l[0]== 'inventory':
for x in l:
if x =='inventory':
pass
else:
inv.append(x)
f.close()
print ("Сохранение успешно загружено")
start = 1# загрузка профиля
if(answer == "1"):
print ("Твое Имя")
name = input()
clear()
print ("Твоя раса")
print ("Расы: \n1. Ельф \n2. Орк \n3. Человек ")
rac = input()
clear()
if (rac == "3"):
strength = 5
agility = 5
hp = strength*30
damage = 30
race = "Человек"
if (rac == "1"):
agility = 7
strength = 30
hp = strength * 30
damage = 20
race = "Ельф"
if (rac == "2"):
agility = 3
strength = 7;
damage = 50
hp = strength * 30
race = "Орк"
exp = 1
hexpp = 0
expp = 8
life = hp
gold = 0
start = 1 # создание новго персоеажа
if (answer == "3"):
print("Спасибо за игру")
if (start == 1):
print(Fore.GREEN + "Твой герой:")
print("Имя:",name)
print("Раса:",race)
print("Сила:",strength)
print("Ловкость:",agility)
print("Золото:",gold)
print("Уровень: ", exp," ",hexpp , "из" , expp)
print("Сила удара: ", damage)
print ("Что бы выйти введи используйте сочетание CTRL + C", Style.RESET_ALL)
stamina = 10
choice = input()
clear()
while (True):
level = random.randint(0, 4)
if (stamina < 10):
stamina = stamina + 1
if (level == 0):
print("Ты встретил человека, ты можешь просто уйти или начать драку\n 1. Начать драку \n 2. Уйти")
enemyhp = 150
enemystrength = random.randint(5+exp,10+exp)
enemyagility = random.randint(5+exp,10+exp)
choice = input()
clear()
if(choice == "1"):
while (enemyhp > 0):
print(Fore.RED + "Выбери стиль атаки: \n 1. Тяжелый удар\n 2. Средний удар\n 3. Легкий удар \n 4. Попытаться убежать "+ Style.RESET_ALL)
choice = input()
clear()
if (choice == "1" and stamina -3 >= 0):
stamina = stamina - 3
enemyhp = enemyhp - damage*2
if (choice == "2" and stamina-2 >= 0):
stamina = stamina - 2
enemyhp = enemyhp - damage*1,5
if (choice == "3" and stamina-1 >= 0):
stamina = stamina - 1
enemyhp = enemyhp - damage*1
elif(stamina<1):
print("У тебя кончилась стамина, пора бежать")
if(enemyhp > 0):
print("Тебя атакуют")
hp = hp - enemystrength*15
print("Хп врага:",enemyhp,"Твои хп и стамина",hp,", ",stamina)
choice = input()
clear()
if(hp < 0 ):
print(Fore.MAGENTA + "Ты умер"+ Style.RESET_ALL)
break
if (enemyhp < 0):
print (Back.CYAN + "Ты выиграл" + Style.RESET_ALL)
gold = gold + 1
hexpp = hexpp + 2
if (hexpp >= expp):
exp = exp +1
expp = expp + 4
hexpp = 0
agility = agility + 1
strength = strength + 1
life = strength * 30
if (choice == "4"):
if(agility < enemyagility):
print(Fore.MAGENTA + "Ты умер"+ Style.RESET_ALL)
break
choice = input()
clear()
if (choice == "stop"):
break#встреча с человеком
if (level == 1):
print("Ты встретил орка, он сильный, но тупой.\n 1. Начать драку \n 2. Убежать")
enemyhp = 200
enemystrength = random.randint(7+exp,12+exp)
enemyagility = random.randint(1+exp,6+exp)
choice = input()
clear()
if(choice == "1"):
while (enemyhp > 0):
print(Fore.RED + "Выбери стиль атаки: \n 1. Тяжелый удар\n 2. Средний удар\n 3. Легкий удар \n 4. Попытаться убежать "+ Style.RESET_ALL)
choice = input()
clear()
if (choice == "1" and stamina -3 >= 0):
stamina = stamina - 3
enemyhp = enemyhp - damage*2
if (choice == "2" and stamina-2 >= 0):
stamina = stamina - 2
enemyhp = enemyhp - damage*1,5
if (choice == "3" and stamina-1 >= 0):
stamina = stamina - 1
enemyhp = enemyhp - damage*1
elif(stamina < 1 ):
print("У тебя кончилась стамина, пора бежать")
if(enemyhp > 0):
print("Тебя атакуют")
hp = hp - enemystrength*20
print("Хп врага: ",enemyhp,"Твое хп и стамина: ",hp,", ",stamina)
choice = input()
clear()
if(hp < 0 ):
print(Fore.MAGENTA + "Ты умер"+ Style.RESET_ALL)
break
if (enemyhp < 0):
print (Back.CYAN + "Ты выиграл" + Style.RESET_ALL)
gold = gold + 3
hexpp = hexpp + 3
if (hexpp >= expp):
exp = exp +1
expp = expp + 4
agility = agility + 1
hexpp = 0
strength = strength + 1
life = strength * 30
if (choice == "4"):
if(agility < enemyagility):
print(Fore.MAGENTA + "Ты умер"+ Style.RESET_ALL)
break
else:
if(enemyagility > agility):
print(Fore.MAGENTA + "Ты умер"+ Style.RESET_ALL)
break
else:
print("Ты убежал")
choice = input()
clear()#встреча с огроморк
if (level == 2):
print("Ты встретил эльфа, ты можешь убить его или сбежать от него \n1. Начать драку \n2. Убежать")
enemyhp = 100
enemystrength = random.randint(1+exp,6+exp)
enemyagility = random.randint(7+exp,12+exp)
choice = input()
if(choice == "1"):
while (enemyhp > 0):
print(Fore.RED +"Выбери стиль атаки \n 1. Тяжелый удар\n 2. Средний удар\n 3. Легкий удар \n 4. Попытаться убежать"+ Style.RESET_ALL)
choice = input()
clear()
if (choice == "1" and stamina -3 >= 0):
stamina = stamina - 3
enemyhp = enemyhp - damage*2
if (choice == "2" and stamina-2 >= 0):
stamina = stamina - 2
enemyhp = enemyhp - damage*1,5
if (choice == "3" and stamina-1 >= 0):
stamina = stamina - 1
enemyhp = enemyhp - damage*1
elif(stamina < 1):
print("У тебя кончилась стамина, пора бежать")
if(enemyhp > 0):
print("Тебя атакуют")
hp = hp - enemystrength*10
print("Enemy hp: ",enemyhp,"your hp, stamina: ",hp,", ",stamina)
choice = input()
clear()
if(hp < 0 ):
print(Fore.MAGENTA + "Ты умер"+ Style.RESET_ALL)
break
if (enemyhp <= 0):
print (Back.CYAN + "Ты выиграл" + Style.RESET_ALL)
gold = gold + 1
hexpp = hexpp + 1
if (hexpp >= expp):
exp = exp +1
expp = expp + 4
agility = agility + 1
strength = strength + 1
hexpp = 0
life = strength * 30
if (choice == "4"):
if(agility < enemyagility):
print(Fore.MAGENTA + "Ты умер"+ Style.RESET_ALL)
break
else:
if(enemyagility > agility):
print(Fore.MAGENTA + "Ты умер"+ Style.RESET_ALL)
break
else:
print("Ты спас свою жизнь")
choice = input()
clear()
if (choice == "stop"):
break#встреча с эльфомельф
if (level == 3):
print (Fore.YELLOW + "Ты нашел заброшенный лагерь \n1. Обыскать лагерь \n2. Не обыскивать" + Style.RESET_ALL)
t = input()
clear()
if (t == "1"):
randgold = random.randint(0,3)
if (randgold == 0):
print ("Ты ничего не нашел")
elif(randgold == 1 or 2 or 3 ):
print ("Ты нашел золотую монету")
gold = gold+1
print("Хочешь продолжить искать хабар? \n1. Да \n2. Нет")
choice = input()
clear()
if (choice == "1"):
randproperty = random.randint(1, 100)
if (randproperty < 51 ):
f = open ('property.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]== 'common':
my_property = (l[0])
my_property_int = int(l[1])
if (randproperty > 50 and randproperty < 76):
f = open ('property.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='uncommon':
my_property = (l[0])
my_property_int = (int(l[1]))
f.close()
if (randproperty > 75 and randproperty < 89):
f = open ('property.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='rare':
my_property = (l[0])
my_property_int = (int(l[1]))
f.close()
if (randproperty > 88 and randproperty < 98):
f = open ('property.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='epic':
my_property = (l[0])
my_property_int = (int(l[1]))
f.close()
if (randproperty > 97 ):
f = open ('property.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='legendary':
my_property = (l[0])
my_property_int = (int(l[1]))
f.close()
randcharacteristic = random.randint(0,3)
if (randcharacteristic == 0):
f = open ('characteristic.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='тупой':
my_characteristic = (l[0])
my_characteristic_int = (int(l[1]))
f.close()
if (randcharacteristic == 1):
f = open ('characteristic.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='колючий':
my_characteristic = (l[0])
my_characteristic_int = (int(l[1]))
f.close()
if (randcharacteristic == 2):
f = open ('characteristic.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='шипастый':
my_characteristic = (l[0])
my_characteristic_int = (int(l[1]))
f.close()
if (randcharacteristic == 3):
f = open ('characteristic.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='острый':
my_characteristic = (l[0])
my_characteristic_int = (int(l[1]))
f.close()
randname = random.randint(1,100)
'''
f = open ('items.txt','r')
w = f.read()
list = w.split("\n")
q = choice(list)
e = q.split(' ')
my_weapon = e[0]
'''
if (randname < 51):
f = open ('items.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='нож':
my_weapon = l[0]
my_weapon_int = (int(l[1]))
f.close()
if (randname > 50 and randname < 80):
f = open ('items.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='меч':
my_weapon = l[0]
my_weapon_int = (int(l[1]))
f.close()
if (randname >79 and randname < 100):
f = open ('items.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='бритва':
my_weapon = l[0]
my_weapon_int = (int(l[1]))
f.close()
if (randname == 100):
f = open ('items.txt','r')
w = f.read()
list = w.split("\n")
for q in list:
l = q.split(' ')
if l[0]=='заточка':
my_weapon = l[0]
my_weapon_int = (int(l[1]))
f.close()
total_damage = my_characteristic_int * my_property_int + my_weapon_int
if (my_property == "uncommon"):
weapon_color = Fore.GREEN
if (my_property == "rare"):
weapon_color = Fore.CYAN
if (my_property == "epic"):
weapon_color = Fore.MAGENTA
if (my_property == "legendary"):
weapon_color = Fore.RED
if (my_property == "common"):
weapon_color == Style.RESET_ALL
print ("Вы нашли оружие: " + weapon_color + my_property + " " + my_characteristic + " " + my_weapon + Style.RESET_ALL + ", и его урон равен: " + str(total_damage) + "\n1. Положить в инвентрь \n2. Выбросить")
t = input()
if (t == "1"):
if "" in inv:
i = 0
for x in inv:
if(x == ""):
inv[i] = weapon_color + my_property + "&" + my_characteristic + "&" + my_weapon + Style.RESET_ALL
i = i + 1
else:
inv.append(weapon_color + my_property + "&" + my_characteristic + "&" + my_weapon + Style.RESET_ALL)
print ("Вы успешно положили предмет в инвентарь")
t = input()
print("1. Надеть новое оружие \n2. Оставить старое")
choice = input()
if (choice == "1"):
damage = total_damage
while (t != "3"):
clear()
print ("1. Использовать аптечку. \n2. Поспать (сохраниться)\n3. Покинуть лагерь")
t = input()
clear()
if (t == "1" ):
for x in range(0,len(inv)):
if(inv[x]=="healing"):
print("Ты успешно полечился")
inv[x] = ""
if(hp+50>=life):
hp=life
else:
hp=hp+50
break
else:
print("У тебя нет аптечки")
if (t == "2"):
f = open('save.txt','w')
n = ""
for word in inv:
n = n + word + " "
s = "life " + str(life)+"\nhp "+str(hp) + "\nstrength " + str(strength) + "\nagility " + str(agility) +"\ndamage"+str(damage)+"\ngold " + str(gold) + "\nexp " + str(exp) + "\nhexpp " + str(hexpp) + "\nexpp " + str(expp) + "\nname " + name + "\nrace " + race + "\ninventory " + n
f.write(s)
f.close()
print("Ты успешно поспал")
if (level==4):
t = ""
while (t!="7"):
print(Fore.MAGENTA +"Ты в магазине ты можешь купиь: \n1. Броню(1)\n2. Ботинок(1)\n3. Заточить оружие(2) \n4. Вылечить раны(2)\n5. Хилку(1)\n6. Посмотреть инвентарь \n7. Выйти \n8. Продать вещь" +Style.RESET_ALL)
print(Fore.GREEN + "Your hero:")
print("Name:"+name)
print("Race:"+race)
print("Strength:",strength)
print("Agility:",agility)
print("Gold:",gold)
print("HP:",hp)
print("Уровень: ", exp," ",hexpp , "из" , expp, Style.RESET_ALL)
t = input()
clear()
if (t == "1" ):
if (gold-1 < 0):
print("Нужно больше золота")
else:
strength = strength + 1
gold = gold - 1
life = strength * 30
print("Ты купил броню")
t = input()
if (t == "2"):
if (gold-1 < 0):
print("Нужно больше золота")
else:
agility = agility + 1
gold = gold - 1
print("Ты купил ботинки")
t = input()
if (t == "3"):
if (gold-2 < 0):
print("Нужно больше золота")
else:
damage = damage +2
gold = gold - 2
life = strength * 30
t = input()
print("Ты заточил оружие ")
if (t == "4" ):
if (gold-2 < 0):
print("Нужно больше золота")
else:
gold = gold - 2
hp = life
print("Ты вылечил раны")
t = input()
if (t == "5" and gold-1 >= 0):
if "" in inv:
for x in range(0,len(inv)):
if(inv[x]==""):
gold = gold - 1
inv[x] = "healing"
print ("Ты купил аптечку")
else:
inv.append("healing")
if (t == "6"):
clear()
print ("Твои вещи")
for x in range(0,len(inv)):
print(inv[x].replace("&"," "))
if (t == "stop"):
break# магазинмагазин
if (hp < 0):
print ("GG")
break
menu()