mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 13:07:46 +01:00
19 lines
513 B
Plaintext
19 lines
513 B
Plaintext
/mob/living/carbon/human/SetStunned(amount, updating = 1, force = 0)
|
|
if(species)
|
|
amount = amount * species.stun_mod
|
|
..()
|
|
|
|
/mob/living/carbon/human/SetWeakened(amount, updating = 1, force = 0)
|
|
if(species)
|
|
amount = amount * species.stun_mod
|
|
..()
|
|
|
|
/mob/living/carbon/human/SetParalysis(amount, updating = 1, force = 0)
|
|
if(species)
|
|
amount = amount * species.stun_mod
|
|
..()
|
|
|
|
/mob/living/carbon/human/SetSleeping(amount, updating = 1, no_alert = FALSE)
|
|
if(species)
|
|
amount = amount * species.stun_mod
|
|
..() |