feat: monster card

This commit is contained in:
istamarahsan 2025-01-26 09:48:01 +07:00
parent 3220f4937f
commit 46e4ba0fbb
5 changed files with 125 additions and 85 deletions

View file

@ -21,7 +21,7 @@ func show_monster(monster: MatchMonster):
return
name_label.text = monster.card.id
health_label.text = "HP %d" % [monster.health]
health_label.text = "HP %d/%d" % [monster.health, monster.card.base_health]
icon_texture_rect.texture = monster.card.icon
paper_damage.text = str(monster.card.paper)