Merge pull request #841 from Citadel-Station-13/upstream-merge-26940

[MIRROR] Plastic sheet production - Chemistry recipe
This commit is contained in:
kevinz000
2017-05-07 19:06:30 -07:00
committed by GitHub
2 changed files with 18 additions and 0 deletions
@@ -1568,6 +1568,13 @@
M.update_transform()
..()
/datum/reagent/plastic_polymers
name = "plastic polymers"
id = "plastic_polymers"
description = "the petroleum based components of plastic."
color = "#f7eded"
taste_description = "plastic"
/datum/reagent/glitter
name = "generic glitter"
id = "glitter"
@@ -624,3 +624,14 @@
id = "laughter"
results = list("laughter" = 10) // Fuck it. I'm not touching this one.
required_reagents = list("sugar" = 1, "banana" = 1)
/datum/chemical_reaction/plastic_polymers
name = "plastic polymers"
id = "plastic_polymers"
required_reagents = list("oil" = 5, "sodiumchloride" = 2, "ash" = 3)
required_temp = 374 //lazily consistent with soap & other crafted objects generically created with heat.
/datum/chemical_reaction/plastic_polymers/on_reaction(datum/reagents/holder, created_volume)
var/location = get_turf(holder.my_atom)
for(var/i in 1 to 10)
new /obj/item/stack/sheet/plastic(location)