Examples of FightTargetsEffect


Examples of mage.abilities.effects.common.FightTargetsEffect

        this.expansionSetCode = "DKA";

        this.color.setRed(true);

        // Target creature fights another target creature.
        this.getSpellAbility().addEffect(new FightTargetsEffect());
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        this.getSpellAbility().addTarget(new TargetOtherCreaturePermanent());
    }
View Full Code Here

Examples of mage.abilities.effects.common.FightTargetsEffect

        }
        creature = game.getPermanent(source.getTargets().get(1).getFirstTarget());
        if (creature != null) {
            creature.tap(game);
        }
        return new FightTargetsEffect().apply(game, source);
    }
View Full Code Here

Examples of mage.abilities.effects.common.FightTargetsEffect

        // +1: Look at the top card of your library. If it's a creature card, you may reveal it and put it into your hand.
        this.addAbility(new LoyaltyAbility(new DomriRadeEffect1(), 1));

        // -2: Target creature you control fights another target creature.
        LoyaltyAbility ability2 = new LoyaltyAbility(new FightTargetsEffect(), -2);
        ability2.addTarget(new TargetControlledCreaturePermanent());
        ability2.addTarget(new DomriRadeTargetOtherCreaturePermanent());
        this.addAbility(ability2);

        // -7: You get an emblem with "Creatures you control have double strike, trample, hexproof and haste."
View Full Code Here

Examples of mage.abilities.effects.common.FightTargetsEffect

        Effect effect = new BoostTargetEffect(2,2, Duration.EndOfTurn);
        effect.setApplyEffectsAfter();
        this.getSpellAbility().addEffect(effect);
        this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent(1,1,filterControlledGreen, false));

        effect = new FightTargetsEffect();
        effect.setText("It fights target green creature an opponent controls");
        this.getSpellAbility().addEffect(effect);
        Target target = new TargetCreaturePermanent(filterOpponentGreen);
        this.getSpellAbility().addTarget(target);
    }
View Full Code Here

Examples of mage.abilities.effects.common.FightTargetsEffect

        this.color.setGreen(true);

        // Choose target creature an opponent controls. When that creature dies this turn, you gain 3 life.
        this.getSpellAbility().addEffect(new TimeToFeedTextEffect());
        // Target creature you control fights that creature.
        Effect effect = new FightTargetsEffect();
        effect.setText("Target creature you control fights that creature");
        this.getSpellAbility().addEffect(effect);

        Target target = new TargetCreaturePermanent(filter1);
        this.getSpellAbility().addTarget(target);
        this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.