mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-07-18 11:12:26 +01:00
66962a8816
trying to update from TGUI Next to TGUI 3, so we can later upgrade from TGUI 3 to TGUI 4.
24 lines
730 B
Plaintext
24 lines
730 B
Plaintext
/obj/item/implant/uplink
|
|
name = "uplink implant"
|
|
desc = "Sneeki breeki."
|
|
icon = 'icons/obj/radio.dmi'
|
|
icon_state = "radio"
|
|
lefthand_file = 'icons/mob/inhands/misc/devices_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/misc/devices_righthand.dmi'
|
|
var/starting_tc = 0
|
|
|
|
/obj/item/implant/uplink/Initialize(mapload, _owner)
|
|
. = ..()
|
|
AddComponent(/datum/component/uplink, _owner, TRUE, FALSE, null, starting_tc, GLOB.tgui_not_incapacitated_state)
|
|
|
|
/obj/item/implanter/uplink
|
|
name = "implanter (uplink)"
|
|
imp_type = /obj/item/implant/uplink
|
|
|
|
/obj/item/implanter/uplink/precharged
|
|
name = "implanter (precharged uplink)"
|
|
imp_type = /obj/item/implant/uplink/precharged
|
|
|
|
/obj/item/implant/uplink/precharged
|
|
starting_tc = 10
|