Skip to content

Commit

Permalink
Update code/modules/mob/living/carbon/human/species_types/humans.dm
Browse files Browse the repository at this point in the history
Co-authored-by: meem <[email protected]>
Signed-off-by: Skies-Of-Blue <[email protected]>
  • Loading branch information
Skies-Of-Blue and meemofcourse authored Jun 8, 2024
1 parent ae58f78 commit 481028d
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions code/modules/mob/living/carbon/human/species_types/humans.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,21 @@
loreblurb = "Mostly hairless mammalians. Their home system, Sol, lies in a sort of \"bluespace dead-zone\" that blocks anything from entering or exiting Sol's dead-zone through bluespace without a relay. While it leaves Sol extremely well-defended, it meant that they went unnoticed and uncontacted until they were themselves able to breach it."

/datum/species/human/on_species_gain(mob/living/carbon/C, datum/species/old_species, pref_load)
if(C.dna.features["ears"] == "Elf")
mutantears = /obj/item/organ/ears/elf
if(C.dna.features["ears"] == "Cat")
mutantears = /obj/item/organ/ears/cat
if(C.dna.features["ears"] == "Dog")
mutantears = /obj/item/organ/ears/dog
if(C.dna.features["ears"] == "Fox")
mutantears = /obj/item/organ/ears/fox
if(C.dna.features["ears"] == "Rabbit")
mutantears = /obj/item/organ/ears/rabbit
if(C.dna.features["ears"] == "Bent Rabbit")
mutantears = /obj/item/organ/ears/rabbit/bent
if(C.dna.features["ears"] == "Floppy Rabbit")
mutantears = /obj/item/organ/ears/rabbit/floppy
switch(C.dna.features["ears"])
if("Elf")
mutantears = /obj/item/organ/ears/elf
if("Cat")
mutantears = /obj/item/organ/ears/cat
if("Dog")
mutantears = /obj/item/organ/ears/dog
if("Fox")
mutantears = /obj/item/organ/ears/fox
if("Rabbit")
mutantears = /obj/item/organ/ears/rabbit
if("Bent Rabbit")
mutantears = /obj/item/organ/ears/rabbit/bent
if("Floppy Rabbit")
mutantears = /obj/item/organ/ears/rabbit/floppy
if(C.dna.features["tail_human"] == "Cat")
mutant_organs |= /obj/item/organ/tail/cat
if(C.dna.features["tail_human"] == "Dog")
Expand Down

0 comments on commit 481028d

Please sign in to comment.