A couple of bugfixes. Also testing if I can even push to this repo.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
/datum/chemical_reaction/eigenstate
|
||||
name = "Eigenstasium"
|
||||
id = "eigenstate"
|
||||
results = list("eigenstate" = `1`)
|
||||
results = list("eigenstate" = 1)
|
||||
required_reagents = list("bluespace" = 1, "stable_plasma" = 1, "sugar" = 1)
|
||||
//FermiChem vars:
|
||||
OptimalTempMin = 350 // Lower area of bell curve for determining heat based rate reactions
|
||||
@@ -19,20 +19,20 @@
|
||||
HIonRelease = 0.01 //pH change per 1u reaction
|
||||
RateUpLim = 50 //Optimal/max rate possible if all conditions are perfect
|
||||
FermiChem = TRUE//If the chemical uses the Fermichem reaction mechanics
|
||||
var/FermiExplode = FALSE //If the chemical explodes in a special way
|
||||
var/ImpureChem = "toxin" //What chemical is produced with an inpure reaction
|
||||
FermiExplode = FALSE //If the chemical explodes in a special way
|
||||
ImpureChem = "toxin" //What chemical is produced with an inpure reaction
|
||||
|
||||
//serum
|
||||
/datum/chemical_reaction/SDGF
|
||||
name = "synthetic-derived growth factor"
|
||||
id = "SDGF"
|
||||
results = list("SDGF" = `3`)
|
||||
results = list("SDGF" = 3)
|
||||
required_reagents = list("stable_plasma" = 5, "slimejelly" = 5, "synthflesh" = 10, "blood" = 10)
|
||||
|
||||
/datum/chemical_reaction/BElarger
|
||||
name = ""
|
||||
id = "e"
|
||||
results = list("Eigenstasium" = `6`)
|
||||
results = list("Eigenstasium" = 6)
|
||||
required_reagents = list("salglu_solution" = 1, "milk" = 5, "synthflesh" = 2, "silicon" = 2, "crocin" = 2)
|
||||
//FermiChem vars:
|
||||
OptimalTempMin = 350 // Lower area of bell curve for determining heat based rate reactions
|
||||
|
||||
Reference in New Issue
Block a user