mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
fixed test failures
This commit is contained in:
parent
fd2078a4d6
commit
2b417a3e3d
2 changed files with 4 additions and 0 deletions
|
@ -39,6 +39,8 @@ public final class MaliciousInvader extends CardImpl {
|
|||
this.subtype.add(SubType.VAMPIRE);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
this.color.setBlack(true);
|
||||
this.nightCard = true;
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
|
|
@ -7,6 +7,7 @@ import mage.abilities.condition.Condition;
|
|||
import mage.abilities.condition.common.YouGainedLifeCondition;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.effects.common.TransformSourceEffect;
|
||||
import mage.abilities.keyword.TransformAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
|
@ -37,6 +38,7 @@ public final class PanickedBystander extends CardImpl {
|
|||
));
|
||||
|
||||
// At the beginning of your end step, if you gained 3 or more life this turn, transform Panicked Bystander.
|
||||
this.addAbility(new TransformAbility());
|
||||
this.addAbility(new BeginningOfEndStepTriggeredAbility(
|
||||
Zone.BATTLEFIELD, new TransformSourceEffect(),
|
||||
TargetController.YOU, condition, false
|
||||
|
|
Loading…
Reference in a new issue