Cable leash crafting (#16912)

Added a craftable variant of the leash, made from a stack of cable coils (at least cables in it).
This commit is contained in:
SatinIsle
2025-01-16 21:13:47 +00:00
committed by GitHub
parent 703e59819c
commit e5e589b4e6
2 changed files with 15 additions and 0 deletions
+15
View File
@@ -254,3 +254,18 @@
step(tug_pet, WEST, 1)
if(tug_pet_x < tug_master_x)
step(tug_pet, EAST, 1)
/obj/item/leash/cable
name = "cable leash"
desc = "A simple tether that can easily be hooked onto a collar. This one is made from wiring cable."
icon = 'icons/obj/leash.dmi'
icon_state = "cable"
/datum/crafting_recipe/leash
name = "cable leash"
result = /obj/item/leash/cable
reqs = list(
list(/obj/item/stack/cable_coil = 3)
)
time = 60
category = CAT_MISC
Binary file not shown.

Before

Width:  |  Height:  |  Size: 462 B

After

Width:  |  Height:  |  Size: 1.1 KiB