fix verify failure. mtgjson had new data. (#10827)

This commit is contained in:
Susucre 2023-08-17 00:16:32 +02:00 committed by GitHub
parent babf2ba6b8
commit be26c787a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -21,7 +21,7 @@ import java.util.UUID;
public final class FrolickingFamiliar extends AdventureCard {
public FrolickingFamiliar(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{2}{U}", "Blow Off Steam", "{R}");
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.INSTANT}, "{2}{U}", "Blow Off Steam", "{R}");
this.subtype.add(SubType.OTTER);
this.subtype.add(SubType.WIZARD);

View file

@ -50,7 +50,7 @@ public final class NevaStalkedByNightmares extends CardImpl {
this.toughness = new MageInt(2);
// Menace
this.addAbility(new MenaceAbility());
this.addAbility(new MenaceAbility(false));
// When Neva, Stalked by Nightmares enters the battlefield, return target creature or enchantment card from your graveyard to your hand.
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnFromGraveyardToHandTargetEffect());
@ -63,7 +63,7 @@ public final class NevaStalkedByNightmares extends CardImpl {
new AddCountersSourceEffect(CounterType.P1P1.createInstance()),
false, filter2, false
);
ability.addEffect(new ScryEffect(1).concatBy(", then"));
ability.addEffect(new ScryEffect(1, false).concatBy(", then"));
this.addAbility(ability);
}

View file

@ -79,7 +79,7 @@ public final class SyrGingerTheMealEnder extends CardImpl {
new AddCountersSourceEffect(CounterType.P1P1.createInstance(1)),
false, filter, false
);
ability.addEffect(new ScryEffect(1).concatBy("and"));
ability.addEffect(new ScryEffect(1, false).concatBy("and"));
this.addAbility(ability);
// {2}, {T}, Sacrifice Syr Ginger: You gain life equal to its power.