From 37f6a72c7b4450df80d4e86b1c2bb018ae07b0d9 Mon Sep 17 00:00:00 2001 From: Matthew J Date: Tue, 4 May 2021 20:31:31 -0400 Subject: [PATCH] Fixes one of the experiments needing a disabled material (#5454) Co-authored-by: Matthew --- code/modules/experisci/experiment/experiments.dm | 11 ++++++++--- code/modules/research/techweb/all_nodes.dm | 6 +++++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/code/modules/experisci/experiment/experiments.dm b/code/modules/experisci/experiment/experiments.dm index 41fb1058dcf..19de94d64cd 100644 --- a/code/modules/experisci/experiment/experiments.dm +++ b/code/modules/experisci/experiment/experiments.dm @@ -99,10 +99,15 @@ required_heavy = GLOB.MAX_EX_HEAVY_RANGE required_light = GLOB.MAX_EX_LIGHT_RANGE -/datum/experiment/scanning/random/material/meat +// SKYRAT EDIT BEGIN - MATERIAL MEAT WAS REMOVED +// ORIGINAL: /datum/experiment/scanning/random/material/meat +/datum/experiment/scanning/random/material/silver name = "Biological Material Scanning Experiment" - description = "They told us we couldn't make chairs out of every material in the world. You're here to prove those nay-sayers wrong." - possible_material_types = list(/datum/material/meat) +// ORIGINAL: description = "They told us we couldn't make chairs out of every material in the world. You're here to prove those nay-sayers wrong." + description = "Supposedly silver has an inert anti-microbial effect; scan a few samples to test this." +// ORIGINAL: possible_material_types = list(/datum/material/meat) + possible_material_types = list(/datum/material/silver) +// SKYRAT EDIT END - MATERIAL MEAT WAS REMOVED /datum/experiment/scanning/random/material/easy name = "Low Grade Material Scanning Experiment" diff --git a/code/modules/research/techweb/all_nodes.dm b/code/modules/research/techweb/all_nodes.dm index e220305625a..87d461db37b 100644 --- a/code/modules/research/techweb/all_nodes.dm +++ b/code/modules/research/techweb/all_nodes.dm @@ -73,6 +73,8 @@ research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500) required_experiments = list(/datum/experiment/scanning/points/slime/calibration) + +// SKYRAT EDIT BEGIN - MATERIAL MEAT WAS REMOVED /datum/techweb_node/adv_biotech id = "adv_biotech" display_name = "Advanced Biotechnology" @@ -81,7 +83,9 @@ design_ids = list("piercesyringe", "crewpinpointer", "smoke_machine", "plasmarefiller", "limbgrower", "meta_beaker", "healthanalyzer_advanced", "harvester", "holobarrier_med", "detective_scanner", "defibrillator_compact", "ph_meter", "monkey_helmet") //SKYRAT EDIT ADDITION: ADDED MONKEY_HELMET research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 5000) required_experiments = list(/datum/experiment/scanning/points/slime/easy) - discount_experiments = list(/datum/experiment/scanning/random/material/meat = 4000) //Big discount to reinforce doing it. +// ORIGINAL: discount_experiments = list(/datum/experiment/scanning/random/material/meat = 4000) //Big discount to reinforce doing it. + discount_experiments = list(/datum/experiment/scanning/random/material/silver = 4000) //Big discount to reinforce doing it. +// SKYRAT EDIT END - MATERIAL MEAT WAS REMOVED /datum/techweb_node/xenoorgan_biotech id = "xenoorgan_bio"