forked from External/mage
[AKH] Added 3/27 spoilers to mtg-cards-data.txt. Implemented several of the new cards.
This commit is contained in:
parent
adc3b2ccac
commit
55b433ae36
6400 changed files with 19315 additions and 14351 deletions
|
|
@ -30,6 +30,7 @@ package mage.client.deckeditor.table;
|
|||
|
||||
import mage.constants.CardType;
|
||||
import mage.cards.MageCard;
|
||||
import mage.constants.SuperType;
|
||||
import mage.view.CardView;
|
||||
|
||||
/**
|
||||
|
|
@ -54,8 +55,8 @@ public final class CardHelper {
|
|||
|
||||
public static String getType(CardView c) {
|
||||
StringBuilder type = new StringBuilder();
|
||||
for (String superType : c.getSuperTypes()) {
|
||||
type.append(superType);
|
||||
for (SuperType superType : c.getSuperTypes()) {
|
||||
type.append(superType.toString());
|
||||
type.append(' ');
|
||||
}
|
||||
for (CardType cardType : c.getCardTypes()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue