mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[FDN] Implement Mischievous Mystic
This commit is contained in:
parent
d7f568ba34
commit
b0055fd2ea
3 changed files with 52 additions and 0 deletions
|
|
@ -24,6 +24,14 @@ public class DrawNthCardTriggeredAbility extends TriggeredAbilityImpl {
|
|||
private final TargetController targetController;
|
||||
private final int cardNumber;
|
||||
|
||||
public DrawNthCardTriggeredAbility(Effect effect) {
|
||||
this(effect, false);
|
||||
}
|
||||
|
||||
public DrawNthCardTriggeredAbility(Effect effect, boolean optional) {
|
||||
this(effect, optional, 2);
|
||||
}
|
||||
|
||||
public DrawNthCardTriggeredAbility(Effect effect, boolean optional, int cardNumber) {
|
||||
this(effect, optional, TargetController.YOU, cardNumber);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue