Fix Raggadragga Goreguts Boss. Closes #9770 (#9776)

Co-authored-by: PurpleCrowbar <26198472+PurpleCrowbar@users.noreply.github.com>
This commit is contained in:
UberNude 2023-02-27 12:23:13 -05:00 committed by GitHub
parent 78a2a5c712
commit d40ca742b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,6 +20,7 @@ import mage.filter.predicate.Predicate;
import mage.game.Game; import mage.game.Game;
import mage.game.permanent.Permanent; import mage.game.permanent.Permanent;
import mage.game.stack.StackObject; import mage.game.stack.StackObject;
import mage.target.common.TargetCreaturePermanent;
import mage.watchers.common.ManaPaidSourceWatcher; import mage.watchers.common.ManaPaidSourceWatcher;
import java.util.UUID; import java.util.UUID;
@ -51,7 +52,7 @@ public final class RaggadraggaGoregutsBoss extends CardImpl {
// Each creature you control with a mana ability gets +2/+2. // Each creature you control with a mana ability gets +2/+2.
this.addAbility(new SimpleStaticAbility(new BoostAllEffect( this.addAbility(new SimpleStaticAbility(new BoostAllEffect(
2, 2, Duration.WhileOnBattlefield, filter, false 2, 2, Duration.WhileOnBattlefield, filter, false
))); ).setText("Each " + filter.getMessage() + " gets +2/+2")));
// Whenever a creature you control with a mana ability attacks, untap it. // Whenever a creature you control with a mana ability attacks, untap it.
this.addAbility(new AttacksAllTriggeredAbility( this.addAbility(new AttacksAllTriggeredAbility(
@ -67,6 +68,7 @@ public final class RaggadraggaGoregutsBoss extends CardImpl {
ability.addEffect(new GainAbilityTargetEffect( ability.addEffect(new GainAbilityTargetEffect(
TrampleAbility.getInstance(), Duration.EndOfTurn TrampleAbility.getInstance(), Duration.EndOfTurn
).setText("and gains trample until end of turn")); ).setText("and gains trample until end of turn"));
ability.addTarget(new TargetCreaturePermanent());
this.addAbility(ability); this.addAbility(ability);
} }