Refactors revenants to basic mobs (#30661)

This commit is contained in:
PollardTheDragon
2025-10-28 13:26:16 +00:00
committed by GitHub
parent 0f250ed33d
commit a3b2c3a251
13 changed files with 65 additions and 63 deletions
@@ -340,7 +340,7 @@
var/veil_msg = "<span class='warning'>The ectoplasm is awake and seeps \
away...</span>"
var/objective_verb = "Harvest"
var/mob/living/revenant = /mob/living/simple_animal/revenant
var/mob/living/revenant = /mob/living/basic/revenant
/obj/item/antag_spawner/revenant/attack_self__legacy__attackchain(mob/user)
if(level_blocks_magic(user.z)) //this is to make sure the wizard does NOT summon a revenant from the Den..
@@ -369,7 +369,7 @@
qdel(src)
/obj/item/antag_spawner/revenant/spawn_antag(client/C, turf/T, type = "", mob/user)
var/mob/living/simple_animal/revenant/M = new /mob/living/simple_animal/revenant(pick(GLOB.xeno_spawn))
var/mob/living/basic/revenant/M = new /mob/living/basic/revenant(pick(GLOB.xeno_spawn))
M.key = C.key
var/list/messages = list()