diff --git a/code/game/objects/items/devices/t_scanner.dm b/code/game/objects/items/devices/t_scanner.dm index 525c5d1255..5610828bfe 100644 --- a/code/game/objects/items/devices/t_scanner.dm +++ b/code/game/objects/items/devices/t_scanner.dm @@ -132,4 +132,19 @@ /obj/item/device/t_scanner/dropped(mob/user) set_user_client(null) +/obj/item/device/t_scanner/upgraded + name = "Upgraded T-ray Scanner" + desc = "An upgraded version of the terahertz-ray emitter and scanner used to detect underfloor objects such as cables and pipes." + matter = list(DEFAULT_WALL_MATERIAL = 500, PHORON = 150) + origin_tech = list(TECH_MAGNET = 4, TECH_ENGINEERING = 5) + scan_range = 3 + +/obj/item/device/t_scanner/advanced + name = "Advanced T-ray Scanner" + desc = "An advanced version of the terahertz-ray emitter and scanner used to detect underfloor objects such as cables and pipes." + matter = list(DEFAULT_WALL_MATERIAL = 1500, PHORON = 200, SILVER = 250) + origin_tech = list(TECH_MAGNET = 7, TECH_ENGINEERING = 7, TECH_MATERIAL = 6) + scan_range = 7 + + #undef OVERLAY_CACHE_LEN \ No newline at end of file