Examples of CyclingAbility


Examples of mage.abilities.keyword.CyclingAbility

  public Angelsong(UUID ownerId) {
    super(ownerId, 4, "Angelsong", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{W}");
    this.expansionSetCode = "ALA";
    this.color.setWhite(true);
    this.getSpellAbility().addEffect(new PreventAllCombatDamageEffect(Duration.EndOfTurn));
    this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
  }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        super(ownerId, 22, "Constricting Tendrils", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{U}");
        this.expansionSetCode = "CON";
        this.color.setBlue(true);
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        this.getSpellAbility().addEffect(new BoostTargetEffect(-3, 0, Duration.EndOfTurn));
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

    public MoltenFrame(UUID ownerId) {
        super(ownerId, 69, "Molten Frame", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{R}");
        this.expansionSetCode = "CON";
        this.color.setRed(true);
        this.getSpellAbility().addTarget(new TargetPermanent(filter));
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        this.toughness = new MageInt(4);

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // Cycling {2}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        // First strike
        this.addAbility(FirstStrikeAbility.getInstance());
        // Haste
        this.addAbility(HasteAbility.getInstance());
        // Cycling {3}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{3}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

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

        // Cycling {1}{R}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{1}{R}")));
        // When you cycle Gempalm Incinerator, you may have it deal X damage to target creature, where X is the number of Goblins on the battlefield.
        Ability ability = new CycleTriggeredAbility(new DamageTargetEffect(new PermanentsOnBattlefieldCount(filter)),true);
        ability.addTarget(new TargetCreaturePermanent());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

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

        // Cycling {3}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{3}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        // Barren Moor enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {B} to your mana pool.
        this.addAbility(new BlackManaAbility());
        // Cycling {B}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{B}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        // Solar Blast deals 3 damage to target creature or player.
        this.getSpellAbility().addEffect(new DamageTargetEffect(3));
        this.getSpellAbility().addTarget(new TargetCreatureOrPlayer());
        // Cycling {1}{R}{R}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{1}{R}{R}")));
        // When you cycle Solar Blast, you may have it deal 1 damage to target creature or player.
        Ability ability = new CycleTriggeredAbility(new DamageTargetEffect(1), true);
        ability.addTarget(new TargetCreatureOrPlayer());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        this.color.setRed(true);

        // Starstorm deals X damage to each creature.
        this.getSpellAbility().addEffect(new DamageAllEffect(new ManacostVariableValue(), new FilterCreaturePermanent()));
        // Cycling {3}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{3}")));
    }
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.