Slime people rework (#11990)

This commit is contained in:
Couls
2019-09-26 19:53:09 -04:00
committed by variableundefined
parent fdc208c3e0
commit 56d994b464
4 changed files with 29 additions and 5 deletions
@@ -25,8 +25,7 @@
male_cough_sounds = list('sound/effects/slime_squish.ogg')
female_cough_sounds = list('sound/effects/slime_squish.ogg')
species_traits = list(LIPS, IS_WHITELISTED, NO_BREATHE, NO_INTORGANS, NO_SCAN)
dies_at_threshold = TRUE
species_traits = list(LIPS, IS_WHITELISTED, NO_SCAN)
clothing_flags = HAS_UNDERWEAR | HAS_UNDERSHIRT | HAS_SOCKS
bodyflags = HAS_SKIN_COLOR | NO_EYES
dietflags = DIET_CARN
@@ -35,16 +34,29 @@
flesh_color = "#5fe8b1"
blood_color = "#0064C8"
exotic_blood = "water"
blood_damage_type = TOX
butt_sprite = "slime"
//Has default darksight of 2.
has_organ = list(
"brain" = /obj/item/organ/internal/brain/slime
"brain" = /obj/item/organ/internal/brain/slime,
"osmatic pressure regulator" = /obj/item/organ/internal/heart/slime,
"gas exchange membrane" = /obj/item/organ/internal/lungs/slime
)
mutantears = null
has_limbs = list(
"chest" = list("path" = /obj/item/organ/external/chest/unbreakable),
"groin" = list("path" = /obj/item/organ/external/groin/unbreakable),
"head" = list("path" = /obj/item/organ/external/head/unbreakable),
"l_arm" = list("path" = /obj/item/organ/external/arm/unbreakable),
"r_arm" = list("path" = /obj/item/organ/external/arm/right/unbreakable),
"l_leg" = list("path" = /obj/item/organ/external/leg/unbreakable),
"r_leg" = list("path" = /obj/item/organ/external/leg/right/unbreakable),
"l_hand" = list("path" = /obj/item/organ/external/hand/unbreakable),
"r_hand" = list("path" = /obj/item/organ/external/hand/right/unbreakable),
"l_foot" = list("path" = /obj/item/organ/external/foot/unbreakable),
"r_foot" = list("path" = /obj/item/organ/external/foot/right/unbreakable)
)
suicide_messages = list(
"is melting into a puddle!",
"is ripping out their own core!",
@@ -0,0 +1,11 @@
/obj/item/organ/internal/heart/slime
icon = 'icons/obj/species_organs/slime.dmi'
name = "osmotic pressure regulator"
icon_state = "heart"
desc = "It appears to be some kind of biological pump that uses osmotic pressure to regulate water flow. It seems to work similar to a heart."
/obj/item/organ/internal/lungs/slime
icon = 'icons/obj/species_organs/slime.dmi'
name = "gas exchange membrane"
icon_state = "lungs"
desc = "Membrane used for oxygen intake and gas exchange. These seem to work similar to lungs."