code
This commit is contained in:
@@ -554,6 +554,13 @@
|
||||
color = "#302000" // rgb: 48, 32, 0
|
||||
taste_description = "wet and cheap noodles"
|
||||
|
||||
/datum/reagent/consumable/nutraslop
|
||||
name = "Nutraslop"
|
||||
description = "Mixture of leftover prison foods served on previous days."
|
||||
nutriment_factor = 5 * REAGENTS_METABOLISM
|
||||
color = "#3E4A00" // rgb: 62, 74, 0
|
||||
taste_description = "your imprisonment"
|
||||
|
||||
/datum/reagent/consumable/hot_ramen/on_mob_life(mob/living/carbon/M)
|
||||
M.adjust_bodytemperature(10 * TEMPERATURE_DAMAGE_COEFFICIENT, 0, BODYTEMP_NORMAL)
|
||||
..()
|
||||
|
||||
@@ -218,6 +218,31 @@
|
||||
volume = 50
|
||||
list_reagents = list(/datum/reagent/medicine/stimulants = 50)
|
||||
|
||||
/obj/item/reagent_containers/syringe/contraband
|
||||
name = "unlabeled syringe"
|
||||
desc = "A syringe containing some sort of unknown chemical cocktail."
|
||||
|
||||
/obj/item/reagent_containers/syringe/contraband/space_drugs
|
||||
list_reagents = list(/datum/reagent/drug/space_drugs = 15)
|
||||
|
||||
/obj/item/reagent_containers/syringe/contraband/krokodil
|
||||
list_reagents = list(/datum/reagent/drug/krokodil = 15)
|
||||
|
||||
/obj/item/reagent_containers/syringe/contraband/crank
|
||||
list_reagents = list(/datum/reagent/drug/crank = 15)
|
||||
|
||||
/obj/item/reagent_containers/syringe/contraband/methamphetamine
|
||||
list_reagents = list(/datum/reagent/drug/methamphetamine = 15)
|
||||
|
||||
/obj/item/reagent_containers/syringe/contraband/bath_salts
|
||||
list_reagents = list(/datum/reagent/drug/bath_salts = 15)
|
||||
|
||||
/obj/item/reagent_containers/syringe/contraband/fentanyl
|
||||
list_reagents = list(/datum/reagent/toxin/fentanyl = 15)
|
||||
|
||||
/obj/item/reagent_containers/syringe/contraband/morphine
|
||||
list_reagents = list(/datum/reagent/medicine/morphine = 15)
|
||||
|
||||
/obj/item/reagent_containers/syringe/calomel
|
||||
name = "syringe (calomel)"
|
||||
desc = "Contains calomel."
|
||||
|
||||
@@ -233,6 +233,14 @@
|
||||
anchored = TRUE
|
||||
reagent_id = /datum/reagent/consumable/cooking_oil
|
||||
|
||||
/obj/structure/reagent_dispensers/servingdish
|
||||
name = "serving dish"
|
||||
desc = "A dish full of food slop for your bowl."
|
||||
icon = 'icons/obj/kitchen.dmi'
|
||||
icon_state = "serving"
|
||||
anchored = TRUE
|
||||
reagent_id = /datum/reagent/consumable/nutraslop
|
||||
|
||||
////////
|
||||
//Kegs//
|
||||
////////
|
||||
|
||||
Reference in New Issue
Block a user