mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 08:31:57 +00:00
rscadd: "Added an engineering apprentice uniform, and overalls accessories to the miner, atmos tech, chief engineer and engineer lockers, as well as loadouts. They are equivalent to webbing vests."
rscadd: "Atmos tech lockers now start with blue hazard vests, and the wardrobe locker includes matching (non fire-safe) hard hats."
rscadd: "Added safety goggles with a new sprite with a verb to raise/lower them. The original goggles can be found as 'safety glasses'. Both are available under eyewear in the loadout tab."
imageadd: "Updated sprites for the engineer, CE, atmos tech, janitor, CT (incl. an alt uniform in lockers and loadout), quartermaster, and miner jumpsuits. Updated atmos fire suit sprite."
imageadd: "New utility belt (incl. alt sprite available in loadout), hard hat, engineering beret, sheet and ore snatcher, and hydrogen ore sprites."
imageadd: "New hazard vest sprites. Hazard vests can now be zipped up or left loose with an appropriate verb."
imageadd: "New atmos airlock sprites, new mining, atmos, and janitorial locker sprites."
also all sprites by AmoryBlaine I just unga dunga'd the code together
98 lines
2.7 KiB
Plaintext
98 lines
2.7 KiB
Plaintext
/datum/gear/utility
|
|
display_name = "briefcase"
|
|
path = /obj/item/weapon/storage/briefcase
|
|
sort_category = "Utility"
|
|
|
|
/datum/gear/utility/secure
|
|
display_name = "secure briefcase"
|
|
path = /obj/item/weapon/storage/secure/briefcase
|
|
cost = 2
|
|
|
|
/datum/gear/utility/clipboard
|
|
display_name = "clipboard"
|
|
path = /obj/item/weapon/clipboard
|
|
|
|
/datum/gear/utility/folder
|
|
display_name = "folders"
|
|
path = /obj/item/weapon/folder
|
|
|
|
/datum/gear/utility/folder/New()
|
|
..()
|
|
var/folders = list()
|
|
folders["blue folder"] = /obj/item/weapon/folder/blue
|
|
folders["grey folder"] = /obj/item/weapon/folder
|
|
folders["red folder"] = /obj/item/weapon/folder/red
|
|
folders["white folder"] = /obj/item/weapon/folder/white
|
|
folders["yellow folder"] = /obj/item/weapon/folder/yellow
|
|
gear_tweaks += new/datum/gear_tweak/path(folders)
|
|
|
|
/datum/gear/utility/paicard
|
|
display_name = "personal AI device"
|
|
path = /obj/item/device/paicard
|
|
|
|
/datum/gear/utility/wallet
|
|
display_name = "wallet, orange"
|
|
path = /obj/item/weapon/storage/wallet
|
|
|
|
/datum/gear/utility/wallet_colourable
|
|
display_name = "wallet, colourable"
|
|
path = /obj/item/weapon/storage/wallet/colourable
|
|
|
|
/datum/gear/utility/wallet_colourable/New()
|
|
..()
|
|
gear_tweaks += gear_tweak_free_color_choice
|
|
|
|
/datum/gear/utility/wallet_purse
|
|
display_name = "wallet, purse"
|
|
path = /obj/item/weapon/storage/wallet/purse
|
|
|
|
/datum/gear/utility/wallet_purse/New()
|
|
..()
|
|
gear_tweaks += gear_tweak_free_color_choice
|
|
|
|
/datum/gear/utility/lanyard
|
|
display_name = "lanyard"
|
|
path = /obj/item/weapon/storage/wallet/lanyard
|
|
|
|
/datum/gear/utility/lanyard/New()
|
|
..()
|
|
gear_tweaks += gear_tweak_free_color_choice
|
|
|
|
/*
|
|
/datum/gear/utility/cheaptablet
|
|
display_name = "cheap tablet computer"
|
|
path = /obj/item/modular_computer/tablet/preset/custom_loadout/cheap
|
|
cost = 3
|
|
|
|
/datum/gear/utility/normaltablet
|
|
display_name = "tablet computer"
|
|
path = /obj/item/modular_computer/tablet/preset/custom_loadout/advanced
|
|
cost = 4
|
|
*/
|
|
|
|
/datum/gear/utility/recorder
|
|
display_name = "universal recorder"
|
|
path = /obj/item/device/taperecorder
|
|
|
|
/datum/gear/utility/camera
|
|
display_name = "camera"
|
|
path = /obj/item/device/camera
|
|
|
|
/datum/gear/utility/fannypack
|
|
display_name = "fannypack selection"
|
|
cost = 2
|
|
path = /obj/item/weapon/storage/belt/fannypack
|
|
|
|
/datum/gear/utility/fannypack/New()
|
|
..()
|
|
var/list/fannys = list()
|
|
for(var/fanny in typesof(/obj/item/weapon/storage/belt/fannypack))
|
|
var/obj/item/weapon/storage/belt/fannypack/fanny_type = fanny
|
|
fannys[initial(fanny_type.name)] = fanny_type
|
|
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(fannys))
|
|
|
|
/datum/gear/utility/toolbelt_alt
|
|
display_name = "tool-belt, alt"
|
|
cost = 2
|
|
path = /obj/item/weapon/storage/belt/utility/alt
|
|
allowed_roles = list("Station Engineer", "Atmospheric Technician", "Chief Engineer", "Engineering Apprentice", "Roboticist") |