mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-28 07:39:13 +01:00
Merge pull request #5822 from Darlantanis/DemonGibsNerf
Removes gibspawning from rift walkers
This commit is contained in:
@@ -136,28 +136,22 @@
|
||||
/mob/living/simple_mob/vore/demonAI/break_cloak()
|
||||
uncloak()
|
||||
|
||||
|
||||
/mob/living/simple_mob/vore/demonAI/is_cloaked()
|
||||
return cloaked
|
||||
|
||||
|
||||
// Cloaks the spider automatically, if possible.
|
||||
/mob/living/simple_mob/vore/demonAI/handle_special()
|
||||
if(!cloaked && can_cloak())
|
||||
cloak()
|
||||
|
||||
|
||||
// Applies bonus base damage if cloaked.
|
||||
/mob/living/simple_mob/vore/demonAI/apply_bonus_melee_damage(atom/A, damage_amount)
|
||||
var/turf/T = get_turf(src)
|
||||
if(cloaked)
|
||||
new /obj/effect/gibspawner/generic(T)
|
||||
playsound(src.loc, 'sound/effects/blobattack.ogg', 50, 1)
|
||||
uncloak()
|
||||
return damage_amount + cloaked_bonus_damage
|
||||
return ..()
|
||||
|
||||
|
||||
// Force uncloaking if attacked.
|
||||
/mob/living/simple_mob/vore/demonAI/bullet_act(obj/item/projectile/P)
|
||||
. = ..()
|
||||
@@ -199,4 +193,12 @@
|
||||
|
||||
/mob/living/simple_mob/vore/demonAI/attackby()
|
||||
playsound(src, 'sound/misc/demonlaugh.ogg', 50, 1)
|
||||
..()
|
||||
..()
|
||||
|
||||
/mob/living/simple_mob/vore/demonAI/gibspam
|
||||
|
||||
/mob/living/simple_mob/vore/demonAI/gibspam/apply_bonus_melee_damage(atom/A, damage_amount)
|
||||
var/turf/T = get_turf(src)
|
||||
if(cloaked)
|
||||
new /obj/effect/gibspawner/generic(T)
|
||||
return ..()
|
||||
|
||||
Reference in New Issue
Block a user