mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Cyborg cable coil + color picking
This commit makes a subtype of cable_coils for cyborgs (and drones) that can have it's color changed by an attack_self (clicking on it)
This commit is contained in:
@@ -635,3 +635,11 @@ obj/structure/cable/proc/cableColor(var/colorC)
|
||||
|
||||
else
|
||||
return ..()
|
||||
|
||||
/obj/item/stack/cable_coil/cyborg
|
||||
name = "cyborg cable coil"
|
||||
|
||||
/obj/item/stack/cable_coil/cyborg/attack_self(mob/user)
|
||||
var/cable_color = input(user,"Pick a cable color.","Cable Color") in list("red","yellow","green","blue","pink","orange","cyan","white")
|
||||
_color = cable_color
|
||||
update_icon()
|
||||
Reference in New Issue
Block a user