mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-09 15:05:38 +01:00
10 lines
271 B
Plaintext
10 lines
271 B
Plaintext
/obj/item/projectile/beam/mindflayer
|
|
name = "flayer ray"
|
|
|
|
/obj/item/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
|