mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Co-authored-by: PurpleCrowbar <26198472+PurpleCrowbar@users.noreply.github.com>
This commit is contained in:
parent
78a2a5c712
commit
d40ca742b3
1 changed files with 3 additions and 1 deletions
|
@ -20,6 +20,7 @@ import mage.filter.predicate.Predicate;
|
|||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.stack.StackObject;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.watchers.common.ManaPaidSourceWatcher;
|
||||
|
||||
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.
|
||||
this.addAbility(new SimpleStaticAbility(new BoostAllEffect(
|
||||
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.
|
||||
this.addAbility(new AttacksAllTriggeredAbility(
|
||||
|
@ -67,6 +68,7 @@ public final class RaggadraggaGoregutsBoss extends CardImpl {
|
|||
ability.addEffect(new GainAbilityTargetEffect(
|
||||
TrampleAbility.getInstance(), Duration.EndOfTurn
|
||||
).setText("and gains trample until end of turn"));
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue