Allow for 'Special' rarity level

This commit is contained in:
Correl Roush 2010-08-26 00:45:31 -04:00
parent cf0571ba41
commit f440d68139

1
mtg.py
View file

@ -170,6 +170,7 @@ class Card:
'U': 'Uncommon',
'R': 'Rare',
'M': 'Mythic Rare',
'S': 'Special',
}
def __init__(self, name, type, attributes, cost=0, power=0, toughness=0, sets=None, rarity=None, text=[], owner=None):