You can add cum in SD_PromptBuilder_ren.py
Either go through currentPerson.outfit.accessories array and check for creampie/cum or check if currentPerson cum variables are true: has_ass_cum, has_creampie_cum, has_face_cum, has_mouth_cum, has_stomach_cum, and has_tits_cum
Keep in mind, the more cum you add the more nsfw it becomes and you're more likely to get an image not conforming to your prompt. For example, just having cum in mouth could end up generating a blowjob picture but you prompted a standing picture.
I'm using something like this, only adding cum if it should be visible:
View attachment 4792723
Python:
if upper_clothing != None:
upper_color = get_clothing_color_name(upper_clothing)
upper_color_desc = f"{upper_color} " if upper_color else ""
upper_clothing_description = f"{upper_color_desc}{upper_clothing.name}"
else:
upper_clothing_description = "bare chest, nipples, uncensored"
if currentPerson.has_stomach_cum:
upper_clothing_description = f"{upper_clothing_description}, cum on stomach"
if currentPerson.has_tits_cum:
upper_clothing_description = f"{upper_clothing_description}, cum on tits"
#If the person is wearing lower clothing
lower_clothing_description = ""
if lower_clothing != None:
lower_color = get_clothing_color_name(lower_clothing)
lower_color_desc = f"{lower_color} " if lower_color else ""
lower_clothing_description = f"{lower_color_desc}{lower_clothing.name}"
else:
ass_desc = ""
if currentPerson.has_ass_cum:
ass_desc = "cum on ass, "
pussy_desc = f"{pubeDescription} pussy"
if currentPerson.has_creampie_cum:
pussy_desc = f"cum in {pussy_desc}"
lower_clothing_description = f"bottomless, {ass_desc}{pussy_desc}, uncensored"
# Put the clothing descriptions together
outfit_prompt = f"{upper_clothing_description}, {lower_clothing_description}"
if upper_clothing != None and lower_clothing != None:
outfit_prompt = f"{outfit_prompt}, SFW"
if currentPerson.has_face_cum:
outfit_prompt = f"{outfit_prompt}, cum on face"
if currentPerson.has_mouth_cum:
outfit_prompt = f"{outfit_prompt}, cum in mouth"
Also the mod has lines for pubic styles. I think they were broken, so downloading the newest version might fix it for you.