mirror of
https://github.com/correl/mage.git
synced 2025-04-10 09:11:04 -09:00
fixed verify failures
This commit is contained in:
parent
529642a98b
commit
18836d1710
4 changed files with 3 additions and 6 deletions
Mage.Sets/src/mage/cards
Mage.Verify/src/test/java/mage/verify
|
@ -40,7 +40,7 @@ public final class BothersomeQuasit extends CardImpl {
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
// Menace
|
// Menace
|
||||||
this.addAbility(new MenaceAbility());
|
this.addAbility(new MenaceAbility(false));
|
||||||
|
|
||||||
// Goaded creatures your opponents control can't block.
|
// Goaded creatures your opponents control can't block.
|
||||||
this.addAbility(new SimpleStaticAbility(
|
this.addAbility(new SimpleStaticAbility(
|
||||||
|
|
|
@ -28,7 +28,7 @@ public final class GanaxAstralHunter extends CardImpl {
|
||||||
this.addSuperType(SuperType.LEGENDARY);
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
this.subtype.add(SubType.DRAGON);
|
this.subtype.add(SubType.DRAGON);
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(3);
|
this.toughness = new MageInt(4);
|
||||||
|
|
||||||
// Flying
|
// Flying
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
|
|
@ -76,7 +76,7 @@ public final class MulticlassBaldric extends CardImpl {
|
||||||
)).addHint(PartyCountHint.instance));
|
)).addHint(PartyCountHint.instance));
|
||||||
|
|
||||||
// Equip {2}
|
// Equip {2}
|
||||||
this.addAbility(new EquipAbility(2));
|
this.addAbility(new EquipAbility(2, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
private MulticlassBaldric(final MulticlassBaldric card) {
|
private MulticlassBaldric(final MulticlassBaldric card) {
|
||||||
|
|
|
@ -92,9 +92,6 @@ public class VerifyCardDataTest {
|
||||||
|
|
||||||
// power-toughness
|
// power-toughness
|
||||||
skipListCreate(SKIP_LIST_PT);
|
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
|
// color
|
||||||
skipListCreate(SKIP_LIST_COLOR);
|
skipListCreate(SKIP_LIST_COLOR);
|
||||||
|
|
Loading…
Add table
Reference in a new issue