* Machinate - fixed wrong card text;

This commit is contained in:
Oleg Agafonov 2018-11-11 22:04:48 +04:00
parent 45bb2a12fd
commit 20fe92b98b

View file

@ -30,7 +30,9 @@ public final class Machinate extends CardImpl {
// Look at the top X cards of your library, where X is the number of artifacts you control. Put one of those cards into your hand and the rest on the bottom of your library in any order. // Look at the top X cards of your library, where X is the number of artifacts you control. Put one of those cards into your hand and the rest on the bottom of your library in any order.
DynamicValue artifactsOnControl = new PermanentsOnBattlefieldCount(filter); DynamicValue artifactsOnControl = new PermanentsOnBattlefieldCount(filter);
this.getSpellAbility().addEffect(new LookLibraryAndPickControllerEffect(artifactsOnControl, false, new StaticValue(1), new FilterCard(), Zone.LIBRARY, false, false)); LookLibraryAndPickControllerEffect effect = new LookLibraryAndPickControllerEffect(artifactsOnControl, false, new StaticValue(1), new FilterCard(), Zone.LIBRARY, false, false);
effect.setText("Look at the top X cards of your library, where X is the number of artifacts you control. Put one of those cards into your hand and the rest on the bottom of your library in any order.");
this.getSpellAbility().addEffect(effect);
} }
public Machinate(final Machinate card) { public Machinate(final Machinate card) {