mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 04:32:42 +00:00
Supposed to help compilation times. Who knows. Signed-off-by: Mloc-Argent <colmohici@gmail.com>
25 lines
838 B
Plaintext
25 lines
838 B
Plaintext
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Miscellaneous xenoarchaeology tools
|
|
|
|
/obj/item/device/gps
|
|
name = "relay positioning device"
|
|
desc = "Triangulates the approximate co-ordinates using a nearby satellite network."
|
|
icon = 'icons/obj/device.dmi'
|
|
icon_state = "locator"
|
|
item_state = "locator"
|
|
w_class = 2
|
|
|
|
/obj/item/device/gps/attack_self(var/mob/user as mob)
|
|
var/turf/T = get_turf(src)
|
|
user << "\blue \icon[src] [src] flashes <i>[T.x].[rand(0,9)]:[T.y].[rand(0,9)]:[T.z].[rand(0,9)]</i>."
|
|
|
|
/obj/item/device/measuring_tape
|
|
name = "measuring tape"
|
|
desc = "A coiled metallic tape used to check dimensions and lengths."
|
|
icon = 'icons/obj/xenoarchaeology.dmi'
|
|
icon_state = "measuring"
|
|
w_class = 2
|
|
|
|
//todo: dig site tape
|