Increased the sparkling delay on diamond ore.

Added metroid mutantrace (isn't that much different from lizardfolk yet).

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@812 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
uporotiy
2011-01-08 13:47:28 +00:00
parent a14a2d0ed0
commit 24d0abf18c
5 changed files with 8 additions and 2 deletions

View File

@@ -639,7 +639,7 @@ Auto Patrol: []"},
if(istype(perp:wear_suit, /obj/item/clothing/suit/wizrobe))
threatcount += 2
if(perp.mutantrace != "none")
if(perp.mutantrace && perp.mutantrace != "none")
threatcount += 2
//Agent cards lower threatlevel when normal idchecking is off.

View File

@@ -703,7 +703,7 @@
src.sight &= ~SEE_TURFS
src.sight &= ~SEE_MOBS
src.sight &= ~SEE_OBJS
if (src.mutantrace == "lizard")
if (src.mutantrace == "lizard" || src.mutantrace == "metroid")
src.see_in_dark = 3
src.see_invisible = 1
else if (src.druggy) // If drugged~

View File

@@ -2,6 +2,12 @@
if(src.mutantrace == "lizard")
if(copytext(message, 1, 2) != "*")
message = dd_replaceText(message, "s", stutter("ss"))
if(src.mutantrace == "metroid" && prob(5))
if(copytext(message, 1, 2) != "*")
message = "SKR"
var/imax = rand(5,20)
for(var/i = 0,i<imax,i++)
message += "E"
if(istype(src.virus, /datum/disease/pierrot_throat))
var/list/temp_message = dd_text2list(message, " ")
var/list/pick_list = list()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB