From ae8ee20fd56ca2acbe35f2b8f2ff879c68d21004 Mon Sep 17 00:00:00 2001 From: Alberto Xamin Date: Thu, 26 Nov 2020 23:28:22 +0100 Subject: [PATCH] cards with scrap alt-text --- backend/bang/expansions/dodge_city/cards.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/bang/expansions/dodge_city/cards.py b/backend/bang/expansions/dodge_city/cards.py index c5d1fb0..c624826 100644 --- a/backend/bang/expansions/dodge_city/cards.py +++ b/backend/bang/expansions/dodge_city/cards.py @@ -47,6 +47,7 @@ class RagTime(Panico): self.desc = "Ruba 1 carta dalla mano di un giocatore" self.need_target = True self.need_with = True + self.alt_text = '‼️' def play_card(self, player, against, _with): if against != None and _with != None: @@ -61,6 +62,7 @@ class Rissa(Gatling): self.name = 'Rissa' self.icon = '🥊' self.need_with = True + self.alt_text = '‼️' def play_card(self, player, against, _with): if _with != None: @@ -76,6 +78,7 @@ class SpringField(Card): self.desc = "Spara a un giocatore" self.need_target = True self.need_with = True + self.alt_text = '‼️' def play_card(self, player, against, _with=None): if against != None and _with != None: @@ -92,6 +95,7 @@ class Tequila(Card): self.desc = "Fai recuperare 1 vita a un giocatore" self.need_target = True self.need_with = True + self.alt_text = '‼️' def play_card(self, player, against, _with=None): if against != None and _with != None: @@ -107,6 +111,7 @@ class Whisky(Card): self.icon = '🥃' self.desc = "Recupera 2 vite" self.need_with = True + self.alt_text = '‼️' def play_card(self, player, against, _with=None): if _with != None: