From c65a4728884ffb4e17d7fa558db7504893236743 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Mon, 26 Jul 2021 13:12:37 -0400 Subject: [PATCH] Adds the BSG to RND designs (#16328) * Adds the BSG to RND designs * Update code/modules/research/designs/weapon_designs.dm Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> --- code/modules/research/designs/weapon_designs.dm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/code/modules/research/designs/weapon_designs.dm b/code/modules/research/designs/weapon_designs.dm index 82cf2c7bbf6..471087e19ad 100644 --- a/code/modules/research/designs/weapon_designs.dm +++ b/code/modules/research/designs/weapon_designs.dm @@ -269,3 +269,14 @@ locked = TRUE access_requirement = list(ACCESS_RD) category = list("Weapons") + +/datum/design/bsg + name = "Blue Space Gun" + desc = "A heavy hitting energy cannon, that fires destructive bluespace blasts with a decent area of effect." + id = "bsg" + req_tech = list("combat" = 7, "materials" = 7, "magnets" = 7, "powerstorage" = 7, "bluespace" = 7) + build_type = PROTOLATHE + materials = list(MAT_METAL = 12000, MAT_GLASS = 2000, MAT_SILVER = 4000, MAT_PLASMA = 4000, MAT_TITANIUM = 4000, MAT_BLUESPACE = 6000) // Big gun, big cost + build_path = /obj/item/gun/energy/bsg + locked = TRUE + category = list("Weapons")