mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 20:43:10 +01:00
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user