From a19176e2c53002a55f19d486fae44984c8fc2cde Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Mon, 5 Jul 2021 19:46:09 -0400 Subject: [PATCH] Add PoH to R&D --- code/modules/research/designs/bag_of_holding.dm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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