Examples of CopyTargetSpellEffect


Examples of mage.abilities.effects.common.CopyTargetSpellEffect

}

class PyromancerAscensionCopyTriggeredAbility extends TriggeredAbilityImpl {

    PyromancerAscensionCopyTriggeredAbility() {
        super(Zone.BATTLEFIELD, new CopyTargetSpellEffect(), true);
    }
View Full Code Here

Examples of mage.abilities.effects.common.CopyTargetSpellEffect

  public Reverberate(UUID ownerId) {
    super(ownerId, 155, "Reverberate", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{R}{R}");
    this.expansionSetCode = "M11";
    this.color.setRed(true);
    this.getSpellAbility().addTarget(new TargetSpell(filter));
    this.getSpellAbility().addEffect(new CopyTargetSpellEffect());
  }
View Full Code Here

Examples of mage.abilities.effects.common.CopyTargetSpellEffect

        this.subtype.add("Merfolk");
        this.subtype.add("Wizard");
        this.color.setBlue(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CopyTargetSpellEffect(), new ManaCostsImpl("{1}{U}"));
        ability.addTarget(new TargetSpell(filterInstorSorc));
        ability.addCost(new TapTargetCost(new TargetControlledCreaturePermanent(2, 2, filter, false)));
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.effects.common.CopyTargetSpellEffect

        // Flash
        this.addAbility(FlashAbility.getInstance());
       
        // When Dualcaster Mage enters the battlefield, copy target instant or sorcery spell. You may choose new targets for the copy.
        Ability ability = new EntersBattlefieldTriggeredAbility(new CopyTargetSpellEffect(), false);
        ability.addTarget(new TargetSpell(filter));
        this.addAbility(ability);

    }
View Full Code Here

Examples of mage.abilities.effects.common.CopyTargetSpellEffect

}

class MelekIzzetParagonTriggeredAbility extends TriggeredAbilityImpl {

    public MelekIzzetParagonTriggeredAbility() {
        super(Zone.BATTLEFIELD, new CopyTargetSpellEffect(), false);
    }
View Full Code Here

Examples of mage.abilities.effects.common.CopyTargetSpellEffect

        this.getSpellAbility().addTarget(auraTarget);
        this.getSpellAbility().addEffect(new AttachEffect(Outcome.AddAbility));
        Ability ability = new EnchantAbility(auraTarget.getTargetName());
        this.addAbility(ability);
        // Enchanted creature has "{R}, {tap}: Copy target instant or sorcery spell you control. You may choose new targets for the copy."
        ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CopyTargetSpellEffect(), new ColoredManaCost(ColoredManaSymbol.R));
        ability.addCost(new TapSourceCost());
        ability.addTarget(new TargetSpell(filter));
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(ability, AttachmentType.AURA)));
    }
View Full Code Here

Examples of mage.abilities.effects.common.CopyTargetSpellEffect

        this.addAbility(new LevelUpAbility(new ManaCostsImpl("{1}{U}")));
        // LEVEL 2-3
        // 2/4
        // {U}{U}, {tap}: Copy target instant or sorcery spell. You may choose new targets for the copy.
        Abilities<Ability> abilities1 = new AbilitiesImpl<Ability>();
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CopyTargetSpellEffect(), new ManaCostsImpl("{U}{U}"));
        ability.addTarget(new TargetSpell(filter));
        ability.addCost(new TapSourceCost());
        abilities1.add(ability);
        // LEVEL 4+
        // 2/5
View Full Code Here

Examples of mage.abilities.effects.common.CopyTargetSpellEffect

}

class HowlOfTheHordeDelayedTriggeredAbility extends DelayedTriggeredAbility {
   
    HowlOfTheHordeDelayedTriggeredAbility() {
        super(new CopyTargetSpellEffect(), Duration.EndOfTurn);
    }
View Full Code Here

Examples of mage.abilities.effects.common.CopyTargetSpellEffect

        this.subtype.add("Wizard");
        this.color.setBlue(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(4);
        this.addAbility(FlyingAbility.getInstance());
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CopyTargetSpellEffect(), new GenericManaCost(2));
        ability.addCost(new ReturnToHandTargetCost(new TargetControlledPermanent(2, 2, new FilterLandPermanent("lands"), false)));
        ability.addTarget(new TargetSpell(filter));
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.effects.common.CopyTargetSpellEffect

    public Twincast(UUID ownerId) {
        super(ownerId, 78, "Twincast", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{U}{U}");
        this.expansionSetCode = "M10";
        this.color.setBlue(true);
        // Copy target instant or sorcery spell. You may choose new targets for the copy.
        this.getSpellAbility().addEffect(new CopyTargetSpellEffect());
        this.getSpellAbility().addTarget(new TargetSpell(filter));
    }
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.