Beispiel #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, "")
Beispiel #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, "")
Beispiel #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
Beispiel #4
0
 def __init__(self, title, short_title, description):
     FluxxCard.__init__(self, title, short_title, description)
Beispiel #5
0
 def __init__(self, title, short_title, description):
     FluxxCard.__init__(self, title, short_title, description)
Beispiel #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