Examples of MountainwalkAbility


Examples of mage.abilities.keyword.MountainwalkAbility

        this.subtype.add("Kor");
        this.subtype.add("Scout");
        this.color.setWhite(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(1);
        this.addAbility(new MountainwalkAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.MountainwalkAbility

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

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

Examples of mage.abilities.keyword.MountainwalkAbility

        this.color.setRed(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostAllEffect(1, 1, Duration.WhileOnBattlefield, filter, true)));
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAllEffect(new MountainwalkAbility(), Duration.WhileOnBattlefield, filter, true)));
    }
View Full Code Here

Examples of mage.abilities.keyword.MountainwalkAbility

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

        // Mountainwalk
        this.addAbility(new MountainwalkAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.MountainwalkAbility

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

        // Mountainwalk
        this.addAbility(new MountainwalkAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.MountainwalkAbility

        this.subtype.add("Ogre");
        this.subtype.add("Warrior");
        this.color.setRed(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(3);
        this.addAbility(new MountainwalkAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.MountainwalkAbility

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

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

Examples of mage.abilities.keyword.MountainwalkAbility

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

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

Examples of mage.abilities.keyword.MountainwalkAbility

            Permanent creature = game.getPermanent(enchantment.getAttachedTo());
            if (creature != null) {
                switch (layer) {
                    case AbilityAddingRemovingEffects_6:
                        if (sublayer == SubLayer.NA) {
                            creature.addAbility(new MountainwalkAbility(), game);
                        }
                        break;
                }
                return true;
            }
View Full Code Here

Examples of mage.abilities.keyword.MountainwalkAbility

        this.expansionSetCode = "MBS";
        this.subtype.add("Horror");
        this.color.setGreen(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(3);
        this.addAbility(new MountainwalkAbility());
    }
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.