(related to 0115653 and 47b2345)
This commit is contained in:
xenohedron 2023-11-03 23:30:57 -04:00
parent 22fba3014b
commit 5bd1351910
2 changed files with 4 additions and 3 deletions

View file

@ -32,7 +32,7 @@ public final class CavernStomper extends CardImpl {
// {3}{G}: Cavern Stomper can't be blocked by creatures with power 2 or less this turn.
this.addAbility(new SimpleActivatedAbility(new CantBeBlockedByCreaturesSourceEffect(
DauntAbility.getFilter(), Duration.WhileOnBattlefield
DauntAbility.getFilter(), Duration.EndOfTurn
), new ManaCostsImpl<>("{3}{G}")));
}

View file

@ -1,10 +1,11 @@
package mage.cards.d;
import mage.abilities.effects.common.combat.CantBeBlockedTargetEffect;
import mage.abilities.effects.common.combat.CantBlockTargetEffect;
import mage.abilities.effects.keyword.DiscoverEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.target.common.TargetCreaturePermanent;
import java.util.UUID;
@ -18,7 +19,7 @@ public final class DaringDiscovery extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{4}{R}");
// Up to three target creatures can't block this turn.
this.getSpellAbility().addEffect(new CantBeBlockedTargetEffect());
this.getSpellAbility().addEffect(new CantBlockTargetEffect(Duration.EndOfTurn));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 3));
// Discover 4.