mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-04 06:31:47 +00:00
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3775 316c924e-a436-60f5-8080-3fe189b3f50e
27 lines
734 B
Plaintext
27 lines
734 B
Plaintext
/obj/item/weapon/cable_coil/heavyduty
|
|
name = "heavy cable coil"
|
|
icon = 'power.dmi'
|
|
icon_state = "wire"
|
|
|
|
/obj/structure/cable/heavyduty
|
|
icon = 'power_cond_heavy.dmi'
|
|
name = "large power cable"
|
|
desc = "This cable is tough. It cannot be cut with simple hand tools."
|
|
|
|
/obj/structure/cable/heavyduty/attackby(obj/item/W, mob/user)
|
|
|
|
var/turf/T = src.loc
|
|
if(T.intact)
|
|
return
|
|
|
|
if(istype(W, /obj/item/weapon/wirecutters))
|
|
usr << "\blue These cables are too tough to be cut with those [W.name]."
|
|
return
|
|
else if(istype(W, /obj/item/weapon/cable_coil))
|
|
usr << "\blue You will need heavier cables to connect to these."
|
|
return
|
|
else
|
|
..()
|
|
|
|
/obj/structure/cable/heavyduty/cableColor(var/colorC)
|
|
return |