Examples of CastAsThoughItHadFlashEffect


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

        // Any player may play creature cards with converted mana cost 3 or less without paying their mana cost
        Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new AlurenRuleEffect());
        // and as though they had flash.
        // TODO: This as thought effect may only be used if the creature is cast by the aluren effect
        Effect effect = new CastAsThoughItHadFlashEffect(Duration.WhileOnBattlefield, filter, true);
        effect.setText("and as though they had flash");
        ability.addEffect(effect);
        this.addAbility(ability);
    }
View Full Code Here

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

        // {tap}: Add {1} to your mana pool.
        this.addAbility(new ColorlessManaAbility());
       
        // {2}, {tap}: Until end of turn, you may play creature cards as though they had flash.
        Effect effect = new AddContinuousEffectToGame(new CastAsThoughItHadFlashEffect(Duration.EndOfTurn, new FilterCreatureCard()));
        effect.setText("Until end of turn, you may play creature cards as though they had flash");
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new GenericManaCost(2));
        ability.addCost(new TapSourceCost());
        this.addAbility(ability);
    }
View Full Code Here

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

        this.toughness = new MageInt(1);

        // Flash
        this.addAbility(FlashAbility.getInstance());
        // Any player may play Sliver cards as though they had flash.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CastAsThoughItHadFlashEffect(Duration.WhileOnBattlefield, filter, true)));
    }
View Full Code Here

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

        this.toughness = new MageInt(4);

        // Flash
        this.addAbility(FlashAbility.getInstance());
        // You may cast green creature cards as though they had flash.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CastAsThoughItHadFlashEffect(Duration.WhileOnBattlefield, filter)));
    }
View Full Code Here

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

        this.toughness = new MageInt(2);
       
        // Flash
        this.addAbility(FlashAbility.getInstance());
        // You may cast artifact cards as though they had flash.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CastAsThoughItHadFlashEffect(Duration.WhileOnBattlefield, filter)));
    }
View Full Code Here

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

        // {tap}: Add {1} to your mana pool.
        this.addAbility(new ColorlessManaAbility());

        // {G}{U}, {tap}: You may cast nonland cards this turn as though they had flash.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD,
                new AddContinuousEffectToGame(new CastAsThoughItHadFlashEffect(Duration.EndOfTurn, filter)),
                new CompositeCost(new ManaCostsImpl("{G}{U}"), new TapSourceCost(), "{G}{U}, {T}")));
    }
View Full Code Here

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

        this.toughness = new MageInt(3);

        // Untap all creatures and lands you control during each other player's untap step.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new UntapAllDuringEachOtherPlayersUntapStepEffect(filter)));
        // You may cast creature cards as though they had flash.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CastAsThoughItHadFlashEffect(Duration.WhileOnBattlefield, new FilterCreatureCard("creature cards"))));

    }
View Full Code Here

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

       
        // If Leyline of Anticipation is in your opening hand, you may begin the game with it on the battlefield.
        this.addAbility(LeylineAbility.getInstance());
       
        // You may cast nonland cards as though they had flash. (You may cast them any time you could cast an instant.)       
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CastAsThoughItHadFlashEffect(Duration.WhileOnBattlefield, filter)));
    }
View Full Code Here

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

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // Haste
        this.addAbility(HasteAbility.getInstance());
        // You may cast sorcery spells as though they had flash.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CastAsThoughItHadFlashEffect(Duration.WhileOnBattlefield, filter)));
    }
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.