mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 19:44:46 +01:00
5926589c16
* removes var/ inside all procs * . * ugh
22 lines
581 B
Plaintext
22 lines
581 B
Plaintext
/obj/machinery/artifact_scanpad
|
|
name = "Anomaly Scanner Pad"
|
|
desc = "Place things here for scanning."
|
|
icon = 'icons/obj/stationobjs.dmi'
|
|
icon_state = "tele0"
|
|
anchored = TRUE
|
|
density = FALSE
|
|
circuit = /obj/item/circuitboard/artifact_scanpad
|
|
|
|
/obj/machinery/artifact_scanpad/attackby(obj/I as obj, mob/user as mob)
|
|
if(default_deconstruction_screwdriver(user, I))
|
|
return
|
|
if(default_deconstruction_crowbar(user, I))
|
|
return
|
|
if(default_part_replacement(user, I))
|
|
return
|
|
|
|
/obj/machinery/artifact_scanpad/Initialize(mapload)
|
|
. = ..()
|
|
default_apply_parts()
|
|
update_icon()
|