From 448b0af5cb91def4f51fdaf2da7b98b376279553 Mon Sep 17 00:00:00 2001 From: connorjg1 Date: Fri, 10 Sep 2021 23:07:39 +1000 Subject: [PATCH] Revert "Cryo no longer heals organ damage." (#12457) --- .../Chemistry-Reagents-Medicine.dm | 8 ++-- html/changelogs/connorjg1.yml | 42 +++++++++++++++++++ 2 files changed, 47 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/connorjg1.yml diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm index e6462945828..73f71fb67a9 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm @@ -225,9 +225,10 @@ M.add_chemical_effect(CE_CRYO, 1) if(M.bodytemperature < 170) M.add_chemical_effect(CE_PULSE, -2) - M.adjustCloneLoss(-10 * removed) + M.adjustCloneLoss(-100 * removed) M.adjustOxyLoss(-10 * removed) M.heal_organ_damage(10 * removed, 10 * removed) + M.adjustToxLoss(-10 * removed) /decl/reagent/clonexadone name = "Clonexadone" @@ -242,9 +243,10 @@ M.add_chemical_effect(CE_CRYO, 1) if(M.bodytemperature < 170) M.add_chemical_effect(CE_PULSE, -2) - M.adjustCloneLoss(-30 * removed) + M.adjustCloneLoss(-100 * removed) M.adjustOxyLoss(-30 * removed) M.heal_organ_damage(30 * removed, 30 * removed) + M.adjustToxLoss(-30 * removed) /* Painkillers */ @@ -1490,4 +1492,4 @@ taste_description = "bittersweetness, insect meat and regret" metabolism_min = 0.5 breathe_mul = 0 - goodmessage = list("You feel strange, in a good way.") \ No newline at end of file + goodmessage = list("You feel strange, in a good way.") diff --git a/html/changelogs/connorjg1.yml b/html/changelogs/connorjg1.yml new file mode 100644 index 00000000000..26142eb9c10 --- /dev/null +++ b/html/changelogs/connorjg1.yml @@ -0,0 +1,42 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Connorjg1 + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Medical Cryogenics will now heal organ damage again." + - balance: "Medical Cryogenics will heal genetics damage at a faster rate."