mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Merge pull request #5685 from ketsuban/newjace
Fix Jace, Wielder of Mysteries +1 ability
This commit is contained in:
commit
b1d3c53e2a
1 changed files with 2 additions and 0 deletions
|
|
@ -17,6 +17,7 @@ import mage.constants.SuperType;
|
|||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetPlayer;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -39,6 +40,7 @@ public final class JaceWielderOfMysteries extends CardImpl {
|
|||
|
||||
// +1 Target player puts the top two cards of their library into their graveyard. Draw a card.
|
||||
Ability ability = new LoyaltyAbility(new PutLibraryIntoGraveTargetEffect(2), 1);
|
||||
ability.addTarget(new TargetPlayer());
|
||||
ability.addEffect(new DrawCardSourceControllerEffect(1));
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue