Examples of MountainwalkAbility


Examples of mage.abilities.keyword.MountainwalkAbility

        this.subtype.add("Goblin");
        this.subtype.add("Scout");
        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(2);
        this.toughness = new MageInt(2);

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

Examples of mage.abilities.keyword.MountainwalkAbility

        this.subtype.add("Lizard");
        this.color.setRed(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(4);

    this.addAbility(new MountainwalkAbility());
    this.addAbility(new EchoAbility("{1}{R}{R}"));
    }
View Full Code Here

Examples of mage.abilities.keyword.MountainwalkAbility

        this.color.setWhite(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);

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

Examples of mage.abilities.keyword.MountainwalkAbility

                            creature.addToughness(2);
                        }
                        break;
                    case AbilityAddingRemovingEffects_6:
                        if (sublayer == SubLayer.NA) {
                            creature.addAbility(new MountainwalkAbility(), game);
                        }
                        break;
                }
                return true;
            }
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.