mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
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:
parent
5a0d99ee6f
commit
6804216ddc
7 changed files with 252 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue