From 1e27d5f9da73472c2518945eaa5eaef0c2b218e1 Mon Sep 17 00:00:00 2001 From: bgobandit Date: Tue, 13 Oct 2015 21:45:29 -0400 Subject: [PATCH] re-adds missing content, thanks obaranges --- code/modules/food&drinks/food/snacks/meat.dm | 4 +++ .../reagents/Chemistry-Recipes/Others.dm | 27 +++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/code/modules/food&drinks/food/snacks/meat.dm b/code/modules/food&drinks/food/snacks/meat.dm index 1fbb0e409a3..7fa75baf174 100644 --- a/code/modules/food&drinks/food/snacks/meat.dm +++ b/code/modules/food&drinks/food/snacks/meat.dm @@ -114,6 +114,10 @@ name = "synthmeat" desc = "A synthetic slab of meat." +/obj/item/weapon/reagent_containers/food/snacks/meat/slab/meatproduct + name = "synthmeat" + desc = "A slab of station reclaimed and chemically processed meat product." + /obj/item/weapon/reagent_containers/food/snacks/meat/slab/monkey name = "monkey meat" diff --git a/code/modules/reagents/Chemistry-Recipes/Others.dm b/code/modules/reagents/Chemistry-Recipes/Others.dm index 5e010fc5350..1158d801939 100644 --- a/code/modules/reagents/Chemistry-Recipes/Others.dm +++ b/code/modules/reagents/Chemistry-Recipes/Others.dm @@ -89,6 +89,33 @@ new /obj/item/weapon/soap/homemade(location) return +/datum/chemical_reaction/candlefication + name = "Candlefication" + id = "candlefication" + result = null + required_reagents = list("liquidgibs" = 5, "oxygen" = 5) // + required_temp = 374 + result_amount = 1 + mob_react = 1 + +/datum/chemical_reaction/candlefication/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + new /obj/item/candle(location) + return + +/datum/chemical_reaction/meatification + name = "Meatification" + id = "meatification" + result = null + required_reagents = list("liquidgibs" = 10, "nutriment" = 10, "carbon" = 10) + result_amount = 1 + mob_react = 1 + +/datum/chemical_reaction/meatification/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + new /obj/item/weapon/reagent_containers/food/snacks/meat/slab/meatproduct(location) + return + ////////////////////////////////// VIROLOGY ////////////////////////////////////////// /datum/chemical_reaction/virus_food