Examples of EchoAbility


Examples of mage.abilities.keyword.EchoAbility

        this.color.setRed(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);

        this.addAbility(HasteAbility.getInstance());
        this.addAbility(new EchoAbility("{1}{R}"));
    }
View Full Code Here

Examples of mage.abilities.keyword.EchoAbility

        this.expansionSetCode = "USG";
        this.subtype.add("Troll");
        this.color.setGreen(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(3);
        this.addAbility(new EchoAbility("{1}{G}"));
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl("{1}{G}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.EchoAbility

        this.color.setRed(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(1);

        this.addAbility(new EchoAbility("{2}{R}"));
        // When Keldon Vandals enters the battlefield, destroy target artifact.
        Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect());
        ability.addTarget(new TargetPermanent(filter));
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.keyword.EchoAbility

        this.expansionSetCode = "UDS";
        this.subtype.add("Juggernaut");
        this.power = new MageInt(4);
        this.toughness = new MageInt(3);

        this.addAbility(new EchoAbility("{4}"));
        // Sacrifice an artifact: Put a +1/+1 counter on target creature.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersTargetEffect(CounterType.P1P1.createInstance()), new SacrificeTargetCost(new TargetControlledPermanent(filter)));
        ability.addTarget(new TargetCreaturePermanent());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.keyword.EchoAbility

        this.subtype.add("Wurm");
        this.color.setGreen(true);
        this.power = new MageInt(6);
        this.toughness = new MageInt(6);

    this.addAbility(new EchoAbility("{4}{G}"));
    }
View Full Code Here

Examples of mage.abilities.keyword.EchoAbility

        this.subtype.add("Beast");
        this.color.setRed(true);
        this.power = new MageInt(6);
        this.toughness = new MageInt(6);

    this.addAbility(new EchoAbility("{4}{R}{R}"));

    //When Crater Hellion enters the battlefield, it deals 4 damage to each other creature.
    this.addAbility(new EntersBattlefieldTriggeredAbility(new CraterHellionEffect(), false));
    }
View Full Code Here

Examples of mage.abilities.keyword.EchoAbility

        this.subtype.add("Cat");
        this.color.setGreen(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);

    this.addAbility(new EchoAbility("{G}"));
    }
View Full Code Here

Examples of mage.abilities.keyword.EchoAbility

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // Haste
        this.addAbility(HasteAbility.getInstance());
        // Echo-Discard a card.
        this.addAbility(new EchoAbility(new DiscardCardCost()));
    }
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.