mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Makes Teshari able to "see" (IC: Hear) people through walls, but as a drawback, are always near-sighted.
A deaf teshari cannot see mobs through walls, they are still near-sighted though. Also re-adds ventcrawling for protean blobs.
This commit is contained in:
@@ -61,7 +61,7 @@
|
||||
humanform = H
|
||||
updatehealth()
|
||||
refactory = locate() in humanform.internal_organs
|
||||
//verbs |= /mob/living/proc/ventcrawl YAWN Edit: Too OP
|
||||
verbs |= /mob/living/proc/ventcrawl
|
||||
verbs |= /mob/living/proc/hide
|
||||
else
|
||||
update_icon()
|
||||
|
||||
@@ -56,7 +56,7 @@
|
||||
mob_size = MOB_SMALL
|
||||
pass_flags = PASSTABLE
|
||||
holder_type = /obj/item/weapon/holder/human
|
||||
// short_sighted = 1
|
||||
short_sighted = 1
|
||||
gluttonous = 1
|
||||
blood_volume = 400
|
||||
hunger_factor = 0.2
|
||||
@@ -228,3 +228,9 @@
|
||||
if(ms != "")
|
||||
H << ms
|
||||
H.next_loneliness_time = world.time+500
|
||||
|
||||
/datum/species/teshari/get_vision_flags(var/mob/living/carbon/human/H)
|
||||
if(!(H.sdisabilities & DEAF) && !H.ear_deaf)
|
||||
return SEE_SELF|SEE_MOBS
|
||||
else
|
||||
return SEE_SELF
|
||||
Reference in New Issue
Block a user