Removes Gender (#18628)

* Removes Gender

* Adds herm back
This commit is contained in:
Guti
2025-10-14 18:34:35 -07:00
committed by GitHub
parent 4cc51c4ff1
commit 8a1a482c2b
54 changed files with 849 additions and 365 deletions
+1 -2
View File
@@ -219,9 +219,8 @@
if(P)
if(process_projectile(P, user, user, pick(BP_L_FOOT, BP_R_FOOT)))
handle_post_fire(user, user)
var/datum/gender/TU = GLOB.gender_datums[user.get_visible_gender()]
user.visible_message(
span_danger("\The [user] shoots [TU.himself] in the foot with \the [src]!"),
span_danger("\The [user] shoots [user.p_themselves()] in the foot with \the [src]!"),
span_danger("You shoot yourself in the foot with \the [src]!")
)
M.drop_item()
@@ -96,10 +96,9 @@
/obj/item/cell/device/weapon/gunsword/attack_self(mob/living/user as mob)
var/datum/gender/TU = GLOB.gender_datums[user.get_visible_gender()]
if (active)
if ((CLUMSY in user.mutations) && prob(50))
user.visible_message(span_danger("\The [user] accidentally cuts [TU.himself] with \the [src]."),\
user.visible_message(span_danger("\The [user] accidentally cuts [user.p_themselves()] with \the [src]."),\
span_danger("You accidentally cut yourself with \the [src]."))
user.take_organ_damage(5,5)
deactivate(user)
@@ -159,9 +159,8 @@
if(prob(15))
M.apply_effect((rand(30,80)),IRRADIATE)
M.Weaken(5)
var/datum/gender/TM = GLOB.gender_datums[M.get_visible_gender()]
for (var/mob/V in viewers(src))
V.show_message(span_red("[M] writhes in pain as [TM.his] vacuoles boil."), 3, span_red("You hear the crunching of leaves."), 2)
V.show_message(span_red("[M] writhes in pain as [M.p_their()] vacuoles boil."), 3, span_red("You hear the crunching of leaves."), 2)
if(prob(35))
// for (var/mob/V in viewers(src)) //Public messages commented out to prevent possible metaish genetics experimentation and stuff. - Cheridan
// V.show_message(span_red("[M] is mutated by the radiation beam."), 3, span_red(" You hear the snapping of twigs."), 2)