Updated the PANDEMIC- recharge speed is now affect by the number of antibodies in the blood sample. Less types = faster recharge.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2316 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
petethegoat@gmail.com
2011-10-02 12:58:51 +00:00
parent 1067ebfdc6
commit d5260eb6f6
2 changed files with 21 additions and 5 deletions

View File

@@ -343,7 +343,14 @@
B.reagents.add_reagent("vaccine",15,vaccine_type)
del(D)
wait = 1
spawn(1200)
var/datum/reagents/R = beaker.reagents
var/datum/reagent/blood/Blood = null
for(var/datum/reagent/blood/L in R.reagent_list)
if(L)
Blood = L
break
var/list/res = Blood.data["resistances"]
spawn(res.len*500)
src.wait = null
else
src.temphtml = "The replicator is not ready yet."
@@ -363,7 +370,7 @@
B.reagents.add_reagent("blood",20,data)
src.updateUsrDialog()
wait = 1
spawn(3000)
spawn(2000)
src.wait = null
else
src.temphtml = "The replicator is not ready yet."