From 44648abb45196a480bcf767ded3dfe41e301cb1b Mon Sep 17 00:00:00 2001 From: ATH1909 <42606352+ATH1909@users.noreply.github.com> Date: Fri, 13 Sep 2019 13:21:22 -0500 Subject: [PATCH] Removes some references to /datum/reagent/colorful_reagent/powder's old name that Akrilla forgot about (#46338) * Update other_reagents.dm * Update other_reagents.dm * Update other_reagents.dm * Update other_reagents.dm --- .../chemistry/reagents/other_reagents.dm | 31 +++++++++++-------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index dc574f2bf4c..ec9c9a48194 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -1216,72 +1216,77 @@ L.remove_movespeed_modifier(type) ..() -/////////////////////////Coloured Crayon Powder//////////////////////////// +/////////////////////////Colorful Powder//////////////////////////// //For colouring in /proc/mix_color_from_reagents /datum/reagent/colorful_reagent/powder - name = "Crayon Powder" + name = "Mundane Powder" //the name's a bit similar to the name of colorful reagent, but hey, they're practically the same chem anyway var/colorname = "none" - description = "A powder good for colouring chemical reagents." + description = "A powder that is used for coloring things." reagent_state = SOLID color = "#FFFFFF" // rgb: 207, 54, 0 taste_description = "the back of class" /datum/reagent/colorful_reagent/powder/New() - description = "\an [colorname] powder good for colouring chemical reagents." + if(colorname == "none") + description = "A rather mundane-looking powder. It doesn't look like it'd color much of anything..." + else if(colorname == "invisible") + description = "An invisible powder. Unfortunately, since it's invisible, it doesn't look like it'd color much of anything..." + else + description = "\An [colorname] powder, used for coloring things [colorname]." /datum/reagent/colorful_reagent/powder/red - name = "Red Crayon Powder" + name = "Red Powder" colorname = "red" color = "#DA0000" // red random_color_list = list("#FC7474") /datum/reagent/colorful_reagent/powder/orange - name = "Orange Crayon Powder" + name = "Orange Powder" colorname = "orange" color = "#FF9300" // orange random_color_list = list("#FF9300") /datum/reagent/colorful_reagent/powder/yellow - name = "Yellow Crayon Powder" + name = "Yellow Powder" colorname = "yellow" color = "#FFF200" // yellow random_color_list = list("#FFF200") /datum/reagent/colorful_reagent/powder/green - name = "Green Crayon Powder" + name = "Green Powder" colorname = "green" color = "#A8E61D" // green random_color_list = list("#A8E61D") /datum/reagent/colorful_reagent/powder/blue - name = "Blue Crayon Powder" + name = "Blue Powder" colorname = "blue" color = "#00B7EF" // blue random_color_list = list("#71CAE5") /datum/reagent/colorful_reagent/powder/purple - name = "Purple Crayon Powder" + name = "Purple Powder" colorname = "purple" color = "#DA00FF" // purple random_color_list = list("#BD8FC4") /datum/reagent/colorful_reagent/powder/invisible - name = "Invisible Crayon Powder" + name = "Invisible Powder" colorname = "invisible" color = "#FFFFFF00" // white + no alpha random_color_list = list(null) //because using the powder color turns things invisible /datum/reagent/colorful_reagent/powder/black - name = "Black Crayon Powder" + name = "Black Powder" colorname = "black" color = "#1C1C1C" // not quite black random_color_list = list("#8D8D8D") //more grey than black, not enough to hide your true colors /datum/reagent/colorful_reagent/powder/white - name = "White Crayon Powder" + name = "White Powder" colorname = "white" color = "#FFFFFF" // white random_color_list = list("#FFFFFF") //doesn't actually change appearance at all