Yah but I can't find any hearts variable.It's the limit on <character>.heart that's used for checks. So if heart is 100 but lim is 20, you get 2 hearts. Or something like that.
Code:
class Girls(store.object):
list = []
def __init__(self, char, icon):
self.char = char
self.icon = icon
self.show = False
self.heart = 0
self.lim = 10
self.askhelp = False
self.fuck = False
self.oral = False
self.anal = False
Girls.list.append(self)