mirror of
https://github.com/wr34k/IRCUFC.git
synced 2024-11-22 07:26:39 +00:00
23 lines
345 B
Python
23 lines
345 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
class Fighter(object):
|
||
|
def __init__(self, nick, colour):
|
||
|
|
||
|
self.nick = nick
|
||
|
self.colour = colour
|
||
|
|
||
|
self.hp = 100
|
||
|
self.stance = 'stand'
|
||
|
|
||
|
self.nextAction = None
|
||
|
|
||
|
self.advantage = False
|
||
|
|
||
|
self.first_time_lowhp = True
|
||
|
|
||
|
self.wins = 0
|
||
|
self.looses = 0
|