Examples of MadnessAbility


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

Examples of mage.abilities.keyword.MadnessAbility

        // 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

Examples of mage.abilities.keyword.MadnessAbility

        // 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
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.