Clones and Podmen will no longer be created with underwear already on.

This commit is contained in:
ikarrus
2014-08-31 16:49:36 -06:00
parent 4e7c2cbb8e
commit 759ca4979c
2 changed files with 11 additions and 0 deletions
+2
View File
@@ -198,11 +198,13 @@
if(efficiency < 3 && prob(50))
randmutb(H)
//Clones will come out nude and unshaved, with messy hair
if(H.gender == MALE)
H.facial_hair_style = "Full Beard"
else
H.facial_hair_style = "Shaved"
H.hair_style = pick("Bedhead", "Bedhead 2", "Bedhead 3")
H.underwear = "Nude"
H.regenerate_icons()
+9
View File
@@ -839,6 +839,15 @@ obj/machinery/hydroponics/attackby(var/obj/item/O as obj, var/mob/user as mob)
//dna stuff
hardset_dna(podman, ui, se, null, null, null, !prob(potency) ? /datum/species/plant/pod : null, "#59CE00") //makes sure podman has dna and sets the dna's ui/se/mutantrace/real_name etc variables
//Podmen will come out nude and unshaved, with messy hair
if(podman.gender == MALE)
podman.facial_hair_style = "Full Beard"
else
podman.facial_hair_style = "Shaved"
podman.hair_style = pick("Bedhead", "Bedhead 2", "Bedhead 3")
podman.underwear = "Nude"
podman.regenerate_icons()
else //else, one packet of seeds. maybe two
var/seed_count = 1
if(prob(getYield() * 20))