Merge pull request #10046 from warior4356/Drill

Thermal Drill
This commit is contained in:
variableundefined
2018-11-09 17:11:36 +08:00
committed by GitHub
19 changed files with 265 additions and 37 deletions
+24
View File
@@ -364,4 +364,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
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
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
@@ -881,3 +881,11 @@
materials = list(MAT_GLASS = 2500) //1.25 glass sheets, broken mirrors will return a shard (1 sheet)
build_path = /obj/item/mounted/mirror
category = list("initial", "Miscellaneous")
/datum/design/safe_internals
name = "Safe Internals"
id = "safe"
build_type = AUTOLATHE
materials = list(MAT_METAL = 1000)
build_path = /obj/item/safe_internals
category = list("initial", "Construction")