From ac4250e2ddfce445bc13795ba5d618cd381af7e3 Mon Sep 17 00:00:00 2001 From: NullFag Date: Thu, 30 Mar 2023 16:17:09 +0200 Subject: [PATCH] gbvndbvnch --- .../living/carbon/human/species_types/shadekin.dm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/modular_zubbers/code/modules/mob/living/carbon/human/species_types/shadekin.dm b/modular_zubbers/code/modules/mob/living/carbon/human/species_types/shadekin.dm index f65d46571e4..1d1f87eb2ae 100644 --- a/modular_zubbers/code/modules/mob/living/carbon/human/species_types/shadekin.dm +++ b/modular_zubbers/code/modules/mob/living/carbon/human/species_types/shadekin.dm @@ -23,3 +23,16 @@ BODY_ZONE_L_LEG = /obj/item/bodypart/leg/left/shadekin, BODY_ZONE_R_LEG = /obj/item/bodypart/leg/right/shadekin ) + + +/datum/species/mammal/shadekin/prepare_human_for_preview(mob/living/carbon/human/human) + var/main_color = "#222222" + var/secondary_color = "#b8b8b8" + human.dna.features["mcolor"] = main_color + human.dna.features["mcolor2"] = secondary_color + human.dna.features["mcolor3"] = secondary_color + human.dna.species.mutant_bodyparts["ears"] = list(MUTANT_INDEX_NAME = "Shadekin", MUTANT_INDEX_COLOR_LIST = list(main_color, secondary_color, "#464646")) + human.dna.species.mutant_bodyparts["snout"] = list(MUTANT_INDEX_NAME = "None", MUTANT_INDEX_COLOR_LIST = list(main_color, secondary_color, secondary_color)) + human.dna.species.mutant_bodyparts["tail"] = list(MUTANT_INDEX_NAME = "Shadekin", MUTANT_INDEX_COLOR_LIST = list(main_color, "#4D4D4D", secondary_color)) + human.update_mutant_bodyparts(TRUE) + human.update_body(TRUE)