From 7265724c5b8b9713d8533aac2de3400fbd10515c Mon Sep 17 00:00:00 2001 From: CuteMoff <81271196+CuteMoff@users.noreply.github.com> Date: Thu, 25 Mar 2021 10:29:56 -0400 Subject: [PATCH 1/2] Update basemats.dm --- code/datums/materials/basemats.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/materials/basemats.dm b/code/datums/materials/basemats.dm index 76e60bc6dc..e7ed5e9fda 100644 --- a/code/datums/materials/basemats.dm +++ b/code/datums/materials/basemats.dm @@ -85,6 +85,7 @@ Unless you know what you're doing, only use the first three numbers. They're in name = "plasma" desc = "Isn't plasma a state of matter? Oh whatever." color = list(298/255, 46/255, 352/255,0, 0,0,0,0, 0,0,0,0, 0,0,0,1, 0,0,0,0) + strength_modifier = 0.7 categories = list(MAT_CATEGORY_ORE = TRUE, MAT_CATEGORY_RIGID = TRUE, MAT_CATEGORY_BASE_RECIPES = TRUE) sheet_type = /obj/item/stack/sheet/mineral/plasma value_per_unit = 0.1 From 3efce37fd9842e7233b6d3391af0ed892d1cb541 Mon Sep 17 00:00:00 2001 From: CuteMoff <81271196+CuteMoff@users.noreply.github.com> Date: Thu, 25 Mar 2021 10:32:13 -0400 Subject: [PATCH 2/2] Update mineral.dm --- code/game/objects/items/stacks/sheets/mineral.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm index 426958b99a..65570f18ac 100644 --- a/code/game/objects/items/stacks/sheets/mineral.dm +++ b/code/game/objects/items/stacks/sheets/mineral.dm @@ -117,7 +117,7 @@ GLOBAL_LIST_INIT(diamond_recipes, list ( \ new/datum/stack_recipe("Captain Statue", /obj/structure/statue/diamond/captain, 5, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("AI Hologram Statue", /obj/structure/statue/diamond/ai1, 5, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("AI Core Statue", /obj/structure/statue/diamond/ai2, 5, one_per_turf = 1, on_floor = 1), \ -// new/datum/stack_recipe("diamond brick", /obj/item/ingot/diamond, 6, time = 100), \ not yet + new/datum/stack_recipe("diamond brick", /obj/item/ingot/diamond, 6, time = 100), \ )) /obj/item/stack/sheet/mineral/diamond/get_main_recipes()