untitledcyberbonk2077/app.py

68 lines
2.8 KiB
Python
Raw Normal View History

2025-01-13 21:52:14 +01:00
from game import Game
2025-01-12 16:19:11 +01:00
from player import Player
from enemy import Enemy
2025-01-13 21:52:14 +01:00
# GAME SECTION
game = Game()
2025-01-20 21:21:47 +01:00
STATs = game.stats()
2025-01-13 21:52:14 +01:00
2025-01-12 16:19:11 +01:00
# PLAYER SECTION
player = Player("キーウィ")
# DUMMY SECTION
dummykid = Enemy()
2025-01-13 21:52:14 +01:00
def logo():
logo = """
"""
print(logo)
2025-01-20 21:21:47 +01:00
def menu():
running = True
while running:
if player is False:
print("--- CREATE CHARACTER ___")
game.create_character()
else:
print(f"--- HELLO {player.name} ___")
print("--- WARNING, TEST MODE ___")
print("? What you would like to do today?")
print("戦う [f]ight mode")
print("顔 show [c]haracter")
timetochoose = input(">___ ")
if timetochoose == "Q" or timetochoose == "q":
running = False
break
elif timetochoose == "F" or timetochoose == "f":
game.clean_screen()
winorloose = game.figth_mode(player, dummykid)
if winorloose == 0:
print("### BRAK WALKI ###")
else:
print("LET'S FIGHT")
elif timetochoose == "C" or timetochoose == "c":
game.clean_screen()
player.show_stats(stats=STATs)
def main():
game.clean_screen()
2025-01-13 21:52:14 +01:00
logo()
2025-01-20 21:21:47 +01:00
menu()
if __name__ == "__main__":
main()