forked from External/mage
fix verify failure. mtgjson had new data. (#10827)
This commit is contained in:
parent
babf2ba6b8
commit
be26c787a6
3 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue