From cdc5ae5017b622fa34ceb3fba5ca8cde5b8fbdfd Mon Sep 17 00:00:00 2001 From: Improvedname Date: Tue, 25 Dec 2018 19:50:44 +0100 Subject: [PATCH 1/2] 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 From a52f49ca2f48070f03dd0a31206ba2d13e7ef872 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 26 Dec 2018 00:18:37 +0100 Subject: [PATCH 2/2] Update toolbox.dm --- code/game/objects/items/weapons/storage/toolbox.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/storage/toolbox.dm b/code/game/objects/items/weapons/storage/toolbox.dm index 18aa29e3615..aa3b824d40d 100644 --- a/code/game/objects/items/weapons/storage/toolbox.dm +++ b/code/game/objects/items/weapons/storage/toolbox.dm @@ -98,7 +98,7 @@ name = "suspicous looking toolbox" icon_state = "syndicate" item_state = "toolbox_syndi" - desc = "Danger. Very Robust. The paint seems to be wet still." + desc = "Danger. Very Robust. The paint is still wet." /obj/item/storage/toolbox/drone name = "mechanical toolbox"