Added Sieve's 'connected to port' and 'tank attached' icons for pumps and scrubbers.

And I most certainly did not add a special new shirt, with icons by Ausops. No sir.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3060 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
petethegoat@gmail.com
2012-02-08 19:42:03 +00:00
parent ac1eaf4d44
commit 3978a42d8b
8 changed files with 20 additions and 3 deletions

View File

@@ -99,6 +99,11 @@
item_state = "johnny"
flags = FPRINT | TABLEPASS
/obj/item/clothing/suit/ianshirt
name = "worn shirt"
desc = "A worn out, curiously comfortable t-shirt with a picture of Ian. You wouldn't go so far as to say it feels like being hugged when you wear it but it's pretty close. Good for sleeping in."
icon_state = "ianshirt"
item_state = "ianshirt"
/obj/item/clothing/under/rainbow
name = "rainbow"

View File

@@ -58,10 +58,10 @@
else
icon_state = "[color]"
if(holding)
overlays += image('atmos.dmi', "can-open")
overlays += "can-open"
if(connected_port)
overlays += image('atmos.dmi', "can-connector")
overlays += "can-connector"
var/tank_pressure = air_contents.return_pressure()

View File

@@ -19,6 +19,12 @@
else
icon_state = "psiphon:0"
if(holding)
overlays += "siphon-open"
if(connected_port)
overlays += "siphon-connector"
return
/obj/machinery/portable_atmospherics/pump/process()

View File

@@ -39,6 +39,12 @@
else
icon_state = "pscrubber:0"
if(holding)
overlays += "scrubber-open"
if(connected_port)
overlays += "scrubber-connector"
return
/obj/machinery/portable_atmospherics/scrubber/process()