From 91a0fc4d1e6023150ff882f907780b967044a494 Mon Sep 17 00:00:00 2001 From: FartMaster69420 <78667902+FartMaster69420@users.noreply.github.com> Date: Mon, 14 Mar 2022 14:39:13 -0400 Subject: [PATCH 1/2] Added AOE upgrade Adds the AOE Mining PKA Upgrade to the protolathe, giving a sidegrade option from the phoron bore. --- code/modules/research/designs/mining_toys.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/research/designs/mining_toys.dm b/code/modules/research/designs/mining_toys.dm index 5667ac59be8..b03d3f23f4e 100644 --- a/code/modules/research/designs/mining_toys.dm +++ b/code/modules/research/designs/mining_toys.dm @@ -48,3 +48,11 @@ materials = list(MAT_STEEL = 1000,MAT_GLASS = 1000) build_path = /obj/item/device/depth_scanner sort_string = "FBAAA" + +/datum/design/item/weapon/mining/upgradeAOE + desc = "An area of effect upgrade for the Proto-Kinetic Accelerator." + id = "pka_mineaoe" + req_tech = list(TECH_COMBAT = 7, TECH_MATERIAL = 8, TECH_ENGINEERING = 7) // Lets make this endgame level tech, due to it's power. + materials = list(MAT_STEEL = 5000, MAT_GLASS = 5000, MAT_SILVER = 500, MAT_GOLD = 500, MAT_URANIUM = 2000, MAT_PHORON = 2000) + build_path = /obj/item/borg/upgrade/modkit/aoe/turfs + sort_string = "FAAF" \ No newline at end of file From c16b8c08aadf5f2f3ce112b783736a3695557b54 Mon Sep 17 00:00:00 2001 From: FartMaster69420 <78667902+FartMaster69420@users.noreply.github.com> Date: Mon, 14 Mar 2022 15:09:40 -0400 Subject: [PATCH 2/2] Name added Added a name so it doesn't look like you're printing an actual explosion. --- code/modules/research/designs/mining_toys.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/research/designs/mining_toys.dm b/code/modules/research/designs/mining_toys.dm index b03d3f23f4e..c1784dec6f7 100644 --- a/code/modules/research/designs/mining_toys.dm +++ b/code/modules/research/designs/mining_toys.dm @@ -50,6 +50,7 @@ sort_string = "FBAAA" /datum/design/item/weapon/mining/upgradeAOE + name = "Mining Explosion Upgrade" desc = "An area of effect upgrade for the Proto-Kinetic Accelerator." id = "pka_mineaoe" req_tech = list(TECH_COMBAT = 7, TECH_MATERIAL = 8, TECH_ENGINEERING = 7) // Lets make this endgame level tech, due to it's power.