Examples of SkipNextUntapSourceEffect


Examples of mage.abilities.effects.common.SkipNextUntapSourceEffect

    public WaterveilCavern(UUID ownerId) {
        super(ownerId, 286, "Waterveil Cavern", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "CHK";
        this.addAbility(new ColorlessManaAbility());
        Ability blueManaAbility = new BlueManaAbility();
        blueManaAbility.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(blueManaAbility);
        Ability blackManaAbility = new BlackManaAbility();
        blackManaAbility.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(blackManaAbility);
    }
View Full Code Here

Examples of mage.abilities.effects.common.SkipNextUntapSourceEffect

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

        // Whenever Lead Golem attacks, it doesn't untap during its controller's next untap step.
        Ability ability = new AttacksTriggeredAbility(new SkipNextUntapSourceEffect(), false);
        this.addAbility(ability);
    }
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.