Examples of UnblockableAbility


Examples of mage.abilities.keyword.UnblockableAbility

        this.toughness = new MageInt(1);

        this.addAbility(new LevelUpAbility(new ManaCostsImpl("{2}{U}")));

        Abilities<Ability> abilities1 = new AbilitiesImpl<Ability>();
        abilities1.add(new UnblockableAbility());

        Abilities<Ability> abilities2 = new AbilitiesImpl<Ability>();
        abilities2.add(ShroudAbility.getInstance());
        abilities2.add(new UnblockableAbility());
       
        LevelerCardBuilder.construct(this,
                new LevelerCardBuilder.LevelAbility(1, 2, abilities1, 2, 2),
                new LevelerCardBuilder.LevelAbility(3, -1, abilities2, 3, 3)
        );
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

            color.setBlue(true);
            color.setBlack(true);
            subtype.add("Horror");
            power = new MageInt(2);
            toughness = new MageInt(2);
            this.addAbility(new UnblockableAbility());
        }
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

        this.color.setBlue(true);
        this.power = new MageInt(6);
        this.toughness = new MageInt(6);

        // Deep-Sea Kraken is unblockable.
        this.addAbility(new UnblockableAbility());
        // Suspend 9-{2}{U}
        this.addAbility(new SuspendAbility(9, new ManaCostsImpl("{2}{U}"), this));
        // Whenever an opponent casts a spell, if Deep-Sea Kraken is suspended, remove a time counter from it.
        this.addAbility(new ConditionalTriggeredAbility(
                new SpellCastAllTriggeredAbility(new RemoveCounterSourceEffect(CounterType.TIME.createInstance()), filter, false), SuspendedCondition.getInstance(),
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

        this.subtype.add("Illusion");
        this.subtype.add("Warrior");
        this.color.setBlue(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);
        this.addAbility(new UnblockableAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

        this.color.setBlue(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);

        // Escape Artist is unblockable.
        this.addAbility(new UnblockableAbility());
        // {U}, Discard a card: Return Escape Artist to its owner's hand.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ReturnToHandSourceEffect(true), new ManaCostsImpl("{U}"));
        ability.addCost(new DiscardTargetCost(new TargetCardInHand()));
        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.