diff --git a/code/modules/research/designs/bag_of_holding.dm b/code/modules/research/designs/bag_of_holding.dm index 7ba63ba7bb..673977d370 100644 --- a/code/modules/research/designs/bag_of_holding.dm +++ b/code/modules/research/designs/bag_of_holding.dm @@ -38,4 +38,14 @@ req_tech = list(TECH_BLUESPACE = 3, TECH_MATERIAL = 5) materials = list("gold" = 2000, "diamond" = 1000, "uranium" = 250) build_path = /obj/item/weapon/storage/bag/trash/holding - sort_string = "QAAAC" \ No newline at end of file + sort_string = "QAAAC" + +/datum/design/item/boh/pouch_holding + name = "Pouch of Holding" + desc = "Somehow compresses the storage of a backpack into a pouch-sized container!" + id = "pouch_holding" + req_tech = list(TECH_BLUESPACE = 3, TECH_MATERIAL = 5) + materials = list("gold" = 3000, "diamond" = 2000, "uranium" = 250) + build_path = /obj/item/weapon/storage/pouch/holding + sort_string = "QAAAD" + \ No newline at end of file