Skip to content

Commit

Permalink
Merge pull request #2623 from FuzzyFuzlet/slime-stuff
Browse files Browse the repository at this point in the history
slime stuffs!
  • Loading branch information
Superlagg committed Jul 11, 2023
2 parents a043467 + 5915908 commit b5ddcde
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/modules/reagents/chemistry/recipes/slime_extracts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@
/datum/chemical_reaction/slime/slimeregen
name = "Slime Regen"
id = "m_regen"
results = list(/datum/reagent/medicine/regen_jelly = 5)
results = list(/datum/reagent/medicine/regen_jelly = 2) //editted from 5, toned down for more scarcity
required_reagents = list(/datum/reagent/blood = 1)
required_container = /obj/item/slime_extract/purple
required_other = TRUE
Expand Down Expand Up @@ -389,6 +389,7 @@
slime.visible_message(span_danger("The [slime] is driven into a frenzy!"))
..()

/*slowdown is an important mechanic
/datum/chemical_reaction/slime/slimespeed
name = "Slime Speed"
id = "m_speed"
Expand All @@ -399,6 +400,7 @@
/datum/chemical_reaction/slime/slimespeed/on_reaction(datum/reagents/holder)
new /obj/item/slimepotion/speed(get_turf(holder.my_atom))
..()
*/

//Pink
/datum/chemical_reaction/slime/docility
Expand Down Expand Up @@ -556,6 +558,7 @@
new /obj/item/slimepotion/enhancer(get_turf(holder.my_atom))
..()

/*paint the town red, not blue
/datum/chemical_reaction/slime/slime_territory
name = "Slime Territory"
id = "s_territory"
Expand All @@ -566,6 +569,7 @@
/datum/chemical_reaction/slime/slime_territory/on_reaction(datum/reagents/holder)
new /obj/item/areaeditor/blueprints/slime(get_turf(holder.my_atom))
..()
*/

//Sepia
/datum/chemical_reaction/slime/slimestop
Expand Down
2 changes: 2 additions & 0 deletions code/modules/research/xenobiology/xenobiology.dm
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
to_chat(user, span_notice("Nothing happened... This slime extract cannot be activated this way."))
return 0

/*no crossbreeding till it gets overhauled for wasteland balance
//Core-crossing: Feeding adult slimes extracts to obtain a much more powerful, single extract.
/obj/item/slime_extract/attack(mob/living/simple_animal/slime/M, mob/user)
if(!isslime(M))
Expand All @@ -73,6 +74,7 @@
if(M.applied >= SLIME_EXTRACT_CROSSING_REQUIRED)
M.spawn_corecross()
*/

/obj/item/slime_extract/grey
name = "grey slime extract"
Expand Down

0 comments on commit b5ddcde

Please sign in to comment.