Examples of SetToughnessSourceEffect


Examples of mage.abilities.effects.common.continious.SetToughnessSourceEffect

        // Flying
        this.addAbility(FlyingAbility.getInstance());
       
        // Domain - Aven Trailblazer's toughness is equal to the number of basic land types among lands you control.
        this.addAbility(new SimpleStaticAbility(Zone.ALL, new SetToughnessSourceEffect(new DomainValue(), Duration.EndOfGame)));
       
    }
View Full Code Here

Examples of mage.abilities.effects.common.continious.SetToughnessSourceEffect

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

        // Treefolk Seedlings's toughness is equal to the number of Forests you control.
        this.addAbility(new SimpleStaticAbility(Zone.ALL, new SetToughnessSourceEffect(new PermanentsOnBattlefieldCount(filterLands), Duration.EndOfGame)));
    }
View Full Code Here

Examples of mage.abilities.effects.common.continious.SetToughnessSourceEffect

        this.toughness = new MageInt(0);
        // Defender; reach
        this.addAbility(DefenderAbility.getInstance());
        this.addAbility(ReachAbility.getInstance());
        // Traproot Kami's toughness is equal to the number of Forests on the battlefield.
        this.addAbility(new SimpleStaticAbility(Zone.ALL, new SetToughnessSourceEffect(new PermanentsOnBattlefieldCount(filter), Duration.EndOfGame)));
    }
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.