From f440d68139fbe4055dd66c6d270f04a93458cf21 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Thu, 26 Aug 2010 00:45:31 -0400 Subject: [PATCH] Allow for 'Special' rarity level --- mtg.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mtg.py b/mtg.py index 65109c9..d9ab88c 100644 --- a/mtg.py +++ b/mtg.py @@ -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):