Merge pull request #981 from ariaworld/lewd-smallupdate

[Lewd] [Semi-Modular] - Human Erect Penis and Balls Sprites-Fix & More!
This commit is contained in:
BongaTheProto
2023-11-06 15:06:15 -05:00
committed by GitHub
22 changed files with 172 additions and 80 deletions
@@ -9,26 +9,36 @@
to_chat(usr, span_warning("You cannot toggle your gender while unconcious!"))
return
var/choice = tgui_alert(usr, "Select Gender.", "Gender", list("Both", "Male", "Female", "None", "Toggle Breasts"))
var/choice = tgui_alert(usr, "Select Gender.", "Gender", list("Both", "Male", "Female", "None", "Toggle Breasts", "Toggle Penis", "Toggle Pussy", "Toggle Balls"))
switch(choice)
if("Both")
has_penis = TRUE
has_balls = TRUE
has_vagina = TRUE
gender = PLURAL
if("Male")
has_penis = TRUE
has_balls = TRUE
has_vagina = FALSE
gender = MALE
if("Female")
has_penis = FALSE
has_balls = FALSE
has_vagina = TRUE
gender = FEMALE
if("None")
has_penis = FALSE
has_balls = FALSE
has_vagina = FALSE
gender = NEUTER
if("Toggle Breasts") // Idea/Initial code by @LunarFleet (github)
has_breasts = !has_breasts // Simplified line by @Zirok-BYOND (github)
if("Toggle Penis")
has_penis = !has_penis
if("Toggle Pussy")
has_vagina = !has_vagina
if("Toggle Balls")
has_balls = !has_balls
/// Toggle admin frozen
/mob/living/proc/toggle_admin_freeze(client/admin)