mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-29 03:21:42 +00:00
A Short Investigation
This commit is contained in:
@@ -1,9 +1,21 @@
|
||||
// "Useful" items - I'm guessing things that might be used at work?
|
||||
/datum/gear/utility
|
||||
display_name = "briefcase"
|
||||
path = /obj/item/storage/briefcase
|
||||
display_name = "camera"
|
||||
path = /obj/item/camera
|
||||
sort_category = "Utility"
|
||||
|
||||
/datum/gear/utility/briefcase
|
||||
display_name = "briefcase selection"
|
||||
path = /obj/item/storage/briefcase
|
||||
|
||||
/datum/gear/utility/briefcase/New()
|
||||
..()
|
||||
var/list/briefcases = list()
|
||||
for(var/briefcase in typesof(/obj/item/storage/briefcase/standard))
|
||||
var/obj/item/briefcase_type = briefcase
|
||||
briefcases[initial(briefcase_type.name)] = briefcase_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(briefcases))
|
||||
|
||||
/datum/gear/utility/clipboard
|
||||
display_name = "clipboard"
|
||||
path = /obj/item/clipboard
|
||||
@@ -26,10 +38,6 @@
|
||||
communicators[initial(communicator_type.name)] = communicator_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(communicators))
|
||||
|
||||
/datum/gear/utility/camera
|
||||
display_name = "camera"
|
||||
path = /obj/item/camera
|
||||
|
||||
/datum/gear/utility/codex
|
||||
display_name = "the traveler's guide to vir"
|
||||
path = /obj/item/book/codex/lore/vir
|
||||
|
||||
Reference in New Issue
Block a user