Informática, perguntado por yudiniwagabriel, 8 meses atrás

O que você acha do meu código em Python?
Um jogo estilo Pou ainda não finalizado.

#Menu principal & declaração de variáveis & import

import os

xp=0

fome=50

lvl=0

hp=100

emocao=":/"

cat="° - °"

hpcomida=100

xpcomida=0

lvlcomida=0

fomecomida=100

emocaocomida=":/"

catcomida="° - °"

print(f''' ————————————————————————————————————————

/\_/\
({cat})
( )

——————————————————————————————
HP | Fome | XP | Lv | Emoção
——————————————————————————————
{hp} | {fome}% | {xp} | {lvl} | {emocao}
——————————————————————————————


╔━━━━━━━━━━━━━━━╣

┇➳ [1] - Dar comida

╟──────────────╯

┇➳ [2] - Dar banho

╟──────────────╯

┇➳ [3] - Levar para passear

╟──────────────╯

┇➳ [4] - Brincar

╟──────────────╯

┇➳ [0] - (Em breve)

╚━━━━━━━━━━━━━━━╣

''')

#Divisor

opc=input(''' -> Escolha uma opção: ''')

#Código e função da opção 1 (Dar comida)

def opc1():
print(f''' ————————————————————————————————————————

/\_/\
({catcomida})
( )

——————————————————————————————
HP | Fome | XP | Lv | Emoção
——————————————————————————————
{hpcomida} | {fomecomida}% | {xpcomida} | {lvlcomida} | {emocaocomida}
——————————————————————————————


╔━━━━━━━━━━━━━━━╣

┇➳ [1] - Amendoim | 1 XP

╟──────────────╯

┇➳ [2] - Bolo de chocolate | 5

╟──────────────╯

┇➳ [3] - Biscoito | 2 XP

╟──────────────╯

┇➳ [0] - Retornar ao menu principal

╚━━━━━━━━━━━━━━━╣''')

while opc=="1":
os.system('clear')
opc1()
opccomida=input(''' -> Escolha uma opção: ''')
if opccomida=="1":
os.system('clear')
emocaocomida=":)"
opc1()
if opccomida=="1":
os.system('clear')
xpcomida=xpcomida+1
catcomida="^ 3 ^"
opc1()
if xpcomida==10:
os.system('clear')
lvlcomida=lvlcomida+1
opc1()
if xpcomida==20:
os.system('clear')
lvlcomida=lvlcomida+1
opc1()
if xpcomida==30:
os.system('clear')
lvlcomida=lvlcomida+1
opc1()
if xpcomida==40:
os.system('clear')
lvlcomida=lvlcomida+1
opc1()
if xpcomida==50:
os.system('clear')
lvlcomida=lvlcomida+1
opc1()
if xpcomida==60:
os.system('clear')
lvlcomida=lvlcomida+1
opc1()
if xpcomida==70:
os.system('clear')
lvlcomida=lvlcomida+1
opc1()
if xpcomida==80:
os.system('clear')
lvlcomida=lvlcomida+1
opc1()
if xpcomida==90:
os.system('clear')
lvlcomida=lvlcomida+1
opc1()
if xpcomida==100:
os.system('clear')
lvlcomida="10 - MAX"
opc1()​

Soluções para a tarefa

Respondido por juliaester49
0

Resposta:

ficou muito bom ,parabéns

Perguntas interessantes