Thermal Safe Drill (#10996)

This commit is contained in:
Geeves
2021-01-24 12:15:14 +01:00
committed by GitHub
parent 6211c0a2c3
commit 169e87ba19
11 changed files with 171 additions and 32 deletions
@@ -0,0 +1,23 @@
/obj/item/thermal_drill
name = "thermal safe drill"
desc = "A tungsten carbide thermal drill with magnetic clamps for the purpose of drilling hardened objects. Guaranteed 100% jam proof."
icon = 'icons/obj/safe_drill.dmi'
icon_state = "hardened_drill"
w_class = ITEMSIZE_HUGE
force = 12
var/time_multiplier = 1
var/datum/looping_sound/thermal_drill/soundloop
/obj/item/thermal_drill/Initialize()
. = ..()
soundloop = new(list(src), FALSE)
/obj/item/thermal_drill/Destroy()
QDEL_NULL(soundloop)
return ..()
/obj/item/thermal_drill/diamond_drill
name = "diamond tipped thermal safe drill"
desc = "A diamond tipped thermal drill with magnetic clamps for the purpose of quickly drilling hardened objects. Guaranteed 100% jam proof."
icon_state = "diamond_drill"
time_multiplier = 2