Skip to content

Commit ec22d83

Browse files
committed
Fixed tier 1 for newest patch
1 parent 413cb58 commit ec22d83

8 files changed

+285
-152
lines changed

sapai/data.py

+83-83
Large diffs are not rendered by default.

sapai/effects.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1074,9 +1074,9 @@ def TransferStats(apet, apet_idx, teams, te=None, te_idx=[], fixed_targets=[]):
10741074
### that have this ability
10751075
temp_from = temp_from[0][0]
10761076
if copy_attack:
1077-
apet._attack = temp_from.attack
1077+
apet._attack = int(temp_from.attack * percentage)
10781078
if copy_health:
1079-
apet._health = temp_from.health
1079+
apet._health = int(temp_from.health * percentage)
10801080

10811081
return target, possible
10821082

sapai/status.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def apply_coconut_shield(value):
1919

2020
def apply_bone_attack(value):
2121
if value > 0:
22-
return value + 5
22+
return value + 4
2323
else:
2424
return 0
2525

sapai/teams.py

+22-22
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __init__(
2929
super().__init__(slots, 5, slot_class=TeamSlot)
3030
self._battle = battle
3131
self.seed_state = seed_state
32-
self.team = [TeamSlot(seed_state=self.seed_state) for x in range(self.nslots)]
32+
self.slots = [TeamSlot(seed_state=self.seed_state) for x in range(self.nslots)]
3333
for iter_idx, obj in enumerate(slots):
3434
self[iter_idx] = obj
3535
self[iter_idx]._pet.team = self
@@ -121,40 +121,40 @@ def move_backward(self):
121121

122122
def remove(self, obj):
123123
if type(obj) == int:
124-
self.team[obj] = TeamSlot(seed_state=self.seed_state)
124+
self.slots[obj] = TeamSlot(seed_state=self.seed_state)
125125
elif type(obj).__name__ == "TeamSlot":
126126
found = False
127-
for iter_idx, temp_slot in enumerate(self.team):
127+
for iter_idx, temp_slot in enumerate(self.slots):
128128
if temp_slot == obj:
129129
found_idx = iter_idx
130130
found = True
131131
if not found:
132132
raise Exception("Remove {} not found".format(obj))
133-
self.team[found_idx] = TeamSlot(seed_state=self.seed_state)
133+
self.slots[found_idx] = TeamSlot(seed_state=self.seed_state)
134134
elif type(obj).__name__ == "Pet":
135135
found = False
136-
for iter_idx, temp_slot in enumerate(self.team):
136+
for iter_idx, temp_slot in enumerate(self.slots):
137137
temp_pet = temp_slot.pet
138138
if temp_pet == obj:
139139
found_idx = iter_idx
140140
found = True
141141
if not found:
142142
raise Exception("Remove {} not found".format(obj))
143-
self.team[found_idx] = TeamSlot(seed_state=self.seed_state)
143+
self.slots[found_idx] = TeamSlot(seed_state=self.seed_state)
144144
else:
145145
raise Exception("Object of type {} not recognized".format(type(obj)))
146146

147147
def check_friend(self, obj):
148148
if type(obj).__name__ == "TeamSlot":
149149
found = False
150-
for iter_idx, temp_slot in enumerate(self.team):
150+
for iter_idx, temp_slot in enumerate(self.slots):
151151
if temp_slot == obj:
152152
found_idx = iter_idx
153153
found = True
154154
return found
155155
elif type(obj).__name__ == "Pet":
156156
found = False
157-
for iter_idx, temp_slot in enumerate(self.team):
157+
for iter_idx, temp_slot in enumerate(self.slots):
158158
temp_pet = temp_slot.pet
159159
if temp_pet == obj:
160160
found_idx = iter_idx
@@ -166,7 +166,7 @@ def check_friend(self, obj):
166166
def get_idx(self, obj):
167167
if type(obj).__name__ == "TeamSlot":
168168
found = False
169-
for iter_idx, temp_slot in enumerate(self.team):
169+
for iter_idx, temp_slot in enumerate(self.slots):
170170
if temp_slot == obj:
171171
found_idx = iter_idx
172172
found = True
@@ -175,7 +175,7 @@ def get_idx(self, obj):
175175
return found_idx
176176
elif type(obj).__name__ == "Pet":
177177
found = False
178-
for iter_idx, temp_slot in enumerate(self.team):
178+
for iter_idx, temp_slot in enumerate(self.slots):
179179
temp_pet = temp_slot.pet
180180
if temp_pet == obj:
181181
found_idx = iter_idx
@@ -233,7 +233,7 @@ def get_behind(self, obj, n=1):
233233
chosen = []
234234
for temp_idx in fidx:
235235
if temp_idx > pet_idx:
236-
chosen.append(self.team[temp_idx])
236+
chosen.append(self.slots[temp_idx])
237237
return chosen[0:n]
238238

239239
def get_empty(self):
@@ -246,15 +246,15 @@ def get_empty(self):
246246
def append(self, obj):
247247
obj = TeamSlot(obj, seed_state=self.seed_state)
248248
n = len(self)
249-
if n == len(self.team):
249+
if n == len(self.slots):
250250
raise Exception("Attempted to append to a full team")
251251
empty_idx = self.get_empty()
252252
if len(empty_idx) == 0:
253253
raise Exception("This should not be possible")
254-
self.team[empty_idx[0]] = obj
254+
self.slots[empty_idx[0]] = obj
255255

256256
def check_lvl3(self):
257-
for slot in self.team:
257+
for slot in self.slots:
258258
if slot.empty:
259259
continue
260260
if slot.pet.level == 3:
@@ -266,33 +266,33 @@ def battle(self):
266266
return self._battle
267267

268268
def __iter__(self):
269-
yield from self.team
269+
yield from self.slots
270270

271271
def __len__(self):
272272
count = 0
273-
for temp_slot in self.team:
273+
for temp_slot in self.slots:
274274
if not temp_slot.empty:
275275
count += 1
276276
return count
277277

278278
def __getitem__(self, idx):
279-
return self.team[idx]
279+
return self.slots[idx]
280280

281281
def __setitem__(self, idx, obj):
282282
if type(obj).__name__ == "Pet":
283-
self.team[idx] = TeamSlot(obj, seed_state=self.seed_state)
283+
self.slots[idx] = TeamSlot(obj, seed_state=self.seed_state)
284284
elif type(obj).__name__ == "TeamSlot":
285-
self.team[idx] = obj
285+
self.slots[idx] = obj
286286
elif type(obj) == str or type(obj) == numpy.str_:
287-
self.team[idx] = TeamSlot(obj, seed_state=self.seed_state)
287+
self.slots[idx] = TeamSlot(obj, seed_state=self.seed_state)
288288
else:
289289
raise Exception(
290290
"Tried setting a team slot with type {}".format(type(obj).__name__)
291291
)
292292

293293
def __repr__(self):
294294
repr_str = ""
295-
for iter_idx, slot in enumerate(self.team):
295+
for iter_idx, slot in enumerate(self.slots):
296296
repr_str += "{}: {} \n ".format(iter_idx, slot)
297297
return repr_str
298298

@@ -311,7 +311,7 @@ def state(self):
311311
state_dict = {
312312
"type": "Team",
313313
"battle": self.battle,
314-
"team": [x.state for x in self.team],
314+
"team": [x.state for x in self.slots],
315315
"pack": self.pack,
316316
}
317317
return state_dict

tests/test_battles.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from sapai import *
77
from sapai.battle import Battle
88
from sapai.graph import graph_battle
9+
from sapai.compress import *
910

1011

1112
class TestBattles(unittest.TestCase):
@@ -144,7 +145,8 @@ def test_horse_in_battle(self):
144145

145146
test_battle = Battle(team1, team2)
146147
result = test_battle.battle()
147-
self.assertEqual(result, 2)
148+
self.assertEqual(test_battle.t0.empty, [0, 1, 2, 3, 4])
149+
self.assertEqual(test_battle.t1[0].health, 1)
148150

149151
def test_horse_with_bee_in_battle(self):
150152
cricket = Pet("cricket")
@@ -387,5 +389,15 @@ def test_rat_summons_at_front(self):
387389
result = test_battle.battle()
388390
self.assertEqual(result, 0)
389391

392+
def test_peacock(self):
393+
### Check that peacock attack is correct after battle
394+
395+
### Check peacock attack after elephant for all three levels
396+
397+
### Check peacock after headgehog on both teams
398+
399+
### Implement later with others
400+
pass
401+
390402

391403
# %%

tests/test_effects.py

-11
Original file line numberDiff line numberDiff line change
@@ -184,17 +184,6 @@ def test_weak(self):
184184
attack_phase = get_attack(fish, t3[0].pet)
185185
self.assertEqual(attack_phase[1], 9) # 6/8 + 3
186186

187-
def test_peacock(self):
188-
peacock = Pet("peacock")
189-
peacock._hurt = True
190-
t = Team([peacock])
191-
peacock.hurt_trigger(Team())
192-
self.assertEqual(peacock.attack, 3)
193-
# same turn, therefore should not activate again:
194-
peacock._hurt = True
195-
peacock.hurt_trigger(Team())
196-
self.assertEqual(peacock.attack, 3)
197-
198187
def test_hatching_chick_level_3(self):
199188
hc = Pet("hatching-chick")
200189
hc.level = 3

0 commit comments

Comments
 (0)