mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
Fix Arbiter of the Ideal text
This commit is contained in:
parent
6a2601d3b7
commit
2194aee865
1 changed files with 1 additions and 2 deletions
|
@ -37,7 +37,6 @@ public final class ArbiterOfTheIdeal extends CardImpl {
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
// <i>Inspired</i> — Whenever Arbiter of the Ideal becomes untapped, reveal the top card of your library. If it's an artifact, creature, or land card, you may put it onto the battlefield with a manifestation counter on it. It's an enchantment in addition to its other types.
|
// <i>Inspired</i> — Whenever Arbiter of the Ideal becomes untapped, reveal the top card of your library. If it's an artifact, creature, or land card, you may put it onto the battlefield with a manifestation counter on it. It's an enchantment in addition to its other types.
|
||||||
this.addAbility(new InspiredAbility(new ArbiterOfTheIdealEffect()));
|
this.addAbility(new InspiredAbility(new ArbiterOfTheIdealEffect()));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private ArbiterOfTheIdeal(final ArbiterOfTheIdeal card) {
|
private ArbiterOfTheIdeal(final ArbiterOfTheIdeal card) {
|
||||||
|
@ -85,7 +84,7 @@ class ArbiterOfTheIdealEffect extends OneShotEffect {
|
||||||
Card card = controller.getLibrary().getFromTop(game);
|
Card card = controller.getLibrary().getFromTop(game);
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
controller.revealCards(sourceObject.getIdName(), new CardsImpl(card), game);
|
controller.revealCards(sourceObject.getIdName(), new CardsImpl(card), game);
|
||||||
if (filter.match(card, game) && controller.chooseUse(outcome, "Put " + card.getName() + "onto battlefield?", source, game)) {
|
if (filter.match(card, game) && controller.chooseUse(outcome, "Put " + card.getName() + " onto the battlefield?", source, game)) {
|
||||||
controller.moveCards(card, Zone.BATTLEFIELD, source, game);
|
controller.moveCards(card, Zone.BATTLEFIELD, source, game);
|
||||||
Permanent permanent = game.getPermanent(card.getId());
|
Permanent permanent = game.getPermanent(card.getId());
|
||||||
if (permanent != null) {
|
if (permanent != null) {
|
||||||
|
|
Loading…
Reference in a new issue