-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsharedlib.py
45 lines (37 loc) · 950 Bytes
/
sharedlib.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from enum import Enum
class Attr(Enum):
lifedrain = "Life Drain"
ethereal = "Ethereal"
counterstrike = "Counterstrike"
doubleAttack = "Double Attack"
damageReduction = "Damage Reduction"
rampage = "Rampage"
construct = "Construct"
anaconda = "Anaconda"
isle = "Isle"
wyrm = "Wyrm"
magus = "Magus"
gorgon = "Gorgon"
falconer = "Falconer"
theroll = "Theroll"
#these aren't implemented, but they can be safely ignored
haste = "Haste"
vilkas = "Vilkas"
summonAnywhere = "Summon Anywhere"
class Card:
def __init__(self, name, life, attackRange, move, dice, attrs):
self.name = name
self.life = life
self.range = attackRange
self.move = move
self.dice = dice
self.attrs = attrs
self.wounds = 0
def __str__(self):
return str(vars(self))
def currentLife(self):
return max(0, self.life - self.wounds)
class Config:
def __init__(self, numFights, maxTurns):
self.numFights = numFights
self.maxTurns = maxTurns