update basic and normal boss shuffling with a less biased algorithm

This commit is contained in:
Fabian Dill
2021-03-26 04:05:36 +01:00
parent 4985daefee
commit 1f5bcb6273
2 changed files with 38 additions and 22 deletions

View File

@@ -1059,6 +1059,9 @@ class Boss():
def can_defeat(self, state) -> bool:
return self.defeat_rule(state, self.player)
def __repr__(self):
return f"Boss({self.name})"
class Location():
shop_slot: bool = False
shop_slot_disabled: bool = False