forked from External/mage
188 lines
7.9 KiB
Java
188 lines
7.9 KiB
Java
/*
|
|
* 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.game.command.planes;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.UUID;
|
|
import mage.ObjectColor;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.ActivateIfConditionActivatedAbility;
|
|
import mage.abilities.common.DiesCreatureTriggeredAbility;
|
|
import mage.abilities.common.SimpleStaticAbility;
|
|
import mage.abilities.common.delayed.AtTheBeginOfNextEndStepDelayedTriggeredAbility;
|
|
import mage.abilities.condition.common.MainPhaseStackEmptyCondition;
|
|
import mage.abilities.costs.mana.GenericManaCost;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.abilities.effects.OneShotEffect;
|
|
import mage.abilities.effects.RestrictionEffect;
|
|
import mage.abilities.effects.common.ReturnFromGraveyardToHandTargetEffect;
|
|
import mage.abilities.effects.common.ReturnToBattlefieldUnderOwnerControlTargetEffect;
|
|
import mage.abilities.effects.common.RollPlanarDieEffect;
|
|
import mage.cards.Card;
|
|
import mage.constants.Duration;
|
|
import mage.constants.Outcome;
|
|
import mage.constants.TargetController;
|
|
import mage.constants.Zone;
|
|
import mage.filter.common.FilterControlledCreaturePermanent;
|
|
import mage.filter.predicate.Predicates;
|
|
import mage.filter.predicate.mageobject.ColorPredicate;
|
|
import mage.game.Game;
|
|
import mage.game.command.Plane;
|
|
import mage.game.permanent.Permanent;
|
|
import mage.target.Target;
|
|
import mage.target.targetpointer.FixedTarget;
|
|
import mage.watchers.common.PlanarRollWatcher;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public class AgyremPlane extends Plane {
|
|
|
|
private static final FilterControlledCreaturePermanent filterWhite = new FilterControlledCreaturePermanent("a white creature");
|
|
private static final FilterControlledCreaturePermanent filterNonWhite = new FilterControlledCreaturePermanent("a nonwhite creature");
|
|
|
|
static {
|
|
filterWhite.add(new ColorPredicate(ObjectColor.WHITE));
|
|
filterNonWhite.add(Predicates.not(new ColorPredicate(ObjectColor.WHITE)));
|
|
}
|
|
|
|
public AgyremPlane() {
|
|
this.setName("Plane - Agyrem");
|
|
this.setExpansionSetCodeForImage("PCA");
|
|
|
|
// Whenever a white creature dies, return it to the battlefield under its owner's control at the beginning of the next end step
|
|
DiesCreatureTriggeredAbility ability = new DiesCreatureTriggeredAbility(Zone.COMMAND, new AgyremEffect(), false, filterWhite, true);
|
|
this.getAbilities().add(ability);
|
|
DiesCreatureTriggeredAbility ability2 = new DiesCreatureTriggeredAbility(Zone.COMMAND, new AgyremEffect2(), false, filterNonWhite, true);
|
|
this.getAbilities().add(ability2);
|
|
|
|
// Active player can roll the planar die: Whenever you roll {CHAOS}, creatures can't attack you until a player planeswalks
|
|
Effect chaosEffect = new AgyremRestrictionEffect();
|
|
Target chaosTarget = null;
|
|
|
|
List<Effect> chaosEffects = new ArrayList<Effect>();
|
|
chaosEffects.add(chaosEffect);
|
|
List<Target> chaosTargets = new ArrayList<Target>();
|
|
chaosTargets.add(chaosTarget);
|
|
|
|
ActivateIfConditionActivatedAbility chaosAbility = new ActivateIfConditionActivatedAbility(Zone.COMMAND, new RollPlanarDieEffect(chaosEffects, chaosTargets), new GenericManaCost(0), MainPhaseStackEmptyCondition.instance);
|
|
chaosAbility.addWatcher(new PlanarRollWatcher());
|
|
this.getAbilities().add(chaosAbility);
|
|
chaosAbility.setMayActivate(TargetController.ANY);
|
|
this.getAbilities().add(new SimpleStaticAbility(Zone.ALL, new PlanarDieRollCostIncreasingEffect(chaosAbility.getOriginalId())));
|
|
}
|
|
}
|
|
|
|
class AgyremEffect extends OneShotEffect {
|
|
|
|
public AgyremEffect() {
|
|
super(Outcome.PutCardInPlay);
|
|
this.staticText = "return that card to the battlefield under its owner's control at the beginning of the next end step";
|
|
}
|
|
|
|
public AgyremEffect(final AgyremEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public AgyremEffect copy() {
|
|
return new AgyremEffect(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
Card card = game.getCard(getTargetPointer().getFirst(game, source));
|
|
if (card != null) {
|
|
Effect effect = new ReturnToBattlefieldUnderOwnerControlTargetEffect();
|
|
effect.setTargetPointer(new FixedTarget(card.getId(), card.getZoneChangeCounter(game)));
|
|
effect.setText("return that card to the battlefield under its owner's control at the beginning of the next end step");
|
|
game.addDelayedTriggeredAbility(new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect, TargetController.ANY), source);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
class AgyremEffect2 extends OneShotEffect {
|
|
|
|
public AgyremEffect2() {
|
|
super(Outcome.PutCardInPlay);
|
|
this.staticText = "return it to its owner's hand at the beginning of the next end step";
|
|
}
|
|
|
|
public AgyremEffect2(final AgyremEffect2 effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public AgyremEffect2 copy() {
|
|
return new AgyremEffect2(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
Card card = game.getCard(getTargetPointer().getFirst(game, source));
|
|
if (card != null) {
|
|
Effect effect = new ReturnFromGraveyardToHandTargetEffect();
|
|
effect.setTargetPointer(new FixedTarget(card.getId(), card.getZoneChangeCounter(game)));
|
|
effect.setText("return it to its owner's hand at the beginning of the next end step");
|
|
game.addDelayedTriggeredAbility(new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect, TargetController.ANY), source);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
class AgyremRestrictionEffect extends RestrictionEffect {
|
|
|
|
AgyremRestrictionEffect() {
|
|
super(Duration.Custom, Outcome.Benefit);
|
|
staticText = "Creatures can't attack you";
|
|
}
|
|
|
|
AgyremRestrictionEffect(final AgyremRestrictionEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public boolean applies(Permanent permanent, Ability source, Game game) {
|
|
return permanent.isCreature();
|
|
}
|
|
|
|
@Override
|
|
public boolean canAttack(Permanent attacker, UUID defenderId, Ability source, Game game) {
|
|
return !defenderId.equals(source.getControllerId());
|
|
}
|
|
|
|
@Override
|
|
public AgyremRestrictionEffect copy() {
|
|
return new AgyremRestrictionEffect(this);
|
|
}
|
|
}
|