mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fix #9641
This commit is contained in:
parent
0379fb70d1
commit
3fd3cb27e2
1 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public final class HenrikaInfernalSeer extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent();
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("each creature you control with flying, deathtouch, and/or lifelink");
|
||||
|
||||
static {
|
||||
filter.add(TargetController.YOU.getControllerPredicate());
|
||||
|
@ -53,8 +53,8 @@ public final class HenrikaInfernalSeer extends CardImpl {
|
|||
|
||||
// {1}{B}{B}: Each creature you control with flying, deathtouch, and/or lifelink gets +1/+0 until end of turn.
|
||||
this.addAbility(new SimpleActivatedAbility(new BoostAllEffect(
|
||||
0, 1, Duration.EndOfTurn, filter, false
|
||||
).setText("each creature you control with flying, deathtouch, and/or lifelink gets +1/+0 until end of turn"), new ManaCostsImpl<>("{1}{B}{B}")));
|
||||
1, 0, Duration.EndOfTurn, filter, false
|
||||
), new ManaCostsImpl<>("{1}{B}{B}")));
|
||||
}
|
||||
|
||||
private HenrikaInfernalSeer(final HenrikaInfernalSeer card) {
|
||||
|
|
Loading…
Reference in a new issue