Examples of LoseAbilityTargetEffect


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

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

        // {tap}: Target creature loses flying until end of turn.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new LoseAbilityTargetEffect(FlyingAbility.getInstance(), Duration.EndOfTurn), new TapSourceCost());
        ability.addTarget(new TargetCreaturePermanent());
        this.addAbility(ability);
    }
View Full Code Here

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

        // Flying
        this.addAbility(FlyingAbility.getInstance());
       
        // Whenever Kinscaer Harpoonist attacks, you may have target creature lose flying until end of turn.
        Effect effect = new LoseAbilityTargetEffect(FlyingAbility.getInstance(), Duration.EndOfTurn);
        effect.setText("you may have target creature lose flying until end of turn");
        Ability ability = new AttacksTriggeredAbility(effect, true);
        ability.addTarget(new TargetCreaturePermanent());
        this.addAbility(ability);
       
    }
View Full Code Here

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

        this.color.setRed(true);

        // Vertigo deals 2 damage to target creature with flying. That creature loses flying until end of turn.
        this.getSpellAbility().addEffect(new DamageTargetEffect(2));
        this.getSpellAbility().addEffect(new LoseAbilityTargetEffect(FlyingAbility.getInstance(), Duration.EndOfTurn));
        this.getSpellAbility().addTarget(new TargetCreaturePermanent(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.