Have the ability to hung, if it affects fertility
def impregnate(self, force=False):
if game.flags.nopreg:
return False
if hero.has_skill("smalldick"):
fertility = int(self.fertility * 0.5)
elif hero.has_skill("hung"): *****************************
fertility = int(self.fertility * 1.5)
else:
fertility = self.fertility
if not self.counters.pregnant > 0 and (force or (not self.flags.pill and (randint(1, 100) <= fertility))):
self.set_counter("pregnant")
renpy.show("fx impregnate")
return True
renpy.show("fx heart")
return False