mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-14 01:24:21 +01:00
Selectively randomisable characters (#46108)
* Selectively randomisable characters * it's a list now * this doesn't work * it's totally fucking fucked mate big time * it works * so sick of this goddamn pull request and yes i know this is a retarded way to do this it didn't work the other way * anturk forestalls the inevitable suicide 'associative lists are more performant' * final changes anturk requested 'remove all the "in randomise" and it's ready'
This commit is contained in:
@@ -17,8 +17,8 @@
|
||||
H.underwear = random_underwear(H.gender)
|
||||
H.underwear_color = random_short_color()
|
||||
H.skin_tone = random_skin_tone()
|
||||
H.hair_style = random_hair_style(H.gender)
|
||||
H.facial_hair_style = random_facial_hair_style(H.gender)
|
||||
H.hairstyle = random_hairstyle(H.gender)
|
||||
H.facial_hairstyle = random_facial_hairstyle(H.gender)
|
||||
H.hair_color = random_short_color()
|
||||
H.facial_hair_color = H.hair_color
|
||||
H.eye_color = random_eye_color()
|
||||
@@ -28,8 +28,8 @@
|
||||
H.dna.features["mcolor"] = random_short_color()
|
||||
H.dna.features["ethcolor"] = GLOB.color_list_ethereal[pick(GLOB.color_list_ethereal)]
|
||||
H.dna.features["tail_lizard"] = pick(GLOB.tails_list_lizard)
|
||||
H.dna.features["snout"] = pick(GLOB.snouts_list)
|
||||
H.dna.features["horns"] = pick(GLOB.horns_list)
|
||||
H.dna.features["snout"] = pick(GLOB.snouts_list)
|
||||
H.dna.features["horns"] = pick(GLOB.horns_list)
|
||||
H.dna.features["frills"] = pick(GLOB.frills_list)
|
||||
H.dna.features["spines"] = pick(GLOB.spines_list)
|
||||
H.dna.features["body_markings"] = pick(GLOB.body_markings_list)
|
||||
|
||||
@@ -528,7 +528,7 @@
|
||||
return
|
||||
SSblackbox.record_feedback("nested tally", "admin_secrets_fun_used", 1, list("Dwarf Beards"))
|
||||
for(var/mob/living/carbon/human/B in GLOB.carbon_list)
|
||||
B.facial_hair_style = "Dward Beard"
|
||||
B.facial_hairstyle = "Dward Beard"
|
||||
B.update_hair()
|
||||
message_admins("[key_name_admin(usr)] activated dorf mode")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user