mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-08-21 13:06:12 +01:00
11 lines
312 B
Plaintext
11 lines
312 B
Plaintext
/datum/ailment/disability/deaf
|
|
name = "Deafness"
|
|
max_stages = 1
|
|
cure = "Unknown"
|
|
affected_species = list("Human","Monkey")
|
|
|
|
/datum/ailment/disability/deaf/stage_act(var/mob/living/affected_mob,var/datum/ailment_data/D)
|
|
if (..())
|
|
return
|
|
var/mob/living/M = D.affected_mob
|
|
M.take_ear_damage(5, 1) |