mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-27 18:12:00 +00:00
- Tweaked cryo healing speed
- Added crawl-trough-vent travel time - Tweaked placement of utility belt contents window & fixed one related small bug - Added metabolization for several reagents - Other small tweaks git-svn-id: http://tgstation13.googlecode.com/svn/trunk@273 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -638,6 +638,8 @@ datum
|
||||
on_mob_life(var/mob/M)
|
||||
M:drowsyness = max(0,M:drowsyness-5)
|
||||
M.bodytemperature = max(310, M.bodytemperature-5) //310 is the normal bodytemp. 310.055
|
||||
..()
|
||||
return
|
||||
|
||||
plasma
|
||||
name = "Plasma"
|
||||
@@ -850,7 +852,7 @@ datum
|
||||
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
|
||||
|
||||
spaceacillin
|
||||
@@ -1168,6 +1170,8 @@ datum
|
||||
M:sleeping = 0
|
||||
M.bodytemperature = min(310, M.bodytemperature+5) //Copy-paste from Coffee, derp
|
||||
M.make_jittery(5)
|
||||
..()
|
||||
return
|
||||
|
||||
|
||||
cognac
|
||||
@@ -1505,6 +1509,8 @@ datum
|
||||
if(data >= 50 && prob(33))
|
||||
if (!M.confused) M:confused = 1
|
||||
M.confused += 2
|
||||
..()
|
||||
return
|
||||
|
||||
manly_dorf
|
||||
name = "The Manly Dorf"
|
||||
@@ -1521,4 +1527,6 @@ datum
|
||||
M.stuttering += 4
|
||||
if(data >= 50 && prob(33))
|
||||
if (!M.confused) M:confused = 1
|
||||
M.confused += 3
|
||||
M.confused += 3
|
||||
..()
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user