Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] [MODULAR] Makes Tajarans able to land on their feet #2844

Merged
merged 1 commit into from
Apr 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading