diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index 1d09b78c61b..0d912a97cbe 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -10,6 +10,7 @@ * Plant Bag * Sheet Snatcher * Book Bag + * Construction bag * Tray * * -Sayu @@ -387,6 +388,26 @@ can_hold = list(/obj/item/book, /obj/item/storage/bible, /obj/item/tome, /obj/item/spellbook) resistance_flags = FLAMMABLE +// ------------------------------------------ +// Construction bag +// ------------------------------------------ + +/obj/item/storage/bag/construction + name = "construction bag" + desc = "A bag for construction stuff." + icon = 'icons/obj/tools.dmi' + icon_state = "construction_bag" + storage_slots = 50 + max_combined_w_class = 100 + max_w_class = WEIGHT_CLASS_NORMAL + w_class = WEIGHT_CLASS_TINY + can_hold = list( + /obj/item/assembly, /obj/item/circuitboard, + /obj/item/airlock_electronics, /obj/item/firelock_electronics, + /obj/item/firealarm_electronics, /obj/item/airalarm_electronics, /obj/item/apc_electronics, + /obj/item/stock_parts/cell, /obj/item/stock_parts, /obj/item/camera_assembly) + resistance_flags = FLAMMABLE + /* * Trays - Agouri */ diff --git a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm index 6ac8842b74b..ca6ac177661 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm @@ -29,6 +29,7 @@ new /obj/item/holosign_creator/atmos(src) new /obj/item/megaphone(src) //added here deleted on maps new /obj/item/storage/garmentbag/engineering_chief(src) + new /obj/item/storage/bag/construction(src) /obj/structure/closet/secure_closet/engineering_electrical name = "electrical supplies locker" @@ -86,6 +87,8 @@ new /obj/item/cartridge/engineering(src) new /obj/item/clothing/head/beret/eng(src) new /obj/item/clothing/head/hardhat/orange(src) + new /obj/item/storage/bag/construction(src) + new /obj/item/storage/bag/construction(src) /obj/structure/closet/secure_closet/atmos_personal diff --git a/icons/obj/tools.dmi b/icons/obj/tools.dmi index 9e4bce82938..88691f70447 100644 Binary files a/icons/obj/tools.dmi and b/icons/obj/tools.dmi differ