1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-08 09:11:04 -09:00

fix verify failures

This commit is contained in:
theelk801 2023-04-06 09:58:01 -04:00
parent 05970433ff
commit feba043fdd
3 changed files with 5 additions and 2 deletions

View file

@ -26,7 +26,7 @@ public final class ComingInHot extends CardImpl {
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(
FirstStrikeAbility.getInstance(), Duration.EndOfTurn
).setText("and gains first strike until end of turn"));
this.getSpellAbility().addEffect(new ScryEffect(1));
this.getSpellAbility().addEffect(new ScryEffect(1, false));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
}

View file

@ -23,6 +23,9 @@ public final class GlisteningGoremonger extends CardImpl {
this.subtype.add(SubType.DEVIL);
this.power = new MageInt(3);
this.toughness = new MageInt(2);
this.color.setBlack(true);
this.color.setRed(true);
this.nightCard = true;
// When Glistening Goremonger dies, each opponent sacrifices an artifact or creature.
this.addAbility(new DiesSourceTriggeredAbility(new SacrificeOpponentsEffect(StaticFilters.FILTER_PERMANENT_ARTIFACT_CREATURE)));

View file

@ -31,7 +31,7 @@ public final class NezumiFreewheeler extends CardImpl {
this.secondSideCardClazz = mage.cards.h.HideousFleshwheeler.class;
// Menace
this.addAbility(new MenaceAbility());
this.addAbility(new MenaceAbility(false));
// When Nezumi Freewheeler enters the battlefield, each player mills three cards.
this.addAbility(new EntersBattlefieldTriggeredAbility(new MillCardsEachPlayerEffect(3, TargetController.EACH_PLAYER)));