Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 9ee4166

Browse files
authored
Update good.dm (#22925)
1 parent ccdd4eb commit 9ee4166

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

code/datums/traits/good.dm

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
species_type = new species_type()
1717
var/disallowed_trait = (NOMOUTH in species_type.species_traits) // Cant eat
1818
qdel(species_type)
19-
19+
2020
if(disallowed_trait)
2121
return "You don't have the ability to eat!"
2222
return FALSE
@@ -311,8 +311,8 @@
311311
medical_record_text = "During physical examination, patient was found to have an upgraded cybernetic organ."
312312
var/slot_string = "organ"
313313
var/list/organ_list = list(
314-
ORGAN_SLOT_LUNGS = /obj/item/organ/lungs/cybernetic/upgraded,
315-
ORGAN_SLOT_HEART = /obj/item/organ/heart/cybernetic/upgraded,
314+
ORGAN_SLOT_LUNGS = /obj/item/organ/lungs/cybernetic/upgraded,
315+
ORGAN_SLOT_HEART = /obj/item/organ/heart/cybernetic/upgraded,
316316
ORGAN_SLOT_LIVER = /obj/item/organ/liver/cybernetic/upgraded,
317317
)
318318
///String to denote the quality of the organ
@@ -343,7 +343,7 @@
343343

344344
if(species_type == /datum/species/ipc) // IPCs are already cybernetic
345345
return "You already have cybernetic organs!"
346-
346+
347347
var/datum/species/species = new species_type
348348
var/list/temp = organ_list.Copy()
349349
if(TRAIT_TOXINLOVER in species.inherent_traits)
@@ -485,3 +485,10 @@
485485
specific = /datum/language/bonespeak
486486
gain_text = span_notice("You have learned to understand Bonespeak.")
487487
lose_text = span_notice("You have forgotten how to understand Bonespeak.")
488+
489+
/datum/quirk/multilingual/machine
490+
name = "Multilingual (Encoded Audio Language)"
491+
desc = "You spent a portion of your life learning to understand an Encoded Audio Language. You may or may not be able to speak it based on your anatomy."
492+
specific = /datum/language/machine
493+
gain_text = span_notice("You have learned to understand Encoded Audio Language.")
494+
lose_text = span_notice("You have forgotten how to understand Encoded Audio Language.")

0 commit comments

Comments
 (0)