adds mana cost to the card tooltip

This commit is contained in:
2025-04-29 07:01:46 -04:00
parent 6eb80f768b
commit 31175b4ecd
4 changed files with 25 additions and 13 deletions

View File

@ -41,6 +41,7 @@ func _load_data() -> Error:
card.card_info["name"] = card_json["name"]
card.card_info["type"] = card_json["type_line"]
card.card_info["desc"] = card_json["oracle_text"]
card.card_info["cost"] = card_json["mana_cost"]
return OK