Examples of ReturnToHandChosenControlledPermanentEffect


Examples of mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect

        // Izzet Boilerworks enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());

        // When Izzet Boilerworks enters the battlefield, return a land you control to its owner's hand.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(filter), false));
        // {T}: Add {U}{R} to your mana pool.
        this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(1, 0, 1, 0, 0, 0, 0), new TapSourceCost()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect

        // Orzhov Basilica enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());

        // When Orzhov Basilica enters the battlefield, return a land you control to its owner's hand.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(filter), false));

        // {T}: Add {W}{B} to your mana pool.
        this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(0, 0, 0, 1, 1, 0, 0), new TapSourceCost()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect

        this.expansionSetCode = "RAV";

        // Golgari Rot Farm enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // When Golgari Rot Farm enters the battlefield, return a land you control to its owner's hand.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(filter)));
        // {tap}: Add {B}{G} to your mana pool.
        this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(0, 1, 0, 0, 1, 0, 0), new TapSourceCost()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect

        this.color.setGreen(true);
        this.power = new MageInt(5);
        this.toughness = new MageInt(4);
        this.addAbility(TrampleAbility.getInstance());
        // At the beginning of your upkeep, return a green creature you control to its owner's hand.
        this.addAbility(new BeginningOfUpkeepTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(filter), TargetController.YOU, false));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect

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

        // When Noggle Bridgebreaker enters the battlefield, return a land you control to its owner's hand.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(filter), false));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect

        this.toughness = new MageInt(2);

        // Keymaster Rogue is unblockable.
        this.addAbility(new UnblockableAbility());
        // When Keymaster Rogue enters the battlefield, return a creature you control to its owner's hand.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(new FilterControlledCreaturePermanent())));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect

        this.expansionSetCode = "DIS";

        // Azorius Chancery enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // When Azorius Chancery enters the battlefield, return a land you control to its owner's hand.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(filter), false));
        // {tap}: Add {W}{U} to your mana pool.
        this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(0, 0, 1, 1, 0, 0, 0), new TapSourceCost()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect

        this.expansionSetCode = "DIS";

        // Rakdos Carnarium enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // When Rakdos Carnarium enters the battlefield, return a land you control to its owner's hand.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(filter), false));
        // {tap}: Add {B}{R} to your mana pool.
        this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(1, 0, 0, 0, 1, 0, 0), new TapSourceCost()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect

        this.color.setBlue(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(4);
       
        //At the beginning of your upkeep, return a permanent you control to its owner's hand.
        this.addAbility(new BeginningOfUpkeepTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(new FilterControlledPermanent()), TargetController.YOU, false));
    }
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.