This commit is contained in:
xenohedron 2024-02-03 17:04:58 -05:00
parent b72a853390
commit 643f168658
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ class IllTimedExplosionEffect extends OneShotEffect {
IllTimedExplosionEffect() { IllTimedExplosionEffect() {
super(Outcome.Benefit); super(Outcome.Benefit);
staticText = "Then you may discard two cards. When you do, {this} deals X damage to each creature, " + staticText = "Then you may discard two cards. When you do, {this} deals X damage to each creature, " +
"where X is the highest mana value among the discarded cards"; "where X is the greatest mana value among cards discarded this way";
} }
private IllTimedExplosionEffect(final IllTimedExplosionEffect effect) { private IllTimedExplosionEffect(final IllTimedExplosionEffect effect) {

View file

@ -36,7 +36,7 @@ import mage.players.Player;
public final class YarusRoarOfTheOldGods extends CardImpl { public final class YarusRoarOfTheOldGods extends CardImpl {
private static final FilterCreaturePermanent filter = private static final FilterCreaturePermanent filter =
new FilterCreaturePermanent("face-down creature"); new FilterCreaturePermanent("a face-down creature you control");
static { static {
filter.add(TargetController.YOU.getControllerPredicate()); filter.add(TargetController.YOU.getControllerPredicate());