mirror of
https://github.com/correl/mage.git
synced 2025-04-11 01:01:05 -09:00
Reimplemented Vines Of Vastwood (new way for implementing spells with kicker)
This commit is contained in:
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
|
@ -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");
|
||||
private static final String staticText = "If Vines of Vastwood was kicked, that creature gets +4/+4 until end of turn.";
|
||||
|
||||
static {
|
||||
filter.setTargetController(TargetController.OPPONENT);
|
||||
}
|
||||
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(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));
|
||||
this.getSpellAbility().addOptionalCost(new ManaCostsImpl("{G}"));
|
||||
this.getSpellAbility().addEffect(new ConditionalContinousEffect(new BoostTargetEffect(4, 4, Duration.EndOfTurn),
|
||||
KickedCondition.getInstance(), staticText));
|
||||
}
|
||||
|
||||
KickerAbility ability = new KickerAbility(new BoostTargetEffect(4, 4, Duration.EndOfTurn), false);
|
||||
ability.addTarget(target);
|
||||
ability.addCost(new ManaCostsImpl("{G}"));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
public VinesOfVastwood(final VinesOfVastwood card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
public VinesOfVastwood(final VinesOfVastwood card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VinesOfVastwood copy() {
|
||||
return new VinesOfVastwood(this);
|
||||
}
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue