Examples of UnblockableAbility


Examples of mage.abilities.keyword.UnblockableAbility

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

        // AEther Figment is unblockable.
        this.addAbility(new UnblockableAbility());

        // Kicker {3}
        this.addAbility(new KickerAbility("{3}"));

        // If AEther Figment was kicked, it enters the battlefield with two +1/+1 counters on it
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

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

        // Latch Seeker is unblockable.
        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);

        // Tidal Kraken is unblockable.
        this.addAbility(new UnblockableAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

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

        this.addAbility(HexproofAbility.getInstance());
        // Invisible Stalker is unblockable.
        this.addAbility(new UnblockableAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

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

        // Mystic of the Hidden Way can't be blocked.
        this.addAbility(new UnblockableAbility());
        // Morph {2}{U}
        this.addAbility(new MorphAbility(this, new ManaCostsImpl("{2}{U}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

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

        // Triton Shorestalker can't be blocked.
        this.addAbility(new UnblockableAbility("{this} can't be blocked"));
    }
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

        subtype.add("Elemental");
        color.setBlue(true);
        color.setBlack(true);
        power = new MageInt(3);
        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);

        this.addAbility(InfectAbility.getInstance());
        this.addAbility(new UnblockableAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

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

        this.addAbility(new CantBlockAbility());
        this.addAbility(new UnblockableAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.UnblockableAbility

        this.toughness = new MageInt(1);

        // Bestow {5}{U}
        this.addAbility(new BestowAbility(this, "{5}{U}"));
        // Flitterstep Eidolon can't be blocked.
        this.addAbility(new UnblockableAbility());
        // Enchanted creature gets +1/+1 and can't be blocked.
        Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(1,1, Duration.WhileOnBattlefield));
        ability.addEffect(new UnblockableAttachedEffect(AttachmentType.AURA));       
        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.