[TDM] various text fixes

This commit is contained in:
theelk801 2025-04-28 11:08:42 -04:00
parent caa4e432ea
commit 0b5144d0d2
28 changed files with 106 additions and 98 deletions

View file

@ -9,6 +9,7 @@ import mage.constants.SubType;
import mage.constants.Zone;
import mage.game.ExileZone;
import mage.game.Game;
import mage.util.CardUtil;
import java.util.Arrays;
import java.util.List;
@ -166,7 +167,7 @@ class AdventureCardSpellAbility extends SpellAbility {
+ " "
+ getManaCosts().getText()
+ " — "
+ super.getRule(false) // without cost
+ CardUtil.getTextWithFirstCharUpperCase(super.getRule(false)) // without cost
+ " <i>(Then exile this card. You may cast the creature later from exile.)</i>";
}