Merge pull request #16653 from KillianKirilenko/kk-sdspawns

Space Ghost and SD Mining spawn tweaks
This commit is contained in:
Heroman3003
2024-11-30 14:41:11 +10:00
committed by GitHub
2 changed files with 10 additions and 6 deletions
@@ -97,7 +97,8 @@
/mob/living/simple_mob/vore/alienanimals/space_ghost/apply_melee_effects(var/atom/A)
var/mob/living/L = A
L.hallucination += 50
if(L.hallucination <= 100)
L.hallucination += rand(1,10)
/mob/living/simple_mob/vore/alienanimals/space_ghost/shoot(atom/A) //We're shooting ghosts at people and need them to have the same faction as their parent, okay?
if(!projectiletype)
@@ -209,7 +210,8 @@
/mob/living/simple_mob/vore/alienanimals/spooky_ghost/apply_melee_effects(var/atom/A)
var/mob/living/L = A
if(L && istype(L))
L.hallucination += rand(1,50)
if(L.hallucination <= 100)
L.hallucination += rand(1,10)
/mob/living/simple_mob/vore/alienanimals/spooky_ghost/Life()
. = ..()