mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
14 lines
416 B
Plaintext
14 lines
416 B
Plaintext
/*
|
|
* Xenobiological
|
|
*/
|
|
/obj/machinery/smartfridge/secure/extract
|
|
name = "\improper Biological Sample Storage"
|
|
desc = "A refrigerated storage unit for xenobiological samples."
|
|
icon_contents = "slime"
|
|
req_access = list(ACCESS_RESEARCH)
|
|
|
|
/obj/machinery/smartfridge/secure/extract/accept_check(var/obj/item/O as obj)
|
|
if(istype(O, /obj/item/slime_extract) || istype(O, /obj/item/slimepotion))
|
|
return 1
|
|
return 0
|