mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
13 lines
415 B
Plaintext
13 lines
415 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 |