Implement garruk cards (#6650)

* Implement Garruk's Harbinger

* inline ability

* Implement Garruk's Uprising

* Implement Garruk, Unleashed

* fix Garruk, Unleashed
This commit is contained in:
htrajan 2020-06-16 18:09:26 -07:00 committed by GitHub
parent 5a0d99ee6f
commit 6804216ddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 252 additions and 2 deletions

View file

@ -985,9 +985,9 @@ public class VerifyCardDataTest {
System.out.println();
System.out.println(card.getName() + " " + card.getManaCost().getText());
if (card instanceof SplitCard) {
card.getAbilities().getRules(card.getName()).stream().forEach(System.out::println);
card.getAbilities().getRules(card.getName()).forEach(System.out::println);
} else {
card.getRules().stream().forEach(System.out::println);
card.getRules().forEach(System.out::println);
}
});
}