added i18n keys for ingame item descriptions and button prompts

This commit is contained in:
2025-08-20 19:30:30 +10:00
parent 198177bbae
commit 2859b6dd43
50 changed files with 297 additions and 114 deletions

View File

@@ -8,7 +8,7 @@ extends Control
func set_enemy(enemy: EnemyCard) -> void:
enemy_name.text = enemy.enemy.title
enemy_name.text = tr(enemy.enemy.title)
enemy_rarity.texture.region = Rect2(0.0, 92.0 - (23.0 * int(enemy.rarity)), 124.0, 23.0)
enemy_tex.texture = enemy.enemy.icon
if enemy.rarity == Data.Rarity.COMMON: