Adjusts artistic crate orders

This commit is contained in:
Heroman
2023-02-22 20:17:46 +10:00
parent 1af9bdc798
commit a0f50e4c81
4 changed files with 48 additions and 29 deletions
+27 -19
View File
@@ -27,44 +27,52 @@ var/global/list/cached_icons = list()
return ..()
/obj/item/weapon/reagent_containers/glass/paint/New()
if(paint_type && length(paint_type) > 0)
name = paint_type + " " + name
..()
reagents.add_reagent("water", volume*3/5)
reagents.add_reagent("plasticide", volume/5)
if(paint_type == "white") //why don't white crayons exist
reagents.add_reagent("aluminum", volume/5)
else if (paint_type == "black")
reagents.add_reagent("carbon", volume/5)
else
reagents.add_reagent("marker_ink_[paint_type]", volume/5)
reagents.handle_reactions()
if(paint_type)
reagents.add_reagent("paint", volume, paint_type)
/obj/item/weapon/reagent_containers/glass/paint/red
icon_state = "paint_red"
paint_type = "red"
paint_type = "#FF0000"
/obj/item/weapon/reagent_containers/glass/paint/yellow
icon_state = "paint_yellow"
paint_type = "yellow"
paint_type = "#FFFF00"
/obj/item/weapon/reagent_containers/glass/paint/green
icon_state = "paint_green"
paint_type = "green"
paint_type = "#00FF00"
/obj/item/weapon/reagent_containers/glass/paint/blue
icon_state = "paint_blue"
paint_type = "blue"
paint_type = "#0000FF"
/obj/item/weapon/reagent_containers/glass/paint/purple
/obj/item/weapon/reagent_containers/glass/paint/violet
icon_state = "paint_violet"
paint_type = "purple"
paint_type = "#FF00FF"
/obj/item/weapon/reagent_containers/glass/paint/black
icon_state = "paint_black"
paint_type = "black"
paint_type = "#000000"
/obj/item/weapon/reagent_containers/glass/paint/grey
icon_state = "paint_neutral"
paint_type = "#808080"
/obj/item/weapon/reagent_containers/glass/paint/orange
icon_state = "paint_orange"
paint_type = "#FFA500"
/obj/item/weapon/reagent_containers/glass/paint/purple
icon_state = "paint_purple"
paint_type = "#A500FF"
/obj/item/weapon/reagent_containers/glass/paint/cyan
icon_state = "paint_cyan"
paint_type = "#00FFFF"
/obj/item/weapon/reagent_containers/glass/paint/white
name = "paint remover bucket"
icon_state = "paint_white"
paint_type = "white"
paint_type = "#FFFFFF"
+1 -1
View File
@@ -248,7 +248,7 @@
framed_offset_y = 6
/obj/item/canvas/twentyfour_twentyfour
name = "ai universal standard canvas"
//name = "ai universal standard canvas" // Uncomment this when AI can actually
//desc = "Besides being very large, the AI can accept these as a display from their internal database after you've hung it up." // Not yet
icon_state = "24x24"
width = 24