mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Machinate - fixed wrong card text;
This commit is contained in:
parent
45bb2a12fd
commit
20fe92b98b
1 changed files with 3 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue