From d631479031feacae0cd820755cd6b73a097708bf Mon Sep 17 00:00:00 2001 From: datlo Date: Tue, 22 Jan 2019 00:41:05 +0000 Subject: [PATCH 1/2] Reduce the cost of bomb frames to 3 plasteel --- code/game/objects/items/stacks/sheets/sheet_types.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index d26fa182fe1..abc328a8bf1 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -129,7 +129,7 @@ var/global/list/datum/stack_recipe/metal_recipes = list( */ var/global/list/datum/stack_recipe/plasteel_recipes = list( new /datum/stack_recipe("AI core", /obj/structure/AIcore, 4, time = 50, one_per_turf = 1), - new /datum/stack_recipe("bomb assembly", /obj/machinery/syndicatebomb/empty, 10, time = 50), + new /datum/stack_recipe("bomb assembly", /obj/machinery/syndicatebomb/empty, 3, time = 50), new /datum/stack_recipe("Surgery Table", /obj/machinery/optable, 5, time = 50, one_per_turf = 1, on_floor = 1), new /datum/stack_recipe("Metal crate", /obj/structure/closet/crate, 10, time = 50, one_per_turf = 1), new /datum/stack_recipe("Mass Driver frame", /obj/machinery/mass_driver_frame, 3, time = 50, one_per_turf = 1), From b3fdaf6d8ee4c99ab3ec0aec3c738861bd55e1cc Mon Sep 17 00:00:00 2001 From: datlo Date: Tue, 22 Jan 2019 01:10:01 +0000 Subject: [PATCH 2/2] changes the amount of plasteel on bomb deconstruction --- code/game/machinery/syndicatebomb.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/syndicatebomb.dm b/code/game/machinery/syndicatebomb.dm index d70508e620b..51a39f7cf5f 100644 --- a/code/game/machinery/syndicatebomb.dm +++ b/code/game/machinery/syndicatebomb.dm @@ -167,7 +167,7 @@ if(!WT.isOn() || !WT.remove_fuel(5, user)) return to_chat(user, "You cut the [src] apart.") - new /obj/item/stack/sheet/plasteel(loc, 5) + new /obj/item/stack/sheet/plasteel(loc, 3) qdel(src) else return ..()