From df230654c6393b03abeb050615c960abe6e58887 Mon Sep 17 00:00:00 2001 From: PurpleCrowbar <26198472+PurpleCrowbar@users.noreply.github.com> Date: Thu, 5 Oct 2023 01:20:16 +0100 Subject: [PATCH] Fix Lord of Lineage text --- Mage.Sets/src/mage/cards/l/LordOfLineage.java | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Mage.Sets/src/mage/cards/l/LordOfLineage.java b/Mage.Sets/src/mage/cards/l/LordOfLineage.java index 1c8d6079993..33a576955e8 100644 --- a/Mage.Sets/src/mage/cards/l/LordOfLineage.java +++ b/Mage.Sets/src/mage/cards/l/LordOfLineage.java @@ -1,4 +1,3 @@ - package mage.cards.l; import java.util.UUID; @@ -24,11 +23,7 @@ import mage.game.permanent.token.VampireToken; */ public final class LordOfLineage extends CardImpl { - private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Other Vampire creatures"); - - static { - filter.add(SubType.VAMPIRE.getPredicate()); - } + private static final FilterCreaturePermanent filter = new FilterCreaturePermanent(SubType.VAMPIRE, "Vampire creatures"); public LordOfLineage(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, ""); @@ -41,10 +36,13 @@ public final class LordOfLineage extends CardImpl { // this card is the second face of double-faced card Bloodline Keeper this.nightCard = true; + // Flying this.addAbility(FlyingAbility.getInstance()); + // Other Vampire creatures you control get +2/+2. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(2, 2, Duration.WhileOnBattlefield, filter, true))); - // {tap}: Create a 2/2 black Vampire creature token with flying. + + // {T}: Create a 2/2 black Vampire creature token with flying. this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new VampireToken()), new TapSourceCost())); }