mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
Clones and Podmen will no longer be created with underwear already on.
This commit is contained in:
@@ -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()
|
||||
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user