Exemplo n.º 1
0
 def __init__(self, title, short_title=""):
     if short_title == "":
         if " " in title:
             s = ''.join(zip(*title.split())[0]) # Figure this one out... :)
         else:
             s = title[:2].upper()
         short_title = s
     short_title = self.type[0] + "_" + short_title
     FluxxCard.__init__(self, title, short_title, "")
Exemplo n.º 2
0
 def __init__(self, title, short_title=""):
     if short_title == "":
         if " " in title:
             s = ''.join(
                 zip(*title.split())[0])  # Figure this one out... :)
         else:
             s = title[:2].upper()
         short_title = s
     short_title = self.type[0] + "_" + short_title
     FluxxCard.__init__(self, title, short_title, "")
Exemplo n.º 3
0
 def __init__(self, title, short_title, description):
     FluxxCard.__init__(self, title, short_title, description)
     self.draw_amount = -1
     self.play_amount = -1
     self.hand_limit = -1
     self.keeper_limit = -1
Exemplo n.º 4
0
 def __init__(self, title, short_title, description):
     FluxxCard.__init__(self, title, short_title, description)
Exemplo n.º 5
0
 def __init__(self, title, short_title, description):
     FluxxCard.__init__(self, title, short_title, description)
Exemplo n.º 6
0
 def __init__(self, title, short_title, description):
     FluxxCard.__init__(self, title, short_title, description)
     self.draw_amount = -1
     self.play_amount = -1
     self.hand_limit = -1
     self.keeper_limit = -1