diff --git a/code/game/objects/items/weapons/storage/briefcase.dm b/code/game/objects/items/weapons/storage/briefcase.dm index 23c20fa67a7..0ae8b53ad36 100644 --- a/code/game/objects/items/weapons/storage/briefcase.dm +++ b/code/game/objects/items/weapons/storage/briefcase.dm @@ -11,4 +11,22 @@ max_w_class = 3 max_storage_space = 16 use_sound = 'sound/items/storage/briefcase.ogg' - drop_sound = 'sound/items/drop/backpack.ogg' \ No newline at end of file + drop_sound = 'sound/items/drop/backpack.ogg' + +/obj/item/storage/briefcase/black + name = "black briefcase" + icon_state = "briefcase_black" + item_state = "briefcase_black" + desc = "Named for lawyers carrying briefs in a case. It's about time they had something named for them, isn't it?" + +/obj/item/storage/briefcase/aluminium + name = "metal briefcase" + desc = "A heavy-duty briefcase for your most important documents." + icon_state = "briefcase_alum" + item_state = "briefcase_alum" + +/obj/item/storage/briefcase/nt + name = "\improper NT briefcase" + desc = "The NanoTrasen-branded briefcase is an elegant, yet functional upgrade to the traditional black briefcase. The logo is the only difference, though." + icon_state = "briefcase_corpnt" + item_state = "briefcase_corpnt" diff --git a/code/modules/client/preference_setup/loadout/loadout_utility.dm b/code/modules/client/preference_setup/loadout/loadout_utility.dm index 4ced6091792..4a223ce813f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility.dm @@ -1,17 +1,27 @@ /datum/gear/utility - display_name = "briefcase" - path = /obj/item/storage/briefcase + display_name = "clipboard" + path = /obj/item/clipboard sort_category = "Utility" +/datum/gear/utility/briefcase + display_name = "briefcase selection" + description = "A selection of briefcases." + path = /obj/item/storage/briefcase + +/datum/gear/utility/briefcase/New() + ..() + var/briefcases = list() + briefcases["brown briefcase"] = /obj/item/storage/briefcase + briefcases["black briefcase"] = /obj/item/storage/briefcase/black + briefcases["metal briefcase"] = /obj/item/storage/briefcase/aluminium + briefcases["NT briefcase"] = /obj/item/storage/briefcase/nt + gear_tweaks += new/datum/gear_tweak/path(briefcases) + /datum/gear/utility/secure display_name = "secure briefcase" path = /obj/item/storage/secure/briefcase cost = 2 -/datum/gear/utility/clipboard - display_name = "clipboard" - path = /obj/item/clipboard - /datum/gear/utility/folder display_name = "folders" path = /obj/item/folder diff --git a/html/changelogs/goret-fresh-briefcases.yml b/html/changelogs/goret-fresh-briefcases.yml new file mode 100644 index 00000000000..f09b019df37 --- /dev/null +++ b/html/changelogs/goret-fresh-briefcases.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Goret + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Briefcases update! More briefcases have been added to the loadout, and hand-sprites have been reworked. Thanks to Happy_Fox for the sprites and Mwahahahaha for the original code." \ No newline at end of file diff --git a/icons/mob/items/lefthand.dmi b/icons/mob/items/lefthand.dmi index 185c7e84dc8..b5e0ed167c7 100644 Binary files a/icons/mob/items/lefthand.dmi and b/icons/mob/items/lefthand.dmi differ diff --git a/icons/mob/items/righthand.dmi b/icons/mob/items/righthand.dmi index a8fbef6d4a0..b5e0fc0ccc1 100644 Binary files a/icons/mob/items/righthand.dmi and b/icons/mob/items/righthand.dmi differ diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index 1bc5548e065..c2d1e45bbc4 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ