Exemple #1
0
 def fill_collection_empty(self):
     all_cards = get_all_cards_data()
     for card in all_cards:
         self.cards[card.name] = 0
Exemple #2
0
 def fill_collection_empty(self):
     all_cards = get_all_cards_data()
     for card in all_cards:
         self.cards[card.name] = 0
Exemple #3
0
 def fill_collection_manual(self):
     all_cards = get_all_cards_data()
     for card in all_cards:
         amount = int(input("(%s):" % card.name))
         if amount > 0 and amount < 3:
             self.cards[card.name] = amount
Exemple #4
0
 def fill_collection_manual(self):
     all_cards = get_all_cards_data()
     for card in all_cards:
         amount = int(input("(%s):" % card.name))
         if amount > 0 and amount < 3:
             self.cards[card.name] = amount