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

Shadekin nerfs breathing and thermals #1448

Merged
merged 4 commits into from
Apr 7, 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
19 changes: 12 additions & 7 deletions code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,15 @@

virus_immune = 1

breath_type = null
poison_type = null
water_breather = TRUE //They don't quite breathe

vision_flags = SEE_SELF|SEE_MOBS
//YW changes - breathing boyes now
breath_type = "oxygen" // Non-oxygen gas breathed, if any.
poison_type = "phoron" // Poisonous air.
exhale_type = "carbon_dioxide" // Exhaled gas type.
water_breather = FALSE
bad_swimmer = FALSE
//End YW changes

vision_flags = SEE_SELF
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_SKIN_COLOR | HAS_EYE_COLOR | HAS_UNDERWEAR

move_trail = /obj/effect/decal/cleanable/blood/tracks/paw
Expand All @@ -87,7 +91,8 @@
O_BRAIN = /obj/item/organ/internal/brain/shadekin,
O_EYES = /obj/item/organ/internal/eyes,
O_STOMACH = /obj/item/organ/internal/stomach,
O_INTESTINE = /obj/item/organ/internal/intestine
O_INTESTINE = /obj/item/organ/internal/intestine,
O_LUNGS = /obj/item/organ/internal/lungs // YW Add - Lungs
)

has_limbs = list(
Expand Down Expand Up @@ -344,4 +349,4 @@

new_copy.energy_dark = energy_dark

return new_copy
return new_copy
Loading