1
0
Fork 0
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:
Evan Kranzler 2018-05-16 09:04:34 -04:00
parent 30922924f5
commit 36e46d6363

View file

@ -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);
}