mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Arsenal Thresher - Fixed a bug of the enters the battlefield ability.
This commit is contained in:
parent
e1a89e7b00
commit
65974f5aa7
1 changed files with 2 additions and 4 deletions
|
@ -40,6 +40,7 @@ import mage.constants.Outcome;
|
|||
import mage.constants.Rarity;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.common.FilterArtifactCard;
|
||||
import mage.filter.predicate.mageobject.AnotherCardPredicate;
|
||||
import mage.filter.predicate.permanent.AnotherPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
@ -57,9 +58,6 @@ public class ArsenalThresher extends CardImpl {
|
|||
this.expansionSetCode = "ARB";
|
||||
this.subtype.add("Construct");
|
||||
|
||||
|
||||
|
||||
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
|
@ -100,7 +98,7 @@ class ArsenalThresherEffect extends OneShotEffect {
|
|||
}
|
||||
Permanent arsenalThresher = game.getPermanent(source.getSourceId());
|
||||
FilterArtifactCard filter = new FilterArtifactCard();
|
||||
filter.add(new AnotherPredicate());
|
||||
filter.add(new AnotherCardPredicate());
|
||||
if (you.chooseUse(Outcome.Benefit, "Do you want to reveal other artifacts in your hand?", game)) {
|
||||
Cards cards = new CardsImpl();
|
||||
if (you.getHand().count(filter, source.getSourceId(), source.getControllerId(), game) > 0) {
|
||||
|
|
Loading…
Reference in a new issue