Merge pull request #1844 from drmDev/master

SilentSkimmer and PyreHound bug fixes
This commit is contained in:
Derek M 2016-04-11 11:42:18 -04:00
commit 90507f4c55
4 changed files with 6 additions and 4 deletions

View file

@ -60,7 +60,6 @@ public class SilentSkimmer extends CardImpl {
this.addAbility(FlyingAbility.getInstance());
// Whenever Silent Skimmer attacks, defending player loses 2 life.
this.addAbility(new AttacksTriggeredAbility(new LoseLifeDefendingPlayerEffect(2, true), false));
}
public SilentSkimmer(final SilentSkimmer card) {

View file

@ -56,7 +56,7 @@ public class PyreHound extends CardImpl {
this.addAbility(TrampleAbility.getInstance());
// Whenever you cast an instant or sorcery spell, put a +1/+1 counter on Pyre Hound.
this.addAbility(new SpellCastControllerTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance()),
new FilterInstantOrSorcerySpell("an instant or sorcery spell"), true));
new FilterInstantOrSorcerySpell("an instant or sorcery spell"), false));
}
public PyreHound(final PyreHound card) {