This commit is contained in:
Alex W. Jackson 2022-10-10 15:21:57 -04:00 committed by GitHub
parent 0379fb70d1
commit 3fd3cb27e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {