mirror of
https://github.com/correl/mage.git
synced 2025-03-13 01:09:53 -09:00
fixed Azcanta, the Sunken Ruin not allowing players to fail to find
This commit is contained in:
parent
30922924f5
commit
36e46d6363
1 changed files with 7 additions and 2 deletions
|
@ -71,8 +71,13 @@ public class AzcantaTheSunkenRuin extends CardImpl {
|
|||
this.addAbility(new BlueManaAbility());
|
||||
|
||||
// {2}{U} , {T} : Look at the top four cards of your library. You may reveal a noncreature, nonland card from among them and put it into your hand. Put the rest on the bottom of your library in any order.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
|
||||
new LookLibraryAndPickControllerEffect(new StaticValue(4), false, new StaticValue(1), filter, false), new ManaCostsImpl<>("{2}{U}"));
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
Zone.BATTLEFIELD,
|
||||
new LookLibraryAndPickControllerEffect(
|
||||
new StaticValue(4), false, new StaticValue(1),
|
||||
filter, Zone.LIBRARY, false, true, true
|
||||
), new ManaCostsImpl<>("{2}{U}")
|
||||
);
|
||||
ability.addCost(new TapSourceCost());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue