diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm
index 00925f16..7dcbe50e 100644
--- a/code/modules/reagents/chemistry/reagents/other_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm
@@ -2225,3 +2225,11 @@
color = "#5EFF3B" //RGB: 94, 255, 59
race = /datum/species/ipc
mutationtext = "The pain subsides. You feel... metallic."
+
+/datum/reagent/mutationtoxin/synthliz
+ name = "Synthlizard Mutation Toxin"
+ id = "synthlizmutationtoxin"
+ description = "A synthetic toxin." //NANOMACHINES SON.
+ color = "#5EFF3B" //RGB: 94, 255, 59
+ race = /datum/species/synthliz
+ mutationtext = "The pain subsides. You feel... artificial."
\ No newline at end of file
diff --git a/code/modules/reagents/chemistry/recipes/slime_extracts.dm b/code/modules/reagents/chemistry/recipes/slime_extracts.dm
index 1a72e0f2..f5ed124f 100644
--- a/code/modules/reagents/chemistry/recipes/slime_extracts.dm
+++ b/code/modules/reagents/chemistry/recipes/slime_extracts.dm
@@ -735,3 +735,12 @@
required_reagents = list("oil" = 1) //Oil, makes sense for it being their blood, so..
required_other = TRUE
required_container = /obj/item/slime_extract/green
+
+/datum/chemical_reaction/slime/slimesynthliz //They keep coming back for more
+ name = "Synthlizard Mutation Toxin"
+ id = "synthlizmuttoxin"
+ results = list("synthlizmutationtoxin" = 1)
+ required_reagents = list("silicon" = 1) //It'd be annoying to make it require synthflesh, so this will work
+ required_other = TRUE
+ required_container = /obj/item/slime_extract/green
+