def __init__(self): self.id = get_id() self.virtual = False
def copy(self): copied_card = copy.copy(self) copied_card.id = get_id() copied_card.virtual = True return copied_card
def NextId(self): return get_id()