Dionea anti-radiation drugs damage tweak (#5126)

* Tweaks variable, finished

* Changelog
This commit is contained in:
Mykhailo Bykhovtsev
2018-08-11 03:49:06 -07:00
committed by Erki
parent 1e34823d81
commit a31ac206f1
2 changed files with 15 additions and 8 deletions

View File

@@ -451,15 +451,15 @@
scannable = 1 scannable = 1
taste_description = "bitterness" taste_description = "bitterness"
unaffected_species = IS_MACHINE unaffected_species = IS_MACHINE
var/last_taste_time = -100 var/last_taste_time = -10000
/datum/reagent/hyronalin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) /datum/reagent/hyronalin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
if(alien == IS_DIONA) if(alien == IS_DIONA)
if(last_taste_time + 500 < world.time) // Not to spam message if(last_taste_time + 950 < world.time) // Not to spam message
to_chat(M, "<span class='danger'>Your body withers as you feel a searing pain throughout.</span>") to_chat(M, "<span class='danger'>Your body withers as you feel a searing pain throughout.</span>")
last_taste_time = world.time last_taste_time = world.time
metabolism = REM * 0.33 metabolism = REM * 0.22
M.adjustToxLoss(30 * removed) // Tested numbers myself M.adjustToxLoss(45 * removed) // Tested numbers myself
else else
M.apply_radiation(-30 * removed) M.apply_radiation(-30 * removed)
@@ -474,15 +474,15 @@
scannable = 1 scannable = 1
taste_description = "bitterness" taste_description = "bitterness"
unaffected_species = IS_MACHINE unaffected_species = IS_MACHINE
var/last_taste_time = -100 var/last_taste_time = -10000
/datum/reagent/arithrazine/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) /datum/reagent/arithrazine/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
if(alien == IS_DIONA) if(alien == IS_DIONA)
if(last_taste_time + 250 < world.time) // Not to spam message if(last_taste_time + 450 < world.time) // Not to spam message
to_chat(M, "<span class='danger'>Your body withers as you feel a searing pain throughout.</span>") to_chat(M, "<span class='danger'>Your body withers as you feel a searing pain throughout.</span>")
last_taste_time = world.time last_taste_time = world.time
metabolism = REM * 0.33 metabolism = REM * 0.195
M.adjustToxLoss(120 * removed) // Tested numbers myself M.adjustToxLoss(115 * removed) // Tested numbers myself
else else
M.apply_radiation(-70 * removed) M.apply_radiation(-70 * removed)
M.adjustToxLoss(-10 * removed) M.adjustToxLoss(-10 * removed)

View File

@@ -0,0 +1,7 @@
author: PoZe
delete-after: True
changes:
- tweak: "Arithrazine was tweaked to kill Dionea with 5 units within 2 minutes, instead of original 1."
- tweak: "Hyronalin was teaked to kill Dionea with 15 units within 6 minutes, instead of original 3"