mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
73 lines
2.7 KiB
Plaintext
73 lines
2.7 KiB
Plaintext
/*
|
|
* Medical
|
|
*/
|
|
/obj/machinery/smartfridge/medbay
|
|
name = "\improper Refrigerated Medicine Storage"
|
|
desc = "A refrigerated storage unit for securely storing medicine and chemicals."
|
|
icon_contents = "chem"
|
|
|
|
/obj/machinery/smartfridge/medbay/accept_check(var/obj/item/O as obj)
|
|
if(istype(O,/obj/item/storage/pill_bottle) || istype(O,/obj/item/reagent_containers) || istype(O,/obj/item/reagent_containers/glass/))
|
|
return 1
|
|
return 0
|
|
|
|
/obj/machinery/smartfridge/secure/medbay
|
|
name = "\improper Refrigerated Medicine Storage"
|
|
desc = "A refrigerated storage unit for storing medicine and chemicals."
|
|
icon_contents = "chem"
|
|
req_one_access = list(access_medical,access_chemistry)
|
|
|
|
/obj/machinery/smartfridge/secure/medbay/accept_check(var/obj/item/O as obj)
|
|
if(istype(O,/obj/item/storage/pill_bottle) || istype(O,/obj/item/reagent_containers) || istype(O,/obj/item/reagent_containers/glass/))
|
|
return 1
|
|
return 0
|
|
|
|
/*
|
|
* Virology
|
|
*/
|
|
/obj/machinery/smartfridge/virology
|
|
name = "\improper Refrigerated Virus Storage"
|
|
desc = "A refrigerated storage unit for storing viral material."
|
|
icon_contents = "viro"
|
|
|
|
/obj/machinery/smartfridge/virology/accept_check(var/obj/item/O as obj)
|
|
if(istype(O,/obj/item/storage/pill_bottle) || istype(O,/obj/item/reagent_containers) || istype(O,/obj/item/reagent_containers/glass/))
|
|
return 1
|
|
return 0
|
|
|
|
/obj/machinery/smartfridge/secure/virology
|
|
name = "\improper Refrigerated Virus Storage"
|
|
desc = "A refrigerated storage unit for securely storing viral material."
|
|
icon_contents = "viro"
|
|
req_access = list(access_virology)
|
|
|
|
/obj/machinery/smartfridge/secure/virology/accept_check(var/obj/item/O as obj)
|
|
if(istype(O,/obj/item/storage/pill_bottle) || istype(O,/obj/item/reagent_containers) || istype(O,/obj/item/reagent_containers/glass/))
|
|
return 1
|
|
return 0
|
|
|
|
/*
|
|
* Chemistry
|
|
*/
|
|
/obj/machinery/smartfridge/chemistry
|
|
name = "\improper Smart Chemical Storage"
|
|
desc = "A refrigerated storage unit for storing medicine and chemicals."
|
|
icon_contents = "chem"
|
|
req_one_access = list(access_chemistry)
|
|
|
|
/obj/machinery/smartfridge/chemistry/accept_check(var/obj/item/O as obj)
|
|
if(istype(O,/obj/item/storage/pill_bottle) || istype(O,/obj/item/reagent_containers) || istype(O,/obj/item/reagent_containers/glass/))
|
|
return 1
|
|
return 0
|
|
|
|
/obj/machinery/smartfridge/secure/chemistry
|
|
name = "\improper Smart Chemical Storage"
|
|
desc = "A refrigerated storage unit for securely storing medicine and chemicals."
|
|
icon_contents = "chem"
|
|
req_one_access = list(access_chemistry)
|
|
|
|
/obj/machinery/smartfridge/secure/chemistry/accept_check(var/obj/item/O as obj)
|
|
if(istype(O,/obj/item/storage/pill_bottle) || istype(O,/obj/item/reagent_containers) || istype(O,/obj/item/reagent_containers/glass/))
|
|
return 1
|
|
return 0
|