Champion bug fixes

This commit is contained in:
drmDev 2016-04-11 17:06:14 -04:00
parent 57a992649e
commit f2d5462c97
13 changed files with 21 additions and 15 deletions

View file

@ -61,7 +61,7 @@ public class BoggartMob extends CardImpl {
this.toughness = new MageInt(5);
// Champion a Goblin
this.addAbility(new ChampionAbility(this, "Goblin"));
this.addAbility(new ChampionAbility(this, "Goblin", false));
// Whenever a Goblin you control deals combat damage to a player, you may put a 1/1 black Goblin Rogue creature token onto the battlefield.
this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility(

View file

@ -56,7 +56,7 @@ public class ChangelingBerserker extends CardImpl {
this.addAbility(HasteAbility.getInstance());
// Champion a creature
this.addAbility(new ChampionAbility(this, ""));
this.addAbility(new ChampionAbility(this, "", true));
}
public ChangelingBerserker(final ChangelingBerserker card) {

View file

@ -53,7 +53,7 @@ public class ChangelingHero extends CardImpl {
this.addAbility(ChangelingAbility.getInstance());
// Champion a creature
this.addAbility(new ChampionAbility(this, ""));
this.addAbility(new ChampionAbility(this, "", true));
// Lifelink
this.addAbility(LifelinkAbility.getInstance());

View file

@ -52,7 +52,7 @@ public class ChangelingTitan extends CardImpl {
this.addAbility(ChangelingAbility.getInstance());
// Champion a creature
this.addAbility(new ChampionAbility(this, ""));
this.addAbility(new ChampionAbility(this, "", true));
}
public ChangelingTitan(final ChangelingTitan card) {

View file

@ -64,7 +64,7 @@ public class MistbindClique extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
// Champion a Faerie
this.addAbility(new ChampionAbility(this, "Faerie"));
this.addAbility(new ChampionAbility(this, "Faerie", false));
// When a Faerie is championed with Mistbind Clique, tap all lands target player controls.
this.addAbility(new MistbindCliqueAbility());

View file

@ -53,7 +53,7 @@ public class NovaChaser extends CardImpl {
this.addAbility(TrampleAbility.getInstance());
// Champion an Elemental
this.addAbility(new ChampionAbility(this, "Elemental"));
this.addAbility(new ChampionAbility(this, "Elemental", false));
}
public NovaChaser(final NovaChaser card) {

View file

@ -60,7 +60,7 @@ public class ThoughtweftTrio extends CardImpl {
this.addAbility(VigilanceAbility.getInstance());
// Champion a Kithkin
this.addAbility(new ChampionAbility(this, "Kithkin"));
this.addAbility(new ChampionAbility(this, "Kithkin", false));
// Thoughtweft Trio can block any number of creatures.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CanBlockAdditionalCreatureEffect(0)));

View file

@ -63,7 +63,7 @@ public class WanderwineProphets extends CardImpl {
this.toughness = new MageInt(4);
// Champion a Merfolk
this.addAbility(new ChampionAbility(this, "Merfolk"));
this.addAbility(new ChampionAbility(this, "Merfolk", false));
// Whenever Wanderwine Prophets deals combat damage to a player, you may sacrifice a Merfolk. If you do, take an extra turn after this one.
Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(new AddExtraTurnControllerEffect(), true);
ability.addCost(new SacrificeTargetCost(new TargetControlledPermanent(1, 1, filter, true)));

View file

@ -70,7 +70,7 @@ public class WrensRunPackmaster extends CardImpl {
this.toughness = new MageInt(5);
// Champion an Elf
this.addAbility(new ChampionAbility(this, "Elf"));
this.addAbility(new ChampionAbility(this, "Elf", false));
// {2}{G}: Put a 2/2 green Wolf creature token onto the battlefield.
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new WolfToken("LRW")), new ManaCostsImpl<>("{2}{G}")));

View file

@ -55,7 +55,7 @@ public class LightningCrafter extends CardImpl {
this.toughness = new MageInt(3);
// Champion a Goblin or Shaman
this.addAbility(new ChampionAbility(this, new String[]{"Goblin", "Shaman"}));
this.addAbility(new ChampionAbility(this, new String[]{"Goblin", "Shaman"}, false));
// {T}: Lightning Crafter deals 3 damage to target creature or player.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(3), new TapSourceCost());

View file

@ -60,7 +60,7 @@ public class SupremeExemplar extends CardImpl {
this.addAbility(FlyingAbility.getInstance());
// Champion an Elemental
this.addAbility(new ChampionAbility(this, "Elemental"));
this.addAbility(new ChampionAbility(this, "Elemental", false));
}
public SupremeExemplar(final SupremeExemplar card) {

View file

@ -68,7 +68,7 @@ public class UnstoppableAsh extends CardImpl {
this.addAbility(TrampleAbility.getInstance());
// Champion a Treefolk or Warrior
this.addAbility(new ChampionAbility(this, new String[]{"Treefolk", "Warrior"}));
this.addAbility(new ChampionAbility(this, new String[]{"Treefolk", "Warrior"}, false));
// Whenever a creature you control becomes blocked, it gets +0/+5 until end of turn.
Effect effect = new BoostTargetEffect(0, 5, Duration.EndOfTurn);