Drills implimented

This commit is contained in:
warior4356
2018-10-29 01:10:10 -07:00
parent 46c0bd8b14
commit 13d927c10e
13 changed files with 215 additions and 20 deletions
+24
View File
@@ -354,4 +354,28 @@
/obj/item/stack/sheet/wood = 20,
/obj/item/stack/cable_coil = 10)
tools = list(/obj/item/screwdriver, /obj/item/wrench, /obj/item/weldingtool)
category = CAT_MISC
/datum/crafting_recipe/drill
name = "Thermal Drill"
result = /obj/item/thermal_drill
time = 60 // Building a functioning guillotine takes time
reqs = list(/obj/item/stack/cable_coil = 5,
/obj/item/mecha_parts/mecha_equipment/drill = 1,
/obj/item/stock_parts/cell = 1,
/obj/item/stack/rods = 2,
/obj/item/assembly/timer = 1)
tools = list(/obj/item/screwdriver, /obj/item/wrench)
category = CAT_MISC
/datum/crafting_recipe/d_drill
name = "Diamond Tipped Thermal Drill"
result = /obj/item/thermal_drill/diamond_drill
time = 60 // Building a functioning guillotine takes time
reqs = list(/obj/item/stack/cable_coil = 5,
/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill = 1,
/obj/item/stock_parts/cell = 1,
/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