Repurposes the outdated BE_MONKEY into BE_BLOB and seperates the alien and blob pools so people can prefer to be one or the other or both or neither. An annoucement should be made when this goes live so people are aware they have a new flag to set.

Adds a dedicated button on the player panel so admins can easily turn specific players into blobs.
This commit is contained in:
Incoming
2014-01-29 10:54:00 -05:00
parent c34a12c18d
commit 5c5cc6a72d
9 changed files with 46 additions and 9 deletions
+16
View File
@@ -165,6 +165,22 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that
else
alert("Invalid mob")
/client/proc/cmd_admin_blobize(var/mob/M in mob_list)
set category = "Fun"
set name = "Make Blob"
if(!ticker)
alert("Wait until the game starts")
return
if(istype(M, /mob/living/carbon/human))
log_admin("[key_name(src)] has blobized [M.key].")
spawn(10)
M:Blobize()
else
alert("Invalid mob")
/client/proc/cmd_admin_animalize(var/mob/M in mob_list)
set category = "Fun"
set name = "Make Simple Animal"