diff --git a/modular_nova/modules/customization/modules/mob/living/carbon/human/species/tajaran.dm b/modular_nova/modules/customization/modules/mob/living/carbon/human/species/tajaran.dm index 7f9cfb7664b..140ec669d51 100644 --- a/modular_nova/modules/customization/modules/mob/living/carbon/human/species/tajaran.dm +++ b/modular_nova/modules/customization/modules/mob/living/carbon/human/species/tajaran.dm @@ -7,6 +7,7 @@ TRAIT_LITERATE, TRAIT_HATED_BY_DOGS, TRAIT_MUTANT_COLORS, + TRAIT_CATLIKE_GRACE, ) mutanttongue = /obj/item/organ/internal/tongue/cat/tajaran inherent_biotypes = MOB_ORGANIC|MOB_HUMANOID @@ -106,3 +107,15 @@ cat.dna.mutant_bodyparts["ears"] = list(MUTANT_INDEX_NAME = "Cat, normal", MUTANT_INDEX_COLOR_LIST = list(main_color, second_color, second_color)) regenerate_organs(cat, src, visual_only = TRUE) cat.update_body(TRUE) + +/datum/species/tajaran/create_pref_unique_perks() + var/list/to_add = list() + + to_add += list(list( + SPECIES_PERK_TYPE = SPECIES_NEUTRAL_PERK, + SPECIES_PERK_ICON = FA_ICON_PERSON_FALLING, + SPECIES_PERK_NAME = "Soft Landing", + SPECIES_PERK_DESC = "Tajarans are unhurt by high falls, and land on their feet.", + )) + + return to_add