summaryrefslogtreecommitdiff
path: root/CAO_Player.py
blob: 9501a462763a755ff5464def88ada437581a1cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class CAO_Player():
    def __init__(self, client, cards):
        self.cards = cards
        self.client = client

        self.score = 0

        self.has_played = False

        self.name = 'default'

    def pop_card(self, card_id):
        return self.cards.pop(card_id)


    def get_has_played(self):
        return self.has_played

    def set_has_played(self, has=True):
        self.has_played = has

    def inc_score(self):
        self.score += 1