From 2ca80a06b952b290ad1beb386eebb439e4a111f2 Mon Sep 17 00:00:00 2001 From: Techhead0 Date: Sun, 15 Mar 2015 19:15:35 -0400 Subject: [PATCH] Botany tool construction and clippers Adds hatchets and mini hoes to the autolathe recipe list. Material costs are unchanged. Also adds plant clippers (reskinned wirecutters) to secure hydroponics lockers. --- code/game/machinery/autolathe_datums.dm | 10 ++++++++++ .../crates_lockers/closets/secure/hydroponics.dm | 1 + 2 files changed, 11 insertions(+) diff --git a/code/game/machinery/autolathe_datums.dm b/code/game/machinery/autolathe_datums.dm index b3193ac73e..8330fc366a 100644 --- a/code/game/machinery/autolathe_datums.dm +++ b/code/game/machinery/autolathe_datums.dm @@ -76,6 +76,16 @@ name = "wrench" path = /obj/item/weapon/wrench category = "Tools" + +/datum/autolathe/recipe/hatchet + name = "hatchet" + path = /obj/item/weapon/hatchet + category = "Tools" + +/datum/autolathe/recipe/minihoe + name = "mini hoe" + path = /obj/item/weapon/minihoe + category = "Tools" /datum/autolathe/recipe/radio_headset name = "radio headset" diff --git a/code/game/objects/structures/crates_lockers/closets/secure/hydroponics.dm b/code/game/objects/structures/crates_lockers/closets/secure/hydroponics.dm index 2a1547e4ba..43d440c9f2 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/hydroponics.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/hydroponics.dm @@ -23,5 +23,6 @@ new /obj/item/clothing/head/greenbandana(src) new /obj/item/weapon/minihoe(src) new /obj/item/weapon/hatchet(src) + new /obj/item/weapon/wirecutters/clippers(src) // new /obj/item/weapon/bee_net(src) //No more bees, March 2014 return