Nightfall Predator must be marked as night card

This commit is contained in:
Loki 2011-10-05 00:28:03 +03:00
parent 8a8eb028f3
commit 8526c678fc

View file

@ -65,6 +65,10 @@ public class NightfallPredator extends CardImpl<NightfallPredator> {
this.power = new MageInt(4); this.power = new MageInt(4);
this.toughness = new MageInt(4); this.toughness = new MageInt(4);
// this card is the second face of double-faced card
this.nightCard = true;
this.canTransform = true;
// {R}, {tap}: Nightfall Predator fights target creature. // {R}, {tap}: Nightfall Predator fights target creature.
Ability activatedAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new NightfallPredatorEffect(), new ManaCostsImpl("{R}")); Ability activatedAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new NightfallPredatorEffect(), new ManaCostsImpl("{R}"));
activatedAbility.addCost(new TapSourceCost()); activatedAbility.addCost(new TapSourceCost());