Skip to content

Commit

Permalink
[MODULAR] Makes Tajarans able to land on their feet (#2844)
Browse files Browse the repository at this point in the history
* makes tajarans able to land on their feet like felinids

* Update tajaran.dm

Co-authored-by: chel <[email protected]>
  • Loading branch information
Steals-The-PRs and iliyaxox authored Apr 12, 2024
1 parent 035225e commit be45664
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit be45664

Please sign in to comment.