Package mage.abilities.keyword

Examples of mage.abilities.keyword.MadnessAbility


        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousRuleModifyingEffect(
                new GibberingDescentSkipUpkeepEffect(),
                HellbentCondition.getInstance())));
       
        // Madness {2}{B}{B}
        this.addAbility(new MadnessAbility(this, new ManaCostsImpl<>("{2}{B}{B}")));
    }
View Full Code Here


        // Cycling {2}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));

        // Madness {3}{B}
        this.addAbility(new MadnessAbility(this, new ManaCostsImpl("{3}{B}")));
    }
View Full Code Here

        // Fiery Temper deals 3 damage to target creature or player.
        this.getSpellAbility().addEffect(new DamageTargetEffect(3));
        this.getSpellAbility().addTarget(new TargetCreatureOrPlayer());

        // Madness {R}
        this.addAbility(new MadnessAbility(this, new ManaCostsImpl("{R}")));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.MadnessAbility

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.