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:
parent
05970433ff
commit
feba043fdd
3 changed files with 5 additions and 2 deletions
Mage.Sets/src/mage/cards
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
|
@ -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)));
|
||||
|
|
|
@ -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)));
|
||||
|
|
Loading…
Add table
Reference in a new issue