untitledcyberbonk2077/app.py

56 lines
2.4 KiB
Python
Raw Normal View History

2025-01-12 16:19:11 +01:00
from engine import Engine
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
# ENGINE SECTION
2025-01-12 16:19:11 +01:00
eng = Engine()
2025-01-13 21:52:14 +01:00
# GAME SECTION
game = Game()
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)
loop = True
while loop is True:
logo()
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")
# breakpoint()
timetochoose = input(">___ ")
if timetochoose == "Q" or timetochoose == "q":
loop = False
elif timetochoose == "F" or timetochoose == "f":
print("### tutaj będzie fight mode ###")
# game.figth_mode()
elif timetochoose == 'C' or timetochoose == 'c':
player.show_stats()