* Refactors ear damage into ear organs * Update human.dm * Update species.dm * Delete species.dm.rej * Update tgstation.dme * Delete tgstation.dme.rej * Delete human.dm.rej * Update tongue.dm * Delete surgery.dmi * upload fixed surgery.dmi
26 lines
703 B
Plaintext
26 lines
703 B
Plaintext
//Here are the procs used to modify status effects of a mob.
|
|
//The effects include: stunned, weakened, paralysis, sleeping, resting, jitteriness, dizziness
|
|
// eye damage, eye_blind, eye_blurry, druggy, BLIND disability, and NEARSIGHT disability.
|
|
|
|
/////////////////////////////////// EYE_BLIND ////////////////////////////////////
|
|
|
|
/mob/living/brain/blind_eyes() // no eyes to damage or heal
|
|
return
|
|
|
|
/mob/living/brain/adjust_blindness()
|
|
return
|
|
|
|
/mob/living/brain/set_blindness()
|
|
return
|
|
|
|
/////////////////////////////////// EYE_BLURRY ////////////////////////////////////
|
|
|
|
/mob/living/brain/blur_eyes()
|
|
return
|
|
|
|
/mob/living/brain/adjust_blurriness()
|
|
return
|
|
|
|
/mob/living/brain/set_blurriness()
|
|
return
|