mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
[BRC] Implement Glint Raker
This commit is contained in:
parent
8def408d41
commit
f097e9763d
3 changed files with 71 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue