Examples of DrawCardOpponentTriggeredAbility


Examples of mage.abilities.common.DrawCardOpponentTriggeredAbility

    public MindsEye(UUID ownerId) {
        super(ownerId, 205, "Mind's Eye", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{5}");
        this.expansionSetCode = "MRD";

        // Whenever an opponent draws a card, you may pay {1}. If you do, draw a card.
        this.addAbility(new DrawCardOpponentTriggeredAbility(new DoIfCostPaid(new DrawCardSourceControllerEffect(1), new GenericManaCost(1)), false, false));
    }
View Full Code Here

Examples of mage.abilities.common.DrawCardOpponentTriggeredAbility

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

        // Whenever an opponent draws a card, Fate Unraveler deals 1 damage to that player.
        this.addAbility(new DrawCardOpponentTriggeredAbility(new DamageTargetEffect(1, true, "that player"), false, true));
    }
View Full Code Here

Examples of mage.abilities.common.DrawCardOpponentTriggeredAbility

        // At the beginning of each player's draw step, that player draws an additional card.
        Effect effect = new DrawCardTargetEffect(1);
        effect.setText("that player draws an additional card");
        this.addAbility(new BeginningOfDrawTriggeredAbility(effect , TargetController.ANY, false));
        // Whenever an opponent draws a card, Nekusar, the Mindrazer deals 1 damage to that player.
        this.addAbility(new DrawCardOpponentTriggeredAbility(new DamageTargetEffect(1, true, "him or her"), false, true));
    }
View Full Code Here

Examples of mage.abilities.common.DrawCardOpponentTriggeredAbility

        this.expansionSetCode = "M10";

        this.color.setBlack(true);

        // Whenever an opponent draws a card, Underworld Dreams deals 1 damage to him or her.
        this.addAbility(new DrawCardOpponentTriggeredAbility(new DamageTargetEffect(1, true, "him or her"), false, true));
    }
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.