This commit is contained in:
killer653
2017-12-14 22:54:01 -05:00
parent 6c616336fd
commit 7f70702f58
22 changed files with 233 additions and 13 deletions
@@ -414,6 +414,20 @@
else
M.sleeping = max(M.sleeping, 20)
M.drowsyness = max(M.drowsyness, 60)
else if(alien == IS_CHIRRET) //VOREStation Edit Start
if(effective_dose < 2)
if(effective_dose == metabolism * 2 || prob(5))
M.make_dizzy(6)
M.slurring = max(M.slurring, 30)
M.eye_blurry = max(M.eye_blurry, 10)
else if(effective_dose < 10)
M.slurring = max(M.slurring, 30)
M.eye_blurry = max(M.eye_blurry, 10)
M.drowsyness = max(M.drowsyness, 20)
M.eye_blurry = max(M.eye_blurry, 10)
M.confused = max(M.confused, 20)
else
M.paralysis = max(M.paralysis, 20)//VOREStation Edit End
/datum/reagent/sulfur
name = "Sulfur"
@@ -804,6 +804,8 @@
//if(alien == IS_TAJARA) //VOREStation Edit Begin
//M.adjustToxLoss(0.5 * removed)
//M.make_jittery(4) //extra sensitive to caffine
if(alien == IS_CHIRRET)
M.make_jittery(20) //VOREStation Edit End
if(adj_temp > 0)
holder.remove_reagent("frostoil", 10 * removed)