forked from jasongrout/bots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbots.py
160 lines (132 loc) · 4.8 KB
/
bots.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import random
# accuricy, power, defence
# if a w is at the end of the class then it's not updated
class Gol:
name = "Golom"
def turn(self, my_life, other_life):
return dict(accuracy = 7, power = 20, defense = 9)
class Gn:
name = "Ganon"
def turn(self, my_life, other_life):
return dict(accuracy = 6, power = 4, defense = 6)
class Sq:
name = "scorpio"
def turn(self, my_life, other_life):
return dict(accuracy = 6, power = 9, defense = 4)
class Ninja:
name = "Ninja"
def turn(self, my_life, other_life):
return dict(accuracy = 6, power = 7, defense = 5)
class Dn:
name = "Dungeon Keeper"
def turn(self, my_life, other_life):
return dict(accuracy = 8, power = 20, defense = 8)
class Axl:
name = "Axl"
def turn(self, my_life, other_life):
return dict(accuracy = 10, power = 5000000000000000000000, defense = 10)
class Superman:
name = "Superman"
def turn(self, my_life, other_life):
if my_life > 30:
return dict(accuracy = 8, power = 10, defense = 8)
if my_life <= 30:
return dict(accuracy = 10, power = 100, defense = 10)
class Spellmaster:
name = "Spellmaster"
def turn(self, my_life, other_life):
threshold = 6
if other_life >= threshold:
return dict(accuracy = 4, power = 4, defense = 2)
if other_life < threshold:
return dict(accuracy = 7, power = 2, defense = 1)
class pay:
name = "Bounty Hunter"
def turn(self, my_life, other_life):
return dict(accuracy = 10, power = 100, defense = 100.01)
class Jay:
name = "jay"
def turn(self, my_life, other_life):
return dict(accuracy = 10, power = 10, defense = 30)
class C:
name = "main character"
def turn(self, my_life, other_life):
return dict(accuracy = 10, power = 100.02, defense = 100)
class Random:
name = "Random Man"
def turn(self, my_life, other_life):
accuracy = random.randint(1,9)
offense = random.randint(0,10-accuracy)
defense = 10 - accuracy - offense
return dict( accuracy = accuracy, power = offense, defense = defense)
class Power:
name = "power"
def turn(self, my_life, other_life):
return dict(accuracy = 1,power = 9, defense = 0)
class DragonKiller:
name = "DragonKiller"
def turn(self, my_life, other_life):
if my_life >= 15:
return dict(accuracy = 4, power = 3, defense = 3)
if my_life < 15:
return dict(accuracy = 4, power = 5, defense = 1)
class Dragon:
name = "Dragon"
def turn(self, my_life, other_life):
if my_life >= 15:
return dict(accuracy = 6, power = 3, defense = 1)
if my_life < 15:
return dict(accuracy = 5, power = 1, defense = 4)
class Accuracy:
name = "Accuracy"
def turn(self, my_life, other_life):
return dict(accuracy = 9, power = 1, defense = 0)
class Rice:
name = "Rnice"
def turn(self, my_life, other_life):
return dict(accuracy = 5, power = 5, defense = 0)
class Knight:
name = "Knight"
def turn(self, my_life, other_life):
return dict(accuracy = 4, power = 3, defense = 3)
class Megaman:
name = "megaman"
def turn(self, my_life, other_life):
return dict(accuracy = 3, power = 4, defense = 3)
class Defense:
name = "defense"
def turn(self, my_life, other_life):
return dict(accuracy = 1, power = 1, defense = 8)
class Smart:
name = "Mega computer"
mine = []
other = []
change = []
def turn(self, my_life, other_life):
self.mine.append(my_life)
self.other.append(other_life)
p = dict(accuracy = 9, power = 1, defense = 0)
if len(self.mine) > 1:
self.change.append(self.mine[-2] - self.mine[-1])
avg = sum(self.change)/len(self.change)
print(avg)
if max(self.change) >= 5:
print("other = power")
p = dict(accuracy = 7, power = 3, defense = 0)
if self.change.count(3) > 0 or self.change.count(4) > 0:
print("other = avrege")
p = dict(accuracy = 5, power = 4, defense = 1)
if self.change.count(1) > self.change.count(0) or self.change.count(2) > self.change.count(0):
print("other = accuracy")
p = dict(accuracy = 6, power = 3, defense = 1)
if self.change.count(0) > self.change.count(1) + self.change.count(2):
print("other = defense")
p = dict(accuracy = 5, power = 3, defense = 2)
if avg >= 1.8:
p["accuracy"] -= 2
p["power"] -= 1
p["defense"] += 3
if my_life < 15:
p["accuracy"] += 1
p["power"] -= 1
return p