Package mage.abilities.common

Examples of mage.abilities.common.DiesTriggeredAbility


        this.color.setBlack(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(3);

        // When Mindslicer dies, each player discards his or her hand.
        this.addAbility(new DiesTriggeredAbility(new DiscardHandAllEffect(),false));
    }
View Full Code Here


        this.subtype.add("Golem");

        this.power = new MageInt(3);
        this.toughness = new MageInt(5);

        this.addAbility(new DiesTriggeredAbility(new GainLifeEffect(4), false));
    }
View Full Code Here

        this.subtype.add("Drake");
        this.color.setBlue(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(4);
        this.addAbility(FlyingAbility.getInstance());
        this.addAbility(new DiesTriggeredAbility(new DrawCardSourceControllerEffect(1), false));
    }
View Full Code Here

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

        // When Endless Cockroaches dies, return it to its owner's hand.
        this.addAbility(new DiesTriggeredAbility(new ReturnToHandSourceEffect()));
    }
View Full Code Here

        this.toughness = new MageInt(5);

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // When Jugan, the Rising Star dies, you may distribute five +1/+1 counters among any number of target creatures.
        Ability ability = new DiesTriggeredAbility(new JuganTheRisingStarMultiEffect(), true);
        ability.addTarget(new TargetCreaturePermanentAmount(5));
        this.addAbility(ability);
    }
View Full Code Here

        this.subtype.add("Zubera");
        this.subtype.add("Spirit");
        this.color.setBlack(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(2);
        Ability ability = new DiesTriggeredAbility(new DiscardTargetEffect(new ZuberasDiedDynamicValue()));
        ability.addTarget(new TargetOpponent());
        this.addAbility(ability);
        this.addWatcher(new ZuberasDiedWatcher());
    }
View Full Code Here

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

        // When Sell-Sword Brute dies, it deals 2 damage to you.
        this.addAbility(new DiesTriggeredAbility(new DamageControllerEffect(2), false));
    }
View Full Code Here

        this.expansionSetCode = "MBS";
        this.subtype.add("Horror");
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);
        this.addAbility(InfectAbility.getInstance());
        this.addAbility(new DiesTriggeredAbility(new ProliferateEffect()));
    }
View Full Code Here

        this.subtype.add("Drake");
        this.color.setBlue(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(2);
        this.addAbility(FlyingAbility.getInstance());
        this.addAbility(new DiesTriggeredAbility(new DiscardEachPlayerEffect()));
    }
View Full Code Here

        this.expansionSetCode = "M12";
        this.subtype.add("Golem");
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);
        this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter), true), true));
        this.addAbility(new DiesTriggeredAbility(new DrawCardSourceControllerEffect(1), true));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.common.DiesTriggeredAbility

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.