Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c6ff927

Browse filesBrowse files
Adds mutation toxins and green slime extract reactions for the rest of the organic round start races (yogstation13#13164)
* well that was surprisingly easy * oops that line is already used
1 parent f1def92 commit c6ff927
Copy full SHA for c6ff927

2 files changed

+61Lines changed: 61 additions & 0 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎code/modules/reagents/chemistry/reagents/other_reagents.dm‎

Copy file name to clipboardExpand all lines: code/modules/reagents/chemistry/reagents/other_reagents.dm
+14Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,20 @@
552552
race = /datum/species/pod
553553
mutationtext = span_danger("The pain subsides. You feel... plantlike.")
554554

555+
/datum/reagent/mutationtoxin/ethereal
556+
name = "Ethereal Mutation Toxin"
557+
description = "An electrifying toxin."
558+
color = "#5EFF3B" //RGB: 94, 255, 59
559+
race = /datum/species/ethereal
560+
mutationtext = span_danger("The pain subsides. You feel... ecstatic.")
561+
562+
/datum/reagent/mutationtoxin/polysmorph
563+
name = "Polysmorph Mutation Toxin"
564+
description = "An acidic toxin."
565+
color = "#5EFF3B" //RGB: 94, 255, 59
566+
race = /datum/species/polysmorph
567+
mutationtext = span_danger("The pain subsides. You feel... Alien.")
568+
555569
/datum/reagent/mutationtoxin/jelly
556570
name = "Imperfect Mutation Toxin"
557571
description = "An jellyfying toxin."
Collapse file

‎code/modules/reagents/chemistry/recipes/slime_extracts.dm‎

Copy file name to clipboardExpand all lines: code/modules/reagents/chemistry/recipes/slime_extracts.dm
+47Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,53 @@
7373
required_other = TRUE
7474
required_container = /obj/item/slime_extract/green
7575

76+
/datum/chemical_reaction/slime/slimefelinid
77+
name = "Felinid Mutation Toxin"
78+
id = "felinidmuttoxin"
79+
results = list(/datum/reagent/mutationtoxin/felinid = 1)
80+
required_reagents = list(/datum/reagent/consumable/cilk = 1) //full of cilk
81+
required_other = TRUE
82+
required_container = /obj/item/slime_extract/green
83+
84+
/datum/chemical_reaction/slime/slimeplasmaman
85+
name = "Plasmaman Mutation Toxin"
86+
id = "plasmammuttoxin"
87+
results = list(/datum/reagent/mutationtoxin/plasma = 1)
88+
required_reagents = list(/datum/reagent/stable_plasma = 1) //stable plasma makes the stable race
89+
required_other = TRUE
90+
required_container = /obj/item/slime_extract/green
91+
92+
/datum/chemical_reaction/slime/slimeethereal
93+
name = "Ethereal Mutation Toxin"
94+
id = "etherealmuttoxin"
95+
results = list(/datum/reagent/mutationtoxin/ethereal = 1)
96+
required_reagents = list(/datum/reagent/lithium = 1) //battery material makes electricity people
97+
required_other = TRUE
98+
required_container = /obj/item/slime_extract/green
99+
100+
/datum/chemical_reaction/slime/slimemoth
101+
name = "Moth Mutation Toxin"
102+
id = "mothmuttoxin"
103+
results = list(/datum/reagent/mutationtoxin/moth = 1)
104+
required_reagents = list(/datum/reagent/silicon = 1) //silicon can be found from grinding up lightbulbs so that's the best reagent joke i could come up with
105+
required_other = TRUE
106+
required_container = /obj/item/slime_extract/green
107+
108+
/datum/chemical_reaction/slime/slimepoly
109+
name = "Polysmorph Mutation Toxin"
110+
id = "polymuttoxin"
111+
results = list(/datum/reagent/mutationtoxin/polysmorph = 1)
112+
required_reagents = list(/datum/reagent/toxin/acid = 1) //acid blood
113+
required_other = TRUE
114+
required_container = /obj/item/slime_extract/green
115+
116+
/datum/chemical_reaction/slime/slimepod
117+
name = "Podperson Mutation Toxin"
118+
id = "podmuttoxin"
119+
results = list(/datum/reagent/mutationtoxin/pod = 1)
120+
required_reagents = list(/datum/reagent/diethylamine = 1) //fertilizer makes plant people
121+
required_other = TRUE
122+
required_container = /obj/item/slime_extract/green
76123
//Metal
77124
/datum/chemical_reaction/slime/slimemetal
78125
name = "Slime Metal"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.