mirror of
https://github.com/correl/mage.git
synced 2025-04-03 17:00:16 -09:00
[RTR] Firemind's Foresight, Setention Sphere
This commit is contained in:
parent
2da0408dd7
commit
f9a39be9c6
2 changed files with 294 additions and 0 deletions
Mage.Sets/src/mage/sets/returntoravnica
158
Mage.Sets/src/mage/sets/returntoravnica/DetentionSphere.java
Normal file
158
Mage.Sets/src/mage/sets/returntoravnica/DetentionSphere.java
Normal file
|
@ -0,0 +1,158 @@
|
|||
/*
|
||||
* 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.sets.returntoravnica;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Outcome;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.common.LeavesBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterNonlandPermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.mageobject.NamePredicate;
|
||||
import mage.game.ExileZone;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class DetentionSphere extends CardImpl<DetentionSphere> {
|
||||
|
||||
static final protected FilterPermanent filter = new FilterNonlandPermanent("nonland permanent not named Detention Sphere");
|
||||
static {
|
||||
filter.add(Predicates.not(new NamePredicate("Detention Sphere")));
|
||||
}
|
||||
|
||||
public DetentionSphere(UUID ownerId) {
|
||||
super(ownerId, 155, "Detention Sphere", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}{U}");
|
||||
this.expansionSetCode = "RTR";
|
||||
|
||||
this.color.setWhite(true);
|
||||
this.color.setBlue(true);
|
||||
|
||||
// When Detention Sphere enters the battlefield, you may exile
|
||||
// target nonland permanent not named Detention Sphere and all
|
||||
// other permanents with the same name as that permanent.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DetentionSphereEntersEffect(), true);
|
||||
ability.addTarget(new TargetPermanent(filter));
|
||||
this.addAbility(ability);
|
||||
|
||||
|
||||
// When Detention Sphere leaves the battlefield, return the exiled
|
||||
// cards to the battlefield under their owner's control.
|
||||
this.addAbility(new LeavesBattlefieldTriggeredAbility(new DetentionSphereLeavesEffect(), false));
|
||||
}
|
||||
|
||||
public DetentionSphere(final DetentionSphere card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DetentionSphere copy() {
|
||||
return new DetentionSphere(this);
|
||||
}
|
||||
}
|
||||
|
||||
class DetentionSphereEntersEffect extends OneShotEffect<DetentionSphereEntersEffect> {
|
||||
|
||||
|
||||
public DetentionSphereEntersEffect() {
|
||||
super(Outcome.Exile);
|
||||
staticText = "you may exile target nonland permanent not named Detention Sphere and all other permanents with the same name as that permanent";
|
||||
}
|
||||
|
||||
public DetentionSphereEntersEffect(final DetentionSphereEntersEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
UUID exileId = source.getSourceId();
|
||||
Permanent targetPermanent = game.getPermanent(getTargetPointer().getFirst(game, source));
|
||||
if (exileId != null && targetPermanent != null) {
|
||||
String name = targetPermanent.getName();
|
||||
for (Permanent permanent : game.getBattlefield().getActivePermanents(source.getControllerId(), game)) {
|
||||
if (permanent != null && permanent.getName().equals(name)) {
|
||||
permanent.moveToExile(exileId, "Detention Sphere", source.getId(), game);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DetentionSphereEntersEffect copy() {
|
||||
return new DetentionSphereEntersEffect(this);
|
||||
}
|
||||
}
|
||||
|
||||
class DetentionSphereLeavesEffect extends OneShotEffect<DetentionSphereLeavesEffect> {
|
||||
|
||||
public DetentionSphereLeavesEffect() {
|
||||
super(Constants.Outcome.Neutral);
|
||||
staticText = "return the exiled cards to the battlefield under their owner's control";
|
||||
}
|
||||
|
||||
public DetentionSphereLeavesEffect(final DetentionSphereLeavesEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
UUID exileId = source.getSourceId();
|
||||
ExileZone exile = game.getExile().getExileZone(exileId);
|
||||
if (exile != null) {
|
||||
exile = exile.copy();
|
||||
for (UUID cardId : exile) {
|
||||
Card card = game.getCard(cardId);
|
||||
card.putOntoBattlefield(game, Constants.Zone.EXILED, source.getId(), card.getOwnerId());
|
||||
}
|
||||
game.getExile().getExileZone(exileId).clear();
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DetentionSphereLeavesEffect copy() {
|
||||
return new DetentionSphereLeavesEffect(this);
|
||||
}
|
||||
}
|
136
Mage.Sets/src/mage/sets/returntoravnica/FiremindsForesight.java
Normal file
136
Mage.Sets/src/mage/sets/returntoravnica/FiremindsForesight.java
Normal file
|
@ -0,0 +1,136 @@
|
|||
/*
|
||||
* 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.sets.returntoravnica;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Outcome;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.CardsImpl;
|
||||
import mage.filter.Filter;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.predicate.mageobject.CardTypePredicate;
|
||||
import mage.filter.predicate.mageobject.ConvertedManaCostPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.target.common.TargetCardInLibrary;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class FiremindsForesight extends CardImpl<FiremindsForesight> {
|
||||
|
||||
public FiremindsForesight(UUID ownerId) {
|
||||
super(ownerId, 162, "Firemind's Foresight", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{5}{U}{R}");
|
||||
this.expansionSetCode = "RTR";
|
||||
|
||||
this.color.setBlue(true);
|
||||
this.color.setRed(true);
|
||||
|
||||
// Search your library for an instant card with converted mana cost 3, reveal it,
|
||||
// and put it into your hand. Then repeat this process for instant cards with
|
||||
// converted mana costs 2 and 1. Then shuffle your library.
|
||||
this.getSpellAbility().addEffect(new FiremindsForesightSearchEffect());
|
||||
}
|
||||
|
||||
public FiremindsForesight(final FiremindsForesight card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FiremindsForesight copy() {
|
||||
return new FiremindsForesight(this);
|
||||
}
|
||||
}
|
||||
|
||||
class FiremindsForesightSearchEffect extends OneShotEffect<FiremindsForesightSearchEffect> {
|
||||
|
||||
public FiremindsForesightSearchEffect() {
|
||||
super(Outcome.DrawCard);
|
||||
staticText = "Search your library for an instant card with converted mana cost 3, reveal it, and put it into your hand. Then repeat this process for instant cards with converted mana costs 2 and 1. Then shuffle your library";
|
||||
}
|
||||
|
||||
public FiremindsForesightSearchEffect(final FiremindsForesightSearchEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FiremindsForesightSearchEffect copy() {
|
||||
return new FiremindsForesightSearchEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Card sourceCard = game.getCard(source.getSourceId());
|
||||
if (player == null || sourceCard == null) {
|
||||
return false;
|
||||
}
|
||||
int cardsCount;
|
||||
Cards cardToReveal = new CardsImpl();
|
||||
Cards cardsInLibrary = new CardsImpl(Constants.Zone.LIBRARY);
|
||||
cardsInLibrary.addAll(player.getLibrary().getCards(game));
|
||||
|
||||
for (int cmc=3; cmc > 0; cmc--) {
|
||||
FilterCard filter = new FilterCard("instant card with converted mana cost " + cmc);
|
||||
filter.add(new CardTypePredicate(CardType.INSTANT));
|
||||
filter.add(new ConvertedManaCostPredicate(Filter.ComparisonType.Equal, cmc));
|
||||
|
||||
|
||||
cardsCount = cardsInLibrary.count(filter, game);
|
||||
if (cardsCount > 0) {
|
||||
TargetCardInLibrary target = new TargetCardInLibrary(0, 1, filter);
|
||||
if (player.searchLibrary(target, game)) {
|
||||
for (UUID cardId: (List<UUID>)target.getTargets()) {
|
||||
Card card = player.getLibrary().remove(cardId, game);
|
||||
if (card != null){
|
||||
card.moveToZone(Constants.Zone.HAND, source.getId(), game, false);
|
||||
game.informPlayers(sourceCard.getName()+": " + player.getName() + " chose " + card.getName() );
|
||||
cardsInLibrary.remove(card);
|
||||
cardToReveal.add(card);
|
||||
player.revealCards(sourceCard.getName(), cardToReveal, game);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
player.lookAtCards(filter.getMessage(), cardsInLibrary, game);
|
||||
}
|
||||
}
|
||||
|
||||
player.shuffleLibrary(game);
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue