added getters for field_types and field_cost.cmc
This commit is contained in:
reimannsum 2016-06-14 15:10:24 -04:00
parent adf0c1a44a
commit 7056035719
1 changed files with 5 additions and 0 deletions

View File

@ -1031,5 +1031,10 @@ class Card:
def get_colors(self):
return self.__dict__[field_cost].get_colors()
def get_types(self):
return self.__dict__[field_types]
def get_cmc(self):
return self.__dict__[field_cost].cmc