Revenant Tweaks (#11002)

Tau Ceti Basic speakers can now understand 80% of what revenants say.
    Revenants can now universally understand all languages.
    Revenants now spawn between 20 and 30 minutes into the round.
    Revenants now get a numerical identifier after their name that increments up from 1.
This commit is contained in:
Geeves
2021-01-18 20:19:38 +02:00
committed by GitHub
parent 1d52dfec1e
commit b39f1d48dd
5 changed files with 25 additions and 2 deletions
@@ -14,6 +14,7 @@
spawn_mob = /mob/living/carbon/human/revenant
respawn_flag = ANIMAL
var/spawn_index = 1 // used to add a numerical identifier to the revenant. increases by 1 per spawn
var/has_fired = FALSE
/datum/ghostspawner/revenant/spawn_mob(mob/user)
@@ -26,6 +27,9 @@
return
if(R)
R.real_name = "[R.real_name] ([spawn_index])"
R.name = R.real_name
spawn_index++
announce_ghost_joinleave(user, FALSE, "They are now a [name].")
R.ckey = user.ckey