From 065ffff420675d74d3f70a22d6a9124de8dbb2d2 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Wed, 21 Sep 2022 16:45:05 -0400 Subject: [PATCH] Removes radioactive gel from blobs (#19103) * Removes radioactive gel * removes the colour define --- code/__DEFINES/colors.dm | 2 -- code/modules/reagents/chemistry/reagents/blob.dm | 16 ---------------- 2 files changed, 18 deletions(-) diff --git a/code/__DEFINES/colors.dm b/code/__DEFINES/colors.dm index 461330efb8c..c51567f8f5e 100644 --- a/code/__DEFINES/colors.dm +++ b/code/__DEFINES/colors.dm @@ -137,7 +137,6 @@ #define COLOR_KINETIC_GELATIN "#FFA500" #define COLOR_CRYOGENIC_LIQUID "#8BA6E9" #define COLOR_SORIUM "#808000" -#define COLOR_RADIOACTIVE_GEL "#2476f0" #define COLOR_TESLIUM_PASTE "#20324D" // Blob complementary colours @@ -148,5 +147,4 @@ #define COMPLEMENTARY_COLOR_KINETIC_GELATIN "#ebb756" #define COMPLEMENTARY_COLOR_CRYOGENIC_LIQUID "#a8b7df" #define COMPLEMENTARY_COLOR_SORIUM "#a2a256" -#define COMPLEMENTARY_COLOR_RADIOACTIVE_GEL "#24f0f0" #define COMPLEMENTARY_COLOR_TESLIUM_PASTE "#412968" diff --git a/code/modules/reagents/chemistry/reagents/blob.dm b/code/modules/reagents/chemistry/reagents/blob.dm index 40135772318..33ebeadf9d2 100644 --- a/code/modules/reagents/chemistry/reagents/blob.dm +++ b/code/modules/reagents/chemistry/reagents/blob.dm @@ -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"