mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-10 15:36:56 +01:00
Some rev changes
This commit is contained in:
@@ -28,15 +28,15 @@
|
||||
to_chat(target, "You feel as if you are being watched.")
|
||||
return
|
||||
draining = TRUE
|
||||
essence_drained += rand(15, 20)
|
||||
essence_drained += rand(30, 40)
|
||||
to_chat(src, "<span class='revennotice'>You search for the soul of [target].</span>")
|
||||
if(do_after(src, rand(10, 20), 0, target)) //did they get deleted in that second?
|
||||
if(target.ckey)
|
||||
to_chat(src, "<span class='revennotice'>[target.p_their(TRUE)] soul burns with intelligence.</span>")
|
||||
essence_drained += rand(20, 30)
|
||||
essence_drained += rand(40, 60)
|
||||
if(target.stat != DEAD)
|
||||
to_chat(src, "<span class='revennotice'>[target.p_their(TRUE)] soul blazes with life!</span>")
|
||||
essence_drained += rand(40, 50)
|
||||
essence_drained += rand(80, 100)
|
||||
else
|
||||
to_chat(src, "<span class='revennotice'>[target.p_their(TRUE)] soul is weak and faltering.</span>")
|
||||
if(do_after(src, rand(15, 20), 0, target)) //did they get deleted NOW?
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#define REVENANT_SPAWN_THRESHOLD 15
|
||||
#define REVENANT_SPAWN_THRESHOLD 12
|
||||
|
||||
/datum/round_event_control/revenant
|
||||
name = "Spawn Revenant" // Did you mean 'griefghost'?
|
||||
@@ -20,7 +20,8 @@
|
||||
if(!ignore_mobcheck)
|
||||
var/deadMobs = 0
|
||||
for(var/mob/living/carbon/M in GLOB.dead_mob_list)
|
||||
deadMobs++
|
||||
if(is_station_level(M.z))
|
||||
deadMobs++
|
||||
if(deadMobs < REVENANT_SPAWN_THRESHOLD)
|
||||
message_admins("Event attempted to spawn a revenant, but there were only [deadMobs]/[REVENANT_SPAWN_THRESHOLD] dead mobs.")
|
||||
return WAITING_FOR_SOMETHING
|
||||
|
||||
Reference in New Issue
Block a user