mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-16 13:13:03 +00:00
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
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
|
|
|
|
/obj/item/weapon/storage/bag/fossils
|
|
name = "Fossil Satchel"
|
|
desc = "Transports delicate fossils in suspension so they don't break during transit."
|
|
icon = 'icons/obj/mining.dmi'
|
|
icon_state = "satchel"
|
|
slot_flags = SLOT_BELT | SLOT_POCKET
|
|
w_class = 3
|
|
storage_slots = 50
|
|
max_combined_w_class = 200 //Doesn't matter what this is, so long as it's more or equal to storage_slots * ore.w_class
|
|
max_w_class = 3
|
|
can_hold = list("/obj/item/weapon/fossil")
|