mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-21 03:59:59 +01:00
Removes unneccessary comments and unrelated tweaks.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
/datum/chemical_reaction/lube
|
||||
name = "Space Lube"
|
||||
id = "lube"
|
||||
results = list("lube" = 3) // fuck this spillover into nullspace.
|
||||
results = list("lube" = 4)
|
||||
required_reagents = list("water" = 1, "silicon" = 1, "oxygen" = 1)
|
||||
|
||||
/datum/chemical_reaction/spraytan
|
||||
@@ -112,8 +112,8 @@
|
||||
/datum/chemical_reaction/virus_food
|
||||
name = "Virus Food"
|
||||
id = "virusfood"
|
||||
results = list("virusfood" = 15) // Again, fuck the spillover into nullspace.
|
||||
required_reagents = list("water" = 10, "milk" = 5)
|
||||
results = list("virusfood" = 15)
|
||||
required_reagents = list("water" = 5, "milk" = 5)
|
||||
|
||||
/datum/chemical_reaction/virus_food_mutagen
|
||||
name = "mutagenic agar"
|
||||
|
||||
@@ -129,7 +129,7 @@
|
||||
|
||||
/datum/chemical_reaction/clf3/on_reaction(datum/reagents/holder, created_volume)
|
||||
var/turf/T = get_turf(holder.my_atom)
|
||||
for(var/turf/turf in range(1+round((created_volume-1)/25),T)) // More lulz. (The range of the fireball increases by 1 for every 100 units in the mixture.)
|
||||
for(var/turf/turf in range(1,T))
|
||||
PoolOrNew(/obj/effect/hotspot, turf)
|
||||
holder.chem_temp = 1000 // hot as shit
|
||||
|
||||
@@ -144,7 +144,7 @@
|
||||
|
||||
/datum/chemical_reaction/reagent_explosion/methsplosion/on_reaction(datum/reagents/holder, created_volume)
|
||||
var/turf/T = get_turf(holder.my_atom)
|
||||
for(var/turf/turf in range(1+round(created_volume/50,T))) // Scales at 200u
|
||||
for(var/turf/turf in range(1,T))
|
||||
PoolOrNew(/obj/effect/hotspot, turf)
|
||||
holder.chem_temp = 1000 // hot as shit
|
||||
..()
|
||||
|
||||
Reference in New Issue
Block a user