mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-15 18:14:22 +01:00
42e7eba82b
* Adds an Ocky icky phobia (#57450) Co-authored-by: Emmanuel S. <emmanuelssr@ gmail.com> Co-authored-by: interestingusernam3 <51925758+interestingusernam3@ users.noreply.github.com> * Adds an Ocky icky phobia Co-authored-by: GuillaumePrata <55374212+GuillaumePrata@users.noreply.github.com> Co-authored-by: Emmanuel S. <emmanuelssr@ gmail.com> Co-authored-by: interestingusernam3 <51925758+interestingusernam3@ users.noreply.github.com>
10 lines
324 B
Plaintext
10 lines
324 B
Plaintext
/// "Immerses" the player, making them unable to use some OOC terms IC
|
|
/datum/smite/ocky_icky
|
|
name = "Ocky icky phobia"
|
|
|
|
/datum/smite/ocky_icky/effect(client/user, mob/living/target)
|
|
. = ..()
|
|
var/mob/living/carbon/ocker = target
|
|
ocker.gain_trauma(/datum/brain_trauma/mild/phobia/ocky_icky, TRAUMA_RESILIENCE_LOBOTOMY)
|
|
|