1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-01 19:07:57 -09:00

Reimplemented Vines Of Vastwood (new way for implementing spells with kicker)

This commit is contained in:
magenoxx 2011-09-14 09:21:12 +04:00
parent 5bb236def0
commit 15212bccc9
2 changed files with 73 additions and 74 deletions
Mage.Sets/src/mage/sets/zendikar
Mage/src/mage/abilities/condition/common

View file

@ -1,16 +1,16 @@
/*
* 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
@ -20,7 +20,7 @@
* 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.
@ -29,15 +29,21 @@
package mage.sets.zendikar;
import java.util.UUID;
import mage.Constants.CardType;
import mage.Constants.Duration;
import mage.Constants.Outcome;
import mage.Constants.Rarity;
import mage.Constants.TargetController;
import mage.abilities.Ability;
import mage.abilities.condition.common.KickedCondition;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.decorator.ConditionalContinousEffect;
import mage.abilities.decorator.ConditionalOneShotEffect;
import mage.abilities.effects.ReplacementEffectImpl;
import mage.abilities.effects.common.continious.BoostTargetEffect;
import mage.abilities.effects.common.continious.GainAbilityTargetEffect;
import mage.abilities.keyword.HexproofAbility;
import mage.abilities.keyword.KickerAbility;
import mage.cards.CardImpl;
import mage.filter.FilterStackObject;
@ -48,80 +54,32 @@ import mage.game.stack.StackObject;
import mage.target.common.TargetCreaturePermanent;
/**
*
* @author Viserion
* @author nantuko
*/
public class VinesOfVastwood extends CardImpl<VinesOfVastwood> {
private static final FilterStackObject filter = new FilterStackObject("spells or abilities your opponents control");
static {
filter.setTargetController(TargetController.OPPONENT);
}
private static final String staticText = "If Vines of Vastwood was kicked, that creature gets +4/+4 until end of turn.";
public VinesOfVastwood(UUID ownerId) {
super(ownerId, 193, "Vines of Vastwood", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{G}");
this.expansionSetCode = "ZEN";
this.color.setGreen(true);
TargetCreaturePermanent target = new TargetCreaturePermanent();
this.getSpellAbility().addTarget(target);
this.getSpellAbility().addEffect(new VinesOfVastwoodEffect(filter, Duration.EndOfTurn));
KickerAbility ability = new KickerAbility(new BoostTargetEffect(4, 4, Duration.EndOfTurn), false);
ability.addTarget(target);
ability.addCost(new ManaCostsImpl("{G}"));
this.addAbility(ability);
}
public VinesOfVastwood(UUID ownerId) {
super(ownerId, 193, "Vines of Vastwood", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{G}");
this.expansionSetCode = "ZEN";
this.color.setGreen(true);
TargetCreaturePermanent target = new TargetCreaturePermanent();
this.getSpellAbility().addTarget(target);
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(new HexproofAbility(), Duration.EndOfTurn));
public VinesOfVastwood(final VinesOfVastwood card) {
super(card);
}
this.getSpellAbility().addOptionalCost(new ManaCostsImpl("{G}"));
this.getSpellAbility().addEffect(new ConditionalContinousEffect(new BoostTargetEffect(4, 4, Duration.EndOfTurn),
KickedCondition.getInstance(), staticText));
}
@Override
public VinesOfVastwood copy() {
return new VinesOfVastwood(this);
}
public VinesOfVastwood(final VinesOfVastwood card) {
super(card);
}
@Override
public VinesOfVastwood copy() {
return new VinesOfVastwood(this);
}
}
class VinesOfVastwoodEffect extends ReplacementEffectImpl<VinesOfVastwoodEffect> {
private FilterStackObject filterSource;
public VinesOfVastwoodEffect(FilterStackObject filterSource, Duration duration) {
super(duration, Outcome.Benefit);
this.filterSource = filterSource;
staticText = "Target creature can't be the target of spells or abilities your opponents control this turn. If {this} was kicked, that creature gets +4/+4 until end of turn.";
}
public VinesOfVastwoodEffect(final VinesOfVastwoodEffect effect) {
super(effect);
this.filterSource = effect.filterSource.copy();
}
@Override
public VinesOfVastwoodEffect copy() {
return new VinesOfVastwoodEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
return true;
}
@Override
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
return true;
}
@Override
public boolean applies(GameEvent event, Ability source, Game game) {
if (event.getType() == EventType.TARGET && event.getTargetId().equals(source.getFirstTarget())) {
StackObject sourceObject = game.getStack().getStackObject(event.getSourceId());
if (sourceObject != null && filterSource.match(sourceObject, source.getControllerId(), game)) {
return true;
}
}
return false;
}
}

View file

@ -0,0 +1,41 @@
package mage.abilities.condition.common;
import mage.Constants;
import mage.abilities.Ability;
import mage.abilities.condition.Condition;
import mage.abilities.costs.mana.ManaCost;
import mage.cards.Card;
import mage.filter.FilterPermanent;
import mage.game.Game;
/**
* Describes condition when spell was kicked.
*
* @author nantuko
*/
public class KickedCondition implements Condition {
private static KickedCondition fInstance = new KickedCondition();
public static Condition getInstance() {
return fInstance;
}
@Override
public boolean apply(Game game, Ability source) {
Card p = game.getCard(source.getSourceId());
boolean kicked = false;
if (p != null) {
for (Object cost : p.getSpellAbility().getOptionalCosts()) {
if (cost instanceof ManaCost) {
if (((ManaCost) cost).isPaid()) {
kicked = true;
}
}
}
}
return kicked;
}
}