mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
* Some minor changes.
This commit is contained in:
parent
26a45dd951
commit
ab8bcd92c2
2 changed files with 108 additions and 109 deletions
|
|
@ -39,7 +39,6 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.CardTypePredicate;
|
||||
import mage.filter.predicate.permanent.AnotherPredicate;
|
||||
import mage.target.common.TargetControlledPermanent;
|
||||
|
||||
|
|
@ -52,7 +51,6 @@ public class ApocalypseDemon extends CardImpl {
|
|||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("another creature");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.CREATURE));
|
||||
filter.add(new AnotherPredicate());
|
||||
}
|
||||
|
||||
|
|
@ -76,6 +74,7 @@ public class ApocalypseDemon extends CardImpl {
|
|||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ApocalypseDemon copy() {
|
||||
return new ApocalypseDemon(this);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ public class OneOrBothTest extends CardTestPlayerBase {
|
|||
setStopAt(1, PhaseStep.BEGIN_COMBAT);
|
||||
execute();
|
||||
|
||||
assertPowerToughness(playerA, "Silvercoat Lion", 3, 3);
|
||||
assertPowerToughness(playerB, "Pillarfield Ox", 1, 3);
|
||||
assertPowerToughness(playerA, "Silvercoat Lion", 3, 3);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue