mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 00:51:26 +00:00
Dionea anti-radiation drugs damage tweak (#5126)
* Tweaks variable, finished * Changelog
This commit is contained in:
committed by
Erki
parent
1e34823d81
commit
a31ac206f1
@@ -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)
|
||||||
|
|||||||
7
html/changelogs/Sindorman-Diona.yml
Normal file
7
html/changelogs/Sindorman-Diona.yml
Normal 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"
|
||||||
Reference in New Issue
Block a user