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

@ -119,6 +119,11 @@ public class StackAbility implements StackObject, Ability {
return emptyList;
}
@Override
public boolean hasSubtype(String subtype) {
return false;
}
@Override
public List<String> getSupertype() {
return emptyList;