Recommended suggestions

This commit is contained in:
Unknown
2019-07-06 15:36:44 -04:00
parent 3d3452bdca
commit e18440a991
2 changed files with 22 additions and 4 deletions
+14 -2
View File
@@ -737,9 +737,12 @@
var/mob/living/L = holder.my_atom
if(L.stat != DEAD)
e.amount *= 0.5
//VOREStation Add Start
else
holder.clear_reagents() //No more powergaming by creating a tiny amount of this
//VORESTation Add End
e.start()
//holder.clear_reagents() //VOREStation Removal
return
/datum/chemical_reaction/flash_powder
@@ -784,8 +787,10 @@
// 100 created volume = 4 heavy range & 7 light range. A few tiles smaller than traitor EMP grandes.
// 200 created volume = 8 heavy range & 14 light range. 4 tiles larger than traitor EMP grenades.
empulse(location, round(created_volume / 24), round(created_volume / 20), round(created_volume / 18), round(created_volume / 14), 1)
//VOREStation Edit Start
if(!isliving(holder.my_atom)) //No more powergaming by creating a tiny amount of this
holder.clear_reagents()
//VOREStation Edit End
return
/datum/chemical_reaction/nitroglycerin
@@ -804,10 +809,13 @@
var/mob/living/L = holder.my_atom
if(L.stat!=DEAD)
e.amount *= 0.5
//VOREStation Add Start
else
holder.clear_reagents() //No more powergaming by creating a tiny amount of this
//VOREStation Add End
e.start()
//holder.clear_reagents() //VOREStation Removal
return
/datum/chemical_reaction/napalm
@@ -840,8 +848,10 @@
playsound(location, 'sound/effects/smoke.ogg', 50, 1, -3)
spawn(0)
S.start()
//VOREStation Edit Start
if(!isliving(holder.my_atom)) //No more powergaming by creating a tiny amount of this
holder.clear_reagents()
//VOREStation Edit End
return
/datum/chemical_reaction/foam
@@ -861,8 +871,10 @@
var/datum/effect/effect/system/foam_spread/s = new()
s.set_up(created_volume, location, holder, 0)
s.start()
//VOREStation Edit Start
if(!isliving(holder.my_atom)) //No more powergaming by creating a tiny amount of this
holder.clear_reagents()
//VOREStation Edit End
return
/datum/chemical_reaction/metalfoam
@@ -1243,7 +1255,7 @@
name = "Syntiflesh"
id = "syntiflesh"
result = null
required_reagents = list("blood" = 5, "clonexadone" = 1) //VOREStation Edit
required_reagents = list("blood" = 5, "clonexadone" = 5)
result_amount = 1
/datum/chemical_reaction/food/syntiflesh/on_reaction(var/datum/reagents/holder, var/created_volume)
@@ -2378,7 +2390,7 @@
id = "biomass"
result = "biomass"
required_reagents = list("protein" = 1, "sugar" = 1, "phoron" = 1)
result_amount = 6 // Roughly 120u per phoron sheet //VOREStation Edit
result_amount = 1 // Roughly 20u per phoron sheet
// Neutralization.
@@ -101,7 +101,7 @@
name = "Vermicetol"
id = "vermicetol"
result = "vermicetol"
required_reagents = list("kelotane" = 1, "dermaline" = 1, "shockchem" = 1, "phoron" = 0.1)
required_reagents = list("bicaridine" = 1, "shockchem" = 1, "phoron" = 0.1)
catalysts = list("phoron" = 5)
result_amount = 3
@@ -340,4 +340,10 @@
if(prob(50))
for(var/j = 1, j <= rand(1, 3), j++)
step(C, pick(NORTH,SOUTH,EAST,WEST))
*/
*/
/datum/chemical_reaction/food/syntiflesh
required_reagents = list("blood" = 5, "clonexadone" = 1)
/datum/chemical_reaction/biomass
result_amount = 6 // Roughly 120u per phoron sheet