New spraycan, hoe and spaceworms icons, including hold icons.

Singularity now changes sprite to a more violent one when not contained.


git-svn-id: http://tgstation13.googlecode.com/svn/trunk@121 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
Skiedrake
2010-09-20 19:52:51 +00:00
parent b03c51aa24
commit 1db77663c1
5 changed files with 5 additions and 0 deletions

View File

@@ -138,18 +138,23 @@ However people seem to like it for some reason.
var/direction_go = pick(1,2,4,8)
if(locate(/obj/machinery/containment_field) in get_step(src,NORTH))
if(direction_go == 1)
icon_state = "Singularity"
return
if(locate(/obj/machinery/containment_field) in get_step(src,SOUTH))
if(direction_go == 2)
icon_state = "Singularity"
return
if(locate(/obj/machinery/containment_field) in get_step(src,EAST))
if(direction_go == 4)
icon_state = "Singularity"
return
if(locate(/obj/machinery/containment_field) in get_step(src,WEST))
if(direction_go == 8)
icon_state = "Singularity"
return
if(selfmove)
spawn(0)
icon_state = "Singularity2"
step(src, direction_go)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 13 KiB