Examples of IslandwalkAbility


Examples of mage.abilities.keyword.IslandwalkAbility

        this.expansionSetCode = "PLC";

        this.color.setBlue(true);

        // Choose one - Target creature gains islandwalk until end of turn;
        this.getSpellAbility().addEffect(new GainAbilityTargetEffect(new IslandwalkAbility(), Duration.EndOfTurn));
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        // or target creature gets +2/-1 until end of turn;
        Mode mode = new Mode();
        mode.getEffects().add(new BoostTargetEffect(2, -1, Duration.EndOfTurn));
        mode.getTargets().add(new TargetCreaturePermanent());
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

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

        // Other Merfolk creatures you control get +1/+1 and have islandwalk.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, filter, true)));
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(new IslandwalkAbility(), Duration.WhileOnBattlefield, filter, true)));
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

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

        // Islandwalk
        this.addAbility(new IslandwalkAbility());
        // Phasing
        this.addAbility(PhasingAbility.getInstance());
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

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

        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD,
                new GainAbilitySourceEffect(new IslandwalkAbility(), Duration.EndOfTurn),
                new ManaCostsImpl("{U}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

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

        this.addAbility(new IslandwalkAbility());
        this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new MerfolkSpyEffect(), false, true));
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

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

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

Examples of mage.abilities.keyword.IslandwalkAbility

        this.subtype.add("Merfolk");
        this.subtype.add("Rogue");
        this.color.setBlue(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(1);
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(new IslandwalkAbility(), Duration.EndOfTurn), new ColoredManaCost(ColoredManaSymbol.U)));
    }
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

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

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

Examples of mage.abilities.keyword.IslandwalkAbility

        this.toughness = new MageInt(3);

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

        Abilities<Ability> levelAbilities = new AbilitiesImpl<Ability>();
        levelAbilities.add(new IslandwalkAbility());

        LevelerCardBuilder.construct(this,
                new LevelerCardBuilder.LevelAbility(1, 4, new AbilitiesImpl<Ability>(), 0, 6),
                new LevelerCardBuilder.LevelAbility(5, -1, levelAbilities, 6, 6)
        );
View Full Code Here

Examples of mage.abilities.keyword.IslandwalkAbility

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

        this.addAbility(new BloodthirstAbility(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.