Skip to content

Commit

Permalink
Fix Lord of Lineage text
Browse files Browse the repository at this point in the history
  • Loading branch information
PurpleCrowbar committed Oct 5, 2023
1 parent c1b9398 commit df23065
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Mage.Sets/src/mage/cards/l/LordOfLineage.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

package mage.cards.l;

import java.util.UUID;
Expand All @@ -24,11 +23,7 @@
*/
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}, "");
Expand All @@ -41,10 +36,13 @@ public LordOfLineage(UUID ownerId, CardSetInfo setInfo) {
// 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()));
}

Expand Down

0 comments on commit df23065

Please sign in to comment.