Examples of IslandwalkAbility


Examples of mage.abilities.keyword.IslandwalkAbility

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

        this.addAbility(new IslandwalkAbility());
        SimpleActivatedAbility ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TapTargetEffect(), new ManaCostsImpl("{2}{U}"));
        ability.addTarget(new TargetCreaturePermanent(filter));
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

        this.expansionSetCode = "ZEN";
        this.color.setGreen(true);
        this.subtype.add("Snake");
        this.power = new MageInt(2);
        this.toughness = new MageInt(1);
        this.addAbility(new IslandwalkAbility());
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl("{G}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

        execute();

        assertPermanentCount(playerA, "Master of the Pearl Trident", 1);
        assertLife(playerB, 18);
        assertPowerToughness(playerA, "Merfolk of the Pearl Trident", 2, 2);
        assertAbility(playerA, "Merfolk of the Pearl Trident", new IslandwalkAbility(), true);
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

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

        // Islandwalk
        this.addAbility(new IslandwalkAbility());
        // Merfolk spells and Wizard spells you cast cost {1} less to cast.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostReductionControllerEffect(filter, 1)));
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

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

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

Examples of mage.abilities.keyword.IslandwalkAbility

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

        // Islandwalk
        this.addAbility(new IslandwalkAbility());
        // Whenever Colossal Whale attacks, you may exile target creature defending player controls until Colossal Whale leaves the battlefield.
        this.addAbility(new ColossalWhaleAbility());
        // Implemented as triggered effect that doesn't uses the stack (implementation with watcher does not work correctly because if the returned creature
        // has a DiesTriggeredAll ability it triggers for the dying Banish Priest, what shouldn't happen)
        this.addAbility(new ColossalWhaleReturnExiledAbility());
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

        this.color.setGreen(true);
        this.power = new MageInt(5);
        this.toughness = new MageInt(9);

        // Islandwalk
        this.addAbility(new IslandwalkAbility());
        // Whenever Meandering Towershell attacks, exile it.
        // Return it to the battlefield under your control tapped and attacking
        // at the beginning of the next declare attackers step on your next turn.
        this.addAbility(new AttacksTriggeredAbility(new MeanderingTowershellEffect(), false));
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

        color.setBlue(true);
        subtype.add("Squid");
        power = new MageInt(1);
        toughness = new MageInt(1);

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

Examples of mage.abilities.keyword.IslandwalkAbility

        // Other Merfolk creatures get +1/+1 and have islandwalk.
        Effect effect = new BoostAllEffect(1, 1, Duration.WhileOnBattlefield, filter, true);
        effect.setText("Other Merfolk creatures get +1/+1");
        Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect);
        effect = new GainAbilityAllEffect(new IslandwalkAbility(), Duration.WhileOnBattlefield, filter, true);
        effect.setText("and have islandwalk");
        ability.addEffect(effect);
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

        color.setBlue(true);
        subtype.add("Squid");
        power = new MageInt(1);
        toughness = new MageInt(1);

        this.addAbility(new IslandwalkAbility());
    }
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.