Clarify penis shaft wording

This commit is contained in:
2026-06-25 16:43:25 +02:00
parent 7675bf3bea
commit 5cf1b43a3e
3 changed files with 36 additions and 36 deletions
+12 -12
View File
@@ -5123,51 +5123,51 @@ def _role_graph(
if any(term in text for term in ("testicle", "balls-licking", "balls licking", "balls and mouth", "balls held")):
if man_is_pov:
return (
f"{woman} kneels very low between the POV viewer's thighs, face below the shaft at testicle height, "
f"{woman} kneels very low between the POV viewer's thighs, face below the penis shaft at testicle height, "
"mouth and tongue on the POV viewer's balls while his penis points upward above her forehead."
)
return (
f"{man} sits with legs apart while {woman} kneels very low between his thighs, face below the shaft at testicle height, "
f"{man} sits with legs apart while {woman} kneels very low between his thighs, face below the penis shaft at testicle height, "
f"mouth and tongue on his balls while {man}'s penis points upward above her forehead."
)
if "penis-licking" in position_text or "penis licking" in text or "tongue along" in text or "tongue licking" in text:
if man_is_pov:
return (
f"{woman} kneels close at the POV viewer's pelvis, face just above his hips, "
"tongue running along the underside of the POV viewer's penis from shaft to glans while one hand steadies the base."
"tongue running along the underside of the POV viewer's penis from the penis shaft to the glans while one hand steadies the base of the penis."
)
return (
f"{woman} kneels close at {man}'s pelvis, face just above his hips, "
f"tongue running along the underside of {man}'s penis from shaft to glans while one hand steadies the base."
f"tongue running along the underside of {man}'s penis from the penis shaft to the glans while one hand steadies the base of the penis."
)
if "handjob" in position_text or "handjob" in text or "hand job" in text or "hand wrapped" in text:
if man_is_pov:
return (
f"{woman} kneels close at the POV viewer's pelvis with her face behind the shaft, "
"one hand wrapped around the POV viewer's penis and the other hand steadying the base as she strokes toward the glans."
f"{woman} kneels close at the POV viewer's pelvis with her face behind the penis shaft, "
"one hand wrapped around the POV viewer's penis shaft and the other hand steadying the base of the penis as she strokes toward the glans."
)
return (
f"{woman} kneels close at {man}'s pelvis with her face behind the shaft, "
f"one hand wrapped around {man}'s penis and the other hand steadying the base as she strokes toward the glans."
f"{woman} kneels close at {man}'s pelvis with her face behind the penis shaft, "
f"one hand wrapped around {man}'s penis shaft and the other hand steadying the base of the penis as she strokes toward the glans."
)
if "footjob" in text or "soles" in text or "toes curled" in text or "feet stroking" in text:
if man_is_pov:
return (
f"{woman} faces the POV viewer with legs raised toward the camera, both soles wrapped around the POV viewer's penis "
"in the lower foreground and toes curled around the shaft."
"in the lower foreground and toes curled around the penis shaft."
)
return (
f"{man} reclines with hips forward while {woman} faces him and wraps both soles around {man}'s penis, "
"stroking the shaft with her feet while the contact stays centered."
"stroking the penis shaft with her feet while the contact stays centered."
)
if man_is_pov:
return (
f"{woman} kneels close to the POV viewer's hips and keeps the POV viewer's penis centered in clear non-penetrative contact, "
"with her mouth, hands, breasts, or feet visibly working around the shaft."
"with her mouth, hands, breasts, or feet visibly working around the penis shaft."
)
return (
f"{woman} kneels close to {man}'s hips and keeps {man}'s penis centered in clear non-penetrative contact, "
"with her mouth, hands, breasts, or feet visibly working around the shaft."
"with her mouth, hands, breasts, or feet visibly working around the penis shaft."
)
def oral_position_graph(woman: str, man: str) -> str: