/* * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are * permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * The views and conclusions contained in the software and documentation are those of the * authors and should not be interpreted as representing official policies, either expressed * or implied, of BetaSteward_at_googlemail.com. */ package mage.cards.o; import java.util.UUID; import mage.MageObject; import mage.MageObjectReference; import mage.abilities.Ability; import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.condition.common.SourceHasCounterCondition; import mage.abilities.costs.common.TapSourceCost; import mage.abilities.costs.mana.GenericManaCost; import mage.abilities.decorator.ConditionalActivatedAbility; import mage.abilities.effects.AsThoughEffectImpl; import mage.abilities.effects.Effect; import mage.abilities.effects.OneShotEffect; import mage.abilities.effects.common.counter.AddCountersSourceEffect; import mage.cards.Card; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.AsThoughEffectType; import mage.constants.CardType; import mage.constants.Duration; import mage.constants.Outcome; import mage.constants.Zone; import mage.counters.CounterType; import mage.game.Game; import mage.players.Library; import mage.players.Player; /** * * @author fireshoes */ public class OraclesVault extends CardImpl { public OraclesVault(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{4}"); // {2}, {T}: Exile the top card of your library. Until end of turn, you may play that card. Put a brick counter on Oracle's Vault. Effect effect = new OraclesVaultEffect(); effect.setText("Exile the top card of your library. Until end of turn, you may play that card"); Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new GenericManaCost(2)); ability.addCost(new TapSourceCost()); Effect effect2 = new AddCountersSourceEffect(CounterType.BRICK.createInstance()); effect2.setText("Put a brick counter on {this}"); ability.addEffect(effect2); this.addAbility(ability); // {T}: Exile the top card of your library. Until end of turn, you may play that card without paying its mana cost. // Activate this ability only if there are three or more brick counters on Oracle's Vault. this.addAbility(new ConditionalActivatedAbility(Zone.BATTLEFIELD, new OraclesVaultFreeEffect(), new TapSourceCost(), new SourceHasCounterCondition(CounterType.BRICK, 3, Integer.MAX_VALUE), "{T}: Exile the top card of your library. Until end of turn, you may play that card without paying its mana cost. " + "Activate this ability only if there are three or more brick counters on {this}")); } public OraclesVault(final OraclesVault card) { super(card); } @Override public OraclesVault copy() { return new OraclesVault(this); } } class OraclesVaultEffect extends OneShotEffect { public OraclesVaultEffect() { super(Outcome.Benefit); } public OraclesVaultEffect(final OraclesVaultEffect effect) { super(effect); } @Override public OraclesVaultEffect copy() { return new OraclesVaultEffect(this); } @Override public boolean apply(Game game, Ability source) { Player controller = game.getPlayer(source.getControllerId()); MageObject sourceObject = source.getSourceObject(game); if (controller != null && sourceObject != null && controller.getLibrary().hasCards()) { Library library = controller.getLibrary(); Card card = library.removeFromTop(game); if (card != null) { controller.moveCardToExileWithInfo(card, source.getSourceId(), sourceObject.getIdName() + " <this card may be played the turn it was exiled>", source.getSourceId(), game, Zone.LIBRARY, true); game.addEffect(new OraclesVaultPlayEffect(new MageObjectReference(card, game)), source); } return true; } return false; } } class OraclesVaultFreeEffect extends OneShotEffect { public OraclesVaultFreeEffect() { super(Outcome.Benefit); } public OraclesVaultFreeEffect(final OraclesVaultFreeEffect effect) { super(effect); } @Override public OraclesVaultFreeEffect copy() { return new OraclesVaultFreeEffect(this); } @Override public boolean apply(Game game, Ability source) { Player controller = game.getPlayer(source.getControllerId()); MageObject sourceObject = source.getSourceObject(game); if (controller != null && sourceObject != null && controller.getLibrary().hasCards()) { Library library = controller.getLibrary(); Card card = library.removeFromTop(game); if (card != null) { controller.moveCardToExileWithInfo(card, source.getSourceId(), sourceObject.getIdName() + " <this card may be played the turn it was exiled>", source.getSourceId(), game, Zone.LIBRARY, true); game.addEffect(new OraclesVaultPlayForFreeEffect(new MageObjectReference(card, game)), source); } return true; } return false; } } class OraclesVaultPlayEffect extends AsThoughEffectImpl { private final MageObjectReference objectReference; public OraclesVaultPlayEffect(MageObjectReference objectReference) { super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.EndOfTurn, Outcome.Benefit); this.objectReference = objectReference; staticText = "Until end of turn, you may play that card"; } public OraclesVaultPlayEffect(final OraclesVaultPlayEffect effect) { super(effect); this.objectReference = effect.objectReference; } @Override public boolean apply(Game game, Ability source) { return true; } @Override public OraclesVaultPlayEffect copy() { return new OraclesVaultPlayEffect(this); } @Override public boolean applies(UUID objectId, Ability source, UUID affectedControllerId, Game game) { if (objectReference.refersTo(objectId, game) && affectedControllerId.equals(source.getControllerId())) { Player controller = game.getPlayer(source.getControllerId()); if (controller != null) { return true; } else { discard(); } } return false; } } class OraclesVaultPlayForFreeEffect extends AsThoughEffectImpl { private final MageObjectReference objectReference; public OraclesVaultPlayForFreeEffect(MageObjectReference objectReference) { super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.EndOfTurn, Outcome.Benefit); this.objectReference = objectReference; staticText = "Until end of turn, you may play that card without paying its mana cost"; } public OraclesVaultPlayForFreeEffect(final OraclesVaultPlayForFreeEffect effect) { super(effect); this.objectReference = effect.objectReference; } @Override public boolean apply(Game game, Ability source) { return true; } @Override public OraclesVaultPlayForFreeEffect copy() { return new OraclesVaultPlayForFreeEffect(this); } @Override public boolean applies(UUID objectId, Ability source, UUID affectedControllerId, Game game) { if (objectReference.refersTo(objectId, game) && affectedControllerId.equals(source.getControllerId())) { Player controller = game.getPlayer(source.getControllerId()); if (controller != null) { controller.setCastSourceIdWithAlternateMana(objectId, null, null); return true; } else { discard(); } } return false; } }