Add player health
This commit is contained in:
parent
01077b14bb
commit
d39971b852
3 changed files with 8 additions and 0 deletions
|
@ -44,9 +44,15 @@ class FightHandler:
|
|||
system("cls||clear")
|
||||
p = math.trunc(self.hp/self.max*10)
|
||||
h = "🟥"*p
|
||||
|
||||
j = math.trunc(self.my/30*10)
|
||||
a = "🟩"*j
|
||||
if str(p).endswith(".5"):
|
||||
h += "◾"
|
||||
if str(a).endswith(".5"):
|
||||
a += "◾"
|
||||
print(self.message)
|
||||
print(f"{self.lang['you']} {a} {self.my}/30")
|
||||
print(f"{self.name} {h} {self.hp}/{self.max}")
|
||||
if self.img != "":
|
||||
anim = AsciiAnimation()
|
||||
|
|
|
@ -33,6 +33,7 @@ playerdmg: "Nepřítel použil $name a poškodil tě za $atk bodů."
|
|||
defended: "Rozhodneš se bránit a nedostal jsi tak žádný zásah."
|
||||
defeated: "Porazil jsi $enemy."
|
||||
defeat: "$enemy tě zabil. Budeš to muset zkusit znovu."
|
||||
you: "Ty"
|
||||
|
||||
error_loading: 'Při načítání YAML souboru nastala chyba:'
|
||||
no_action: 'Chyba: žádná akce "$action" nenalezena v souboru hry'
|
||||
|
|
|
@ -33,6 +33,7 @@ playerdmg: "The enemy used $name to damage you by $atk"
|
|||
defended: "You decide to defend yourself and take no damage."
|
||||
defeated: "You have defeated $enemy."
|
||||
defeat: "$enemy has slain you. You'll have to try again."
|
||||
you: "You"
|
||||
|
||||
error_loading: 'An exception has occured while loading the game from the YAML file'
|
||||
no_action: 'Error: No action "$action" found in the game file.'
|
||||
|
|
Reference in a new issue