Package mage.abilities.keyword

Examples of mage.abilities.keyword.CascadeAbility


        this.color.setGreen(true);
        this.color.setWhite(true);
        this.power = new MageInt(5);
        this.toughness = new MageInt(5);

        this.addAbility(new CascadeAbility());
    }
View Full Code Here


        super(ownerId, 66, "Captured Sunlight", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{2}{G}{W}");
        this.expansionSetCode = "ARB";
        this.color.setGreen(true);
        this.color.setWhite(true);
        this.getSpellAbility().addEffect(new GainLifeEffect(4));
        this.addAbility(new CascadeAbility());
    }
View Full Code Here

        super(ownerId, 1, "Ardent Plea", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}{U}");
        this.expansionSetCode = "ARB";
        this.color.setWhite(true);
        this.color.setBlue(true);
        this.addAbility(new ExaltedAbility());
        this.addAbility(new CascadeAbility());
    }
View Full Code Here

        this.expansionSetCode = "ARB";

        this.color.setRed(true);
        this.color.setGreen(true);

        this.addAbility(new CascadeAbility());
        this.getSpellAbility().addEffect(new BoostControlledEffect(1, 0, Duration.EndOfTurn));
    }
View Full Code Here

        // When Enigma Sphinx is put into your graveyard from the battlefield, put it into your library third from the top.
        this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new EnigmaSphinxEffect()));

        // Cascade
        this.addAbility(new CascadeAbility());
    }
View Full Code Here

        this.expansionSetCode = "ARB";
        this.color.setBlack(true);
        this.color.setRed(true);
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        this.getSpellAbility().addEffect(new DamageTargetEffect(4));
        this.addAbility(new CascadeAbility());
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.CascadeAbility

Copyright © 2018 www.massapicom. 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.