Examples of UnblockableSourceEffect


Examples of mage.abilities.effects.common.combat.UnblockableSourceEffect

        this.power = new MageInt(2);
        this.toughness = new MageInt(2);

        // {UP}: Trespassing Souleater is unblockable this turn.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD,
                new UnblockableSourceEffect(Duration.EndOfTurn),
                new PhyrexianManaCost(ColoredManaSymbol.U)));
    }
View Full Code Here

Examples of mage.abilities.effects.common.combat.UnblockableSourceEffect

class IncursionTriggeredAbility extends TriggeredAbilityImpl {

    public IncursionTriggeredAbility() {
        super(Zone.BATTLEFIELD, new BoostSourceEffect(2, 0, Duration.EndOfTurn));
        this.addEffect(new UnblockableSourceEffect(Duration.EndOfTurn));
    }
View Full Code Here

Examples of mage.abilities.effects.common.combat.UnblockableSourceEffect

        ConditionalContinousEffect effect = new ConditionalContinousEffect(new BoostSourceEffect(1, 1, Duration.WhileOnBattlefield), new PermanentsOnTheBattlefieldCondition(filter), rule);
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
       
        // {1}{U}: Harbor Bandit is unblockable this turn.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD,
                new UnblockableSourceEffect(Duration.EndOfTurn),
                new ManaCostsImpl("{1}{U}")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.combat.UnblockableSourceEffect

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

        // {2}{U}: Agent of Horizons can't be blocked this turn.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new UnblockableSourceEffect(Duration.EndOfTurn), new ManaCostsImpl("{2}{U}")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.combat.UnblockableSourceEffect

        this.power = new MageInt(1);
        this.toughness = new MageInt(1);

        // Hazy Homunculus is unblockable as long as defending player controls an untapped land.
        Effect effect = new ConditionalRestrictionEffect(
                new UnblockableSourceEffect(),
                new DefendingPlayerControlsCondition(filter));
        effect.setText("{this} is unblockable as long as defending player controls an untapped land");
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
    }
View Full Code Here

Examples of mage.abilities.effects.common.combat.UnblockableSourceEffect

        this.toughness = new MageInt(5);

        // {U}: Exile AEtherling. Return it to the battlefield under its owner's control at the beginning of the next end step.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new AEherlingRemovingEffect(), new ManaCostsImpl("{U}")));
        // {U}: AEtherling is unblockable this turn
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new UnblockableSourceEffect(), new ManaCostsImpl("{U}")));
        // {1}: AEtherling gets +1/-1 until end of turn.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, -1, Duration.EndOfTurn), new ManaCostsImpl("{1}")));
        // {1}: AEtherling gets -1/+1 until end of turn
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(-1, 1, Duration.EndOfTurn), new ManaCostsImpl("{1}")));
    }
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.