From 0a194bea3fea28edd3eb8079a2c8b7bb9edb050e Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Thu, 4 Jul 2024 22:04:03 -0400 Subject: [PATCH 1/2] [MIRROR] You can now craft a singularity hammer using all nine anomaly cores and the supermatter. [MDB IGNORE] (#3540) * You can now craft a singularity hammer using all nine anomaly cores and the supermatter. (#84194) ## About The Pull Request You can now craft a singularity hammer using all nine anomaly cores and the supermatter. ## Why It's Good For The Game ![Discord_Rvq2vyhZqR](https://github.com/tgstation/tgstation/assets/4081722/b0414950-86b2-4467-bafe-aeef9c44e7f7) Also ![Discord_ZaKC0N5uAj](https://github.com/tgstation/tgstation/assets/4081722/74740e71-52e5-47f7-9a44-0b3ccb7028b3) ## Changelog :cl: add: You can now craft a singularity hammer using all nine anomaly cores and the supermatter. /:cl: * You can now craft a singularity hammer using all nine anomaly cores and the supermatter. --------- Co-authored-by: Iamgoofball Co-authored-by: NovaBot13 --- .../components/crafting/melee_weapon.dm | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/code/datums/components/crafting/melee_weapon.dm b/code/datums/components/crafting/melee_weapon.dm index 1c4150585fc..594ff7aefd3 100644 --- a/code/datums/components/crafting/melee_weapon.dm +++ b/code/datums/components/crafting/melee_weapon.dm @@ -171,3 +171,23 @@ ) time = 10 SECONDS category = CAT_WEAPON_MELEE + +/datum/crafting_recipe/singulo_hammer + name = "Singularity Hammer" + result = /obj/item/singularityhammer + reqs = list( + /obj/item/assembly/signaler/anomaly/pyro = 1, + /obj/item/assembly/signaler/anomaly/grav = 1, + /obj/item/assembly/signaler/anomaly/flux = 1, + /obj/item/assembly/signaler/anomaly/bluespace = 1, + /obj/item/assembly/signaler/anomaly/vortex = 1, + /obj/item/assembly/signaler/anomaly/bioscrambler = 1, + /obj/item/assembly/signaler/anomaly/hallucination = 1, + /obj/item/assembly/signaler/anomaly/dimensional = 1, + /obj/item/assembly/signaler/anomaly/ectoplasm = 1, + ) + machinery = list( + /obj/machinery/power/supermatter_crystal = CRAFTING_MACHINERY_CONSUME, + ) + time = 10 SECONDS + category = CAT_WEAPON_MELEE From 66b0f9ae68baa28bdcc7cc0f23c650283110579e Mon Sep 17 00:00:00 2001 From: ArkStation-Bot <55AAh@protonmail.com> Date: Fri, 5 Jul 2024 07:56:38 +0300 Subject: [PATCH 2/2] [MIRROR] You can now craft a singularity hammer using all nine anomaly cores and the supermatter. [MDB IGNORE]