Waistcoats should have a working suit storage now, allowing PDAs and pens

Cryo no longer makes people inside the tube only process reagents every 10th tick (which was fucking retarded, considering that the cryoxadone happens to BE a reagent)

Clonexadone now heals non-cloneloss at the same rate as regular cryo reagent, so it's not strictly better in all cases.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1179 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
n3ophyt3@gmail.com
2011-03-13 02:40:30 +00:00
parent c48804b204
commit 4f30c9a7ac
3 changed files with 8 additions and 8 deletions

View File

@@ -1018,11 +1018,11 @@ datum
on_mob_life(var/mob/M)
if(!M) M = holder.my_atom
if(M.bodytemperature < 170)
if(M:cloneloss) M:cloneloss = max(0, M:cloneloss-6)
if(M:oxyloss) M:oxyloss = max(0, M:oxyloss-6)
if(M:bruteloss) M:bruteloss = max(0, M:bruteloss-6)
if(M:fireloss) M:fireloss = max(0, M:fireloss-6)
if(M:toxloss) M:toxloss = max(0, M:toxloss-6)
if(M:cloneloss) M:cloneloss = max(0, M:cloneloss-3)
if(M:oxyloss) M:oxyloss = max(0, M:oxyloss-3)
if(M:bruteloss) M:bruteloss = max(0, M:bruteloss-3)
if(M:fireloss) M:fireloss = max(0, M:fireloss-3)
if(M:toxloss) M:toxloss = max(0, M:toxloss-3)
..()
return

View File

@@ -101,7 +101,7 @@
icon_state = "vest"
item_state = "wcoat"
body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
allowed = list()
allowed = list(/obj/item/device/pda)
/obj/item/clothing/suit/apron
name = "apron"

View File

@@ -206,7 +206,7 @@
src.occupant.client.eye = src.occupant.client.mob
src.occupant.client.perspective = MOB_PERSPECTIVE
src.occupant.loc = src.loc
src.occupant.metabslow = 0
// src.occupant.metabslow = 0
src.occupant = null
build_icon()
return
@@ -226,7 +226,7 @@
M.pulling = null
M.loc = src
src.occupant = M
M.metabslow = 1
// M.metabslow = 1
src.add_fingerprint(usr)
build_icon()
return 1