special card representation improved
This commit is contained in:
parent
3b590d9fca
commit
ab615f354c
1 changed files with 7 additions and 4 deletions
7
card.py
7
card.py
|
@ -5,14 +5,16 @@ RED = 'r'
|
|||
BLUE = 'b'
|
||||
GREEN = 'g'
|
||||
YELLOW = 'y'
|
||||
BLACK = 'x'
|
||||
|
||||
COLORS = (RED, BLUE, GREEN, YELLOW)
|
||||
COLORS = (RED, BLUE, GREEN, YELLOW, BLACK)
|
||||
|
||||
COLOR_ICONS = {
|
||||
RED: Emoji.HEAVY_BLACK_HEART,
|
||||
BLUE: Emoji.BLUE_HEART,
|
||||
GREEN: Emoji.GREEN_HEART,
|
||||
YELLOW: Emoji.YELLOW_HEART,
|
||||
BLACK: '⬛️'
|
||||
}
|
||||
|
||||
# Values
|
||||
|
@ -176,7 +178,8 @@ class Card(object):
|
|||
|
||||
def __repr__(self):
|
||||
if self.special:
|
||||
return '%s%s' % (Emoji.BROKEN_HEART,
|
||||
return '%s%s%s' % (COLOR_ICONS.get(self.color, ''),
|
||||
COLOR_ICONS[BLACK],
|
||||
' '.join([s.capitalize()
|
||||
for s in self.special.split('_')]))
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue