Removes radioactive gel from blobs (#19103)

* Removes radioactive gel

* removes the colour define
This commit is contained in:
Qwertytoforty
2022-09-21 16:45:05 -04:00
committed by GitHub
parent 875eb8a950
commit 065ffff420
2 changed files with 0 additions and 18 deletions
@@ -152,22 +152,6 @@
if(!step_towards(X, pull))
break
/datum/reagent/blob/radioactive_gel
name = "Radioactive gel"
description = "Deals medium toxin damage and a little brute damage, but irradiates those struck."
id = "radioactive_gel"
color = COLOR_RADIOACTIVE_GEL
complementary_color = COMPLEMENTARY_COLOR_RADIOACTIVE_GEL
message_living = ", and you feel a strange warmth from within"
/datum/reagent/blob/radioactive_gel/reaction_mob(mob/living/M, method = REAGENT_TOUCH, volume)
if(method == REAGENT_TOUCH)
volume = ..()
M.apply_damage(0.3 * volume, TOX)
M.apply_damage(0.2 * volume, BRUTE) // lets not have IPC / plasmaman only take 7.5 damage from this
if(M.reagents)
M.reagents.add_reagent("uranium", 0.3 * volume)
/datum/reagent/blob/teslium_paste
name = "Teslium paste"
description = "Deals medium burn damage, and shocks those struck over time"