Added decent remix system

This commit is contained in:
2025-08-23 20:27:22 +10:00
parent 57a57d2b91
commit 16c92a4903
68 changed files with 885 additions and 678 deletions

View File

@@ -20,8 +20,8 @@ func set_card(value: Card) -> void:
func process_card_text(card_text: CardText) -> String:
var processed_string: String = card_text.text
for stat: StatAttribute in card_text.attributes:
processed_string = processed_string.replace(stat.key, str(stat.value))
for key: String in card_text.attributes:
processed_string = processed_string.replace(key, str(card_text.attributes[key]))
processed_string = processed_string.replace("%", "")
return processed_string