Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion code/__DEFINES/traits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@
#define TRAIT_UNINTELLIGIBLE_SPEECH "unintelligible-speech"
#define TRAIT_UNSTABLE "unstable"
#define TRAIT_OIL_FRIED "oil_fried"
#define TRAIT_SHELTERED "sheltered"
#define TRAIT_RANDOM_ACCENT "random_accent"
#define TRAIT_MEDICALIGNORE "medical_ignore"
#define TRAIT_PASSTABLE "passtable"
Expand Down
22 changes: 0 additions & 22 deletions code/datums/traits/negative.dm
Original file line number Diff line number Diff line change
Expand Up @@ -626,28 +626,6 @@
lose_text = span_notice("Your mind finally feels calm.")
medical_record_text = "Patient's mind is in a vulnerable state, and cannot recover from traumatic events."

/datum/quirk/sheltered
name = "Sheltered"
desc = "You never learned to speak galactic common."
icon = "comment-dots"
value = -2
mob_trait = TRAIT_SHELTERED
gain_text = span_danger("You do not speak galactic common.")
lose_text = span_notice("You start to put together how to speak galactic common.")
medical_record_text = "Patient looks perplexed when questioned in galactic common."

/datum/quirk/sheltered/on_clone(data)
var/mob/living/carbon/human/H = quirk_holder
H.remove_language(/datum/language/common, FALSE, TRUE)
if(!H.get_selected_language())
H.grant_language(/datum/language/japanese)

/datum/quirk/sheltered/on_spawn()
var/mob/living/carbon/human/H = quirk_holder
H.remove_language(/datum/language/common, FALSE, TRUE)
if(!H.get_selected_language())
H.grant_language(/datum/language/japanese)

/datum/quirk/allergic
name = "Allergic Reaction"
desc = "You have had an allergic reaction to medicine in the past. Better stay away from it!"
Expand Down