mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-29 10:31:34 +00:00
17 lines
688 B
Plaintext
17 lines
688 B
Plaintext
/obj/item/sensor_device
|
|
name = "handheld crew monitor" //Thanks to Gun Hog for the name!
|
|
desc = "A miniature machine that tracks suit sensors across the station."
|
|
icon = 'icons/obj/devices/scanner.dmi'
|
|
icon_state = "crew_monitor"
|
|
inhand_icon_state = "electronic"
|
|
worn_icon_state = "electronic"
|
|
lefthand_file = 'icons/mob/inhands/items/devices_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/items/devices_righthand.dmi'
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
slot_flags = ITEM_SLOT_BELT
|
|
custom_price = PAYCHECK_CREW * 5
|
|
custom_premium_price = PAYCHECK_CREW * 6
|
|
|
|
/obj/item/sensor_device/attack_self(mob/user)
|
|
GLOB.crewmonitor.show(user,src) //Proc already exists, just had to call it
|