mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fix verify failures
This commit is contained in:
parent
d0d35ddc4c
commit
11dc750783
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ import java.util.UUID;
|
|||
public final class ReconstructedThopter extends CardImpl {
|
||||
|
||||
public ReconstructedThopter(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}");
|
||||
|
||||
this.subtype.add(SubType.THOPTER);
|
||||
this.power = new MageInt(2);
|
||||
|
|
|
@ -31,7 +31,7 @@ public final class TerrorBallista extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// When Terror Ballista attacks, you may sacrifice another creature. When you do, destroy target creature an opponent controls.
|
||||
ReflexiveTriggeredAbility ability = new ReflexiveTriggeredAbility(new DestroyTargetEffect(), false);
|
||||
|
|
Loading…
Reference in a new issue