mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-25 01:22:13 +00:00
* Adds icon and hitsound where needed. * Moves alt_attack to /obj/item and deletes weapons.dm * Replaced /obj/item/weapon with /obj/item * Fixes merge issues. * Fix merge issues.
16 lines
534 B
Plaintext
16 lines
534 B
Plaintext
/obj/item/computer_hardware/tesla_link
|
|
name = "tesla link"
|
|
desc = "An advanced tesla link that wirelessly recharges connected device from nearby area power controller."
|
|
critical = 0
|
|
enabled = 1
|
|
icon_state = "teslalink"
|
|
hardware_size = 3
|
|
origin_tech = list(TECH_DATA = 2, TECH_POWER = 3, TECH_ENGINEERING = 2)
|
|
var/obj/machinery/modular_computer/holder
|
|
var/passive_charging_rate = 250 // W
|
|
|
|
/obj/item/computer_hardware/tesla_link/Destroy()
|
|
if(holder2 && (holder2.tesla_link == src))
|
|
holder2.tesla_link = null
|
|
return ..()
|