From cdc5ae5017b622fa34ceb3fba5ca8cde5b8fbdfd Mon Sep 17 00:00:00 2001 From: Improvedname Date: Tue, 25 Dec 2018 19:50:44 +0100 Subject: [PATCH] push --- code/game/objects/items/weapons/storage/toolbox.dm | 6 ++++++ code/modules/crafting/recipes.dm | 10 ++++++++++ 2 files changed, 16 insertions(+) diff --git a/code/game/objects/items/weapons/storage/toolbox.dm b/code/game/objects/items/weapons/storage/toolbox.dm index 02544974442..18aa29e3615 100644 --- a/code/game/objects/items/weapons/storage/toolbox.dm +++ b/code/game/objects/items/weapons/storage/toolbox.dm @@ -94,6 +94,12 @@ new /obj/item/multitool(src) new /obj/item/clothing/gloves/combat(src) +/obj/item/storage/toolbox/fakesyndi + name = "suspicous looking toolbox" + icon_state = "syndicate" + item_state = "toolbox_syndi" + desc = "Danger. Very Robust. The paint seems to be wet still." + /obj/item/storage/toolbox/drone name = "mechanical toolbox" icon_state = "blue" diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 65ca57696c8..a5783f5ab3f 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -396,4 +396,14 @@ /obj/item/stack/rods = 2, /obj/item/assembly/prox_sensor = 1) // Not a timer because the system sees a diamond drill as a drill too, letting you make both otherwise. tools = list(/obj/item/screwdriver, /obj/item/wrench) + category = CAT_MISC + +/datum/crafting_recipe/faketoolbox + name = "Black and Red toolbox" + result = /obj/item/storage/toolbox/fakesyndi + time = 40 + reqs = list(/datum/reagent/paint/red = 10, + /datum/reagent/paint/black = 30, + /obj/item/storage/toolbox = 1) //Paint in reagents so it doesnt take the container up, yet still take it from the beaker + tools = list(/obj/item/reagent_containers/glass/rag = 1) //need something to paint with it category = CAT_MISC \ No newline at end of file