Reenabled Mage Verify, reverted Ripscale Predator to lizard (for now)

This commit is contained in:
Evan Kranzler 2017-10-04 12:13:22 -04:00
parent 8333852025
commit 0ebe09d468
2 changed files with 1 additions and 3 deletions

View file

@ -43,7 +43,7 @@ public class RipscalePredator extends CardImpl {
public RipscalePredator(UUID ownerId, CardSetInfo setInfo) { public RipscalePredator(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{R}{R}"); super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{R}{R}");
this.subtype.add(SubType.DINOSAUR); this.subtype.add(SubType.LIZARD);
this.power = new MageInt(6); this.power = new MageInt(6);
this.toughness = new MageInt(5); this.toughness = new MageInt(5);

View file

@ -16,7 +16,6 @@ import java.util.*;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import org.junit.Ignore;
public class VerifyCardDataTest { public class VerifyCardDataTest {
@ -49,7 +48,6 @@ public class VerifyCardDataTest {
private int failed = 0; private int failed = 0;
@Ignore
@Test @Test
public void verifyCards() throws IOException { public void verifyCards() throws IOException {
for (Card card : allCards()) { for (Card card : allCards()) {