From c1aa134c1adc41ebf04e46a07381e19792d533c3 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sun, 10 Feb 2019 17:52:11 +0100 Subject: [PATCH 1/3] Balancing Claridyl 2 Buffed fake damage output even more but made it conditional on having brute damage converts brute to fake damage at 1:5 ratio --- .../reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm index e8e1ed9c03..f67c0cee22 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm @@ -81,8 +81,9 @@ if(alien != IS_DIONA) M.add_chemical_effect(CE_STABLE, 30) M.add_chemical_effect(CE_PAINKILLER, 40) - M.adjustBruteLoss(-1) - M.adjustHalLoss(3) + if(M.getBruteLoss()) //Probably should just do the conversion instead of being such a massive crippling downside + M.adjustBruteLoss(-1) + M.adjustHalLoss(5) //A single unit could make you bedridden shortly if you have a lot of brute //many many side effects all listed in AS Commercial if(prob(0.0001))//Side effects incluide death, this seems like a good "balanced" inclusion of it M.adjustToxLoss(50)//instant crit for tesh From 8c5dd8858eb45d1c8b8d772b155ea6151d337457 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sun, 10 Feb 2019 18:14:48 +0100 Subject: [PATCH 2/3] On second though 20 brute cuasing crippling is not fair 1:2 --- .../reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm index f67c0cee22..01bf7bc034 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm @@ -83,7 +83,7 @@ M.add_chemical_effect(CE_PAINKILLER, 40) if(M.getBruteLoss()) //Probably should just do the conversion instead of being such a massive crippling downside M.adjustBruteLoss(-1) - M.adjustHalLoss(5) //A single unit could make you bedridden shortly if you have a lot of brute + M.adjustHalLoss(2) //A single unit could make you bedridden shortly if you have a lot of brute //many many side effects all listed in AS Commercial if(prob(0.0001))//Side effects incluide death, this seems like a good "balanced" inclusion of it M.adjustToxLoss(50)//instant crit for tesh From 5610983b831cd21828599a240c21c33636b4418d Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sun, 10 Feb 2019 18:29:07 +0100 Subject: [PATCH 3/3] Update Chemistry-Reagents_chomp.dm --- .../reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm index 01bf7bc034..2866785e1d 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm @@ -69,7 +69,7 @@ /datum/reagent/claridyl name = "Claridyl Natural Remedy" id = "claridyl" - description = "Claridyl is an advanced medicine that cures all of your problems. Notice: Clarydil does not claim to actually treat any problems and may cause severe pain." + description = "Claridyl is an advanced medicine that cures all of your problems. Notice: Clarydil does not claim to fix marriages, car loans, student debt or insomnia and may cause severe pain." taste_description = "sugar" reagent_state = LIQUID color = "#AAAAFF"