From c11b765d2cbc4556cbbf11f7ea59addf4c45f42a Mon Sep 17 00:00:00 2001 From: cib Date: Sat, 27 Oct 2012 12:45:42 +0200 Subject: [PATCH] Increased cost of cryo. - It now uses twice as much oxygen - Cryoxadone and clonexadone now heal brute, burn and oxyloss much slower, though cloneloss remains at the same speed. --- code/game/machinery/cryo.dm | 2 +- code/modules/reagents/Chemistry-Reagents.dm | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/code/game/machinery/cryo.dm b/code/game/machinery/cryo.dm index 7998d4b1c2..3c7a7bc88a 100644 --- a/code/game/machinery/cryo.dm +++ b/code/game/machinery/cryo.dm @@ -182,7 +182,7 @@ if(air_contents.total_moles() < 1) return var/datum/gas_mixture/expel_gas = new - var/remove_amount = air_contents.total_moles()/100 + var/remove_amount = air_contents.total_moles()/50 expel_gas = air_contents.remove(remove_amount) // Just have the gas disappear to nowhere. diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 7c2e01457b..8bf8cb3332 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -1487,8 +1487,9 @@ datum if(M.bodytemperature < 170) M.adjustCloneLoss(-1) M.adjustOxyLoss(-3) - M.heal_organ_damage(3,3) - M.adjustToxLoss(-3) + if(prob(50)) + M.heal_organ_damage(1,1) + M.adjustToxLoss(-1) ..() return @@ -1504,8 +1505,8 @@ datum if(M.bodytemperature < 170) M.adjustCloneLoss(-3) M.adjustOxyLoss(-3) - M.heal_organ_damage(3,3) - M.adjustToxLoss(-3) + M.heal_organ_damage(1,1) + M.adjustToxLoss(-1) ..() return