[BRC] Implement Glint Raker

This commit is contained in:
Evan Kranzler 2022-11-06 17:59:12 -05:00
parent 8def408d41
commit f097e9763d
3 changed files with 71 additions and 0 deletions

View file

@ -1,5 +1,7 @@
package mage.abilities.effects.common;
import mage.abilities.dynamicvalue.DynamicValue;
import mage.abilities.dynamicvalue.common.StaticValue;
import mage.constants.PutCards;
import mage.filter.FilterCard;
@ -15,6 +17,11 @@ public class RevealLibraryPickControllerEffect extends LookLibraryAndPickControl
public RevealLibraryPickControllerEffect(int numberOfCards, int numberToPick, FilterCard filter,
PutCards putPickedCards, PutCards putLookedCards, boolean optional) {
this(StaticValue.get(numberOfCards), numberToPick, filter, putPickedCards, putLookedCards, optional);
}
public RevealLibraryPickControllerEffect(DynamicValue numberOfCards, int numberToPick, FilterCard filter,
PutCards putPickedCards, PutCards putLookedCards, boolean optional) {
super(numberOfCards, numberToPick, filter, putPickedCards, putLookedCards, optional);
this.revealCards = true;
this.revealPickedCards = false;