mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-04 14:01:22 +00:00
10 lines
261 B
Plaintext
10 lines
261 B
Plaintext
/obj/projectile/beam/mindflayer
|
|
name = "flayer ray"
|
|
|
|
/obj/projectile/beam/mindflayer/on_hit(atom/target, blocked = FALSE)
|
|
. = ..()
|
|
if(ishuman(target))
|
|
var/mob/living/carbon/human/M = target
|
|
M.adjustOrganLoss(ORGAN_SLOT_BRAIN, 20)
|
|
M.hallucination += 30
|