Slime Mutation Changes +new reactions

Slime mutation chance starts at a flat 27%

Slime mutation chance is now hereditary, with the new baby slimes
inheriting the mutation chance of the parent (with a variation of -5 to
+5). This allows you to cultivate slimes that are more likely to mutate
over time rather than praying to the RNG forever.

Plasma no longer causes slimes to have a higher mutation chance, and
epinephrine no longer lowers mutation chance.

Red slime extract+plasma now gives a potion that increases mutation
chace

Blue slime extract+blood now gives a potion that lowers mutation chance.

The numbers might need tweaking if this makes xenobio too fast, but
right now it is often frustrating and slow. It is more reliable and
faster to build a mech than breed slimes given the current mutation
system.
This commit is contained in:
KorPhaeron
2015-05-03 19:52:05 -05:00
parent e5f034fc0d
commit e8d42244eb
5 changed files with 96 additions and 5 deletions
@@ -218,6 +218,23 @@
/datum/chemical_reaction/slimefrost/on_reaction(var/datum/reagents/holder)
feedback_add_details("slime_cores_used","[replacetext(name," ","_")]")
/datum/chemical_reaction/slimestabilizer
name = "Slime Stabilizer"
id = "m_slimestabilizer"
result = null
required_reagents = list("blood" = 1)
result_amount = 1
required_container = /obj/item/slime_extract/blue
required_other = 1
/datum/chemical_reaction/slimestabilizer/on_reaction(var/datum/reagents/holder)
feedback_add_details("slime_cores_used","[replacetext(name," ","_")]")
var/obj/item/weapon/slimestabilizer/P = new /obj/item/weapon/slimestabilizer
P.loc = get_turf(holder.my_atom)
//Dark Blue
/datum/chemical_reaction/slimefreeze
name = "Slime Freeze"
@@ -363,7 +380,7 @@
P.loc = get_turf(holder.my_atom)
//Red
/datum/chemical_reaction/slimeglycerol
/*/datum/chemical_reaction/slimeglycerol
name = "Slime Glycerol"
id = "m_glycerol"
result = "glycerol"
@@ -374,7 +391,21 @@
/datum/chemical_reaction/slimeglycerol/on_reaction(var/datum/reagents/holder)
feedback_add_details("slime_cores_used","[replacetext(name," ","_")]")
*/
/datum/chemical_reaction/slimemutator
name = "Slime Mutator"
id = "m_slimemutator"
result = null
required_reagents = list("plasma" = 1)
result_amount = 1
required_container = /obj/item/slime_extract/red
required_other = 1
/datum/chemical_reaction/slimemutator/on_reaction(var/datum/reagents/holder)
feedback_add_details("slime_cores_used","[replacetext(name," ","_")]")
var/obj/item/weapon/slimemutator/P = new /obj/item/weapon/slimemutator
P.loc = get_turf(holder.my_atom)
/datum/chemical_reaction/slimebloodlust
name = "Bloodlust"