More correct checking for having subtypes (card.hasSubtype()). Changeling ability. Refactored all cards.

This commit is contained in:
magenoxx 2011-08-14 10:30:26 +04:00
parent 2da9518486
commit f13ba5d7fb
24 changed files with 126 additions and 21 deletions

View file

@ -16,6 +16,7 @@ public interface MageObject extends MageItem, Serializable {
public List<CardType> getCardType();
public List<String> getSubtype();
public boolean hasSubtype(String subtype);
public List<String> getSupertype();
public Abilities<Ability> getAbilities();