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
This commit is contained in:
ATH1909
2019-09-13 14:21:22 -04:00
committed by moo
parent e909437767
commit 44648abb45
@@ -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