mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-22 12:47:16 +01:00
Merge pull request #12140 from KillianKirilenko/kk-test
Startreader Stunlocks Begone
This commit is contained in:
@@ -109,12 +109,11 @@
|
||||
destructive = TRUE
|
||||
violent_breakthrough = TRUE
|
||||
|
||||
/mob/living/simple_mob/vore/alienanimals/startreader/apply_melee_effects(var/atom/A)
|
||||
if(weakened) //Don't stun people while they're already stunned! That's SILLY!
|
||||
/mob/living/simple_mob/vore/alienanimals/startreader/apply_melee_effects(mob/living/L)
|
||||
if(L.weakened) //Don't stun people while they're already stunned! That's SILLY!
|
||||
return
|
||||
if(prob(15))
|
||||
var/mob/living/L = A
|
||||
if(isliving(A))
|
||||
if(isliving(L))
|
||||
visible_message("<span class='danger'>\The [src] trips \the [L]!</span>!")
|
||||
L.weakened += rand(1,10)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user