From 5418bc118c1b9f8e9b8e7f98f26dd70dc0e4bd45 Mon Sep 17 00:00:00 2001 From: OliOliOnsiPree Date: Thu, 25 Apr 2024 18:39:52 -0400 Subject: [PATCH] backcentrel --- code/_globalvars/lists/flavor_misc.dm | 16 +++++++++++++++- .../objects/items/stacks/sheets/sheet_types.dm | 3 ++- code/game/objects/items/storage/backpack.dm | 6 ++++++ 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 19076f8518d..7d583e7ee25 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -104,13 +104,27 @@ GLOBAL_LIST_INIT(security_depts_prefs, list(SEC_DEPT_RANDOM, SEC_DEPT_NONE, SEC_ #define DDUFFELBAG "Department Duffel Bag" GLOBAL_LIST_INIT(backbaglist, list(DBACKPACK, DSATCHEL, DDUFFELBAG, //everything after this point is a non-department backpack "Hiking Backpack" = /obj/item/storage/backpack, + "Medical Backpack" = /obj/item/storage/backpack/medic, "Service Backpack" = /obj/item/storage/backpack/enclave, + "Security Backpack" = /obj/item/storage/backpack/security, + "Captain Backpack" = /obj/item/storage/backpack/captain, + "Trekkers Pack" = /obj/item/storage/backpack/trekker, + "Trophy Rack" = /obj/item/storage/backpack/cultpack, + "Explorer Bag" = /obj/item/storage/backpack/explorer, "Grey Duffel Bag" = /obj/item/storage/backpack/duffelbag, + "Medical Duffel Bag" = /obj/item/storage/backpack/duffelbag/med, + "Security Duffel Bag" = /obj/item/storage/backpack/duffelbag/sec, + "Captain Duffel Bag" = /obj/item/storage/backpack/duffelbag/captain, "Grey Satchel" = /obj/item/storage/backpack/satchel, "Leather Satchel" = /obj/item/storage/backpack/satchel/leather, "Bone Satchel" = /obj/item/storage/backpack/satchel/bone, + "Explorer Satchel" = /obj/item/storage/backpack/satchel/explorer, + "Medical Satchel" = /obj/item/storage/backpack/satchel/med, "Old Satchel" = /obj/item/storage/backpack/satchel/old, - "Service Satchel" = /obj/item/storage/backpack/satchel/enclave + "Service Satchel" = /obj/item/storage/backpack/satchel/enclave, + "Security Satchel" = /obj/item/storage/backpack/satchel/sec, + "Captain Satchel" = /obj/item/storage/backpack/satchel/cap, + "Trekkers Satchel" = /obj/item/storage/backpack/satchel/trekker, )) //Suit/Skirt diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 415dfdef0bd..542f74a2f12 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -511,7 +511,8 @@ GLOBAL_LIST_INIT(cloth_recipes, list ( \ * Durathread */ GLOBAL_LIST_INIT(durathread_recipes, list ( \ - new/datum/stack_recipe("durathread dufflebag", /obj/item/storage/backpack/duffelbag/durathread, 6, time = 60) + new/datum/stack_recipe("durathread dufflebag", /obj/item/storage/backpack/duffelbag/durathread, 6, time = 60), \ + new/datum/stack_recipe("dark durathread dufflebag", /obj/item/storage/backpack/duffelbag/durathread/dark, 6, time = 60) \ )) /obj/item/stack/sheet/durathread diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index dacef482bf1..56a446de5ab 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -461,6 +461,12 @@ resistance_flags = FIRE_PROOF slowdown = 0 +/obj/item/storage/backpack/duffelbag/durathread/dark + name = "dark durathread duffel bag" + desc = "A lightweight duffel bag made out of durathread." + icon_state = "duffel-syndie" + item_state = "duffel-syndieammo" + /obj/item/storage/backpack/duffelbag/drone name = "drone duffel bag" desc = "A large duffel bag for holding tools and hats."