mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fixed verify failures
This commit is contained in:
parent
529642a98b
commit
18836d1710
4 changed files with 3 additions and 6 deletions
|
@ -40,7 +40,7 @@ public final class BothersomeQuasit extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Goaded creatures your opponents control can't block.
|
||||
this.addAbility(new SimpleStaticAbility(
|
||||
|
|
|
@ -28,7 +28,7 @@ public final class GanaxAstralHunter extends CardImpl {
|
|||
this.addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.DRAGON);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
|
|
@ -76,7 +76,7 @@ public final class MulticlassBaldric extends CardImpl {
|
|||
)).addHint(PartyCountHint.instance));
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(2));
|
||||
this.addAbility(new EquipAbility(2, false));
|
||||
}
|
||||
|
||||
private MulticlassBaldric(final MulticlassBaldric card) {
|
||||
|
|
|
@ -92,9 +92,6 @@ public class VerifyCardDataTest {
|
|||
|
||||
// power-toughness
|
||||
skipListCreate(SKIP_LIST_PT);
|
||||
skipListAddName(SKIP_LIST_PT, "CLB", "Bronze Walrus"); // temporary
|
||||
skipListAddName(SKIP_LIST_PT, "CLB", "Explosive Crystal"); // temporary
|
||||
skipListAddName(SKIP_LIST_PT, "CLB", "Banishing Coils"); // temporary
|
||||
|
||||
// color
|
||||
skipListCreate(SKIP_LIST_COLOR);
|
||||
|
|
Loading…
Reference in a new issue