Allow for 'Special' rarity level
This commit is contained in:
parent
cf0571ba41
commit
f440d68139
1 changed files with 1 additions and 0 deletions
1
mtg.py
1
mtg.py
|
@ -170,6 +170,7 @@ class Card:
|
||||||
'U': 'Uncommon',
|
'U': 'Uncommon',
|
||||||
'R': 'Rare',
|
'R': 'Rare',
|
||||||
'M': 'Mythic 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):
|
def __init__(self, name, type, attributes, cost=0, power=0, toughness=0, sets=None, rarity=None, text=[], owner=None):
|
||||||
|
|
Loading…
Reference in a new issue