mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
* Changes plasma to phoron Because plasma has been coopted to mean the 4th state of matter, we're rebasing to the new bay naming standard of phoron * Fixes maps and filenames * Whoops forgot to change test box!
44 lines
860 B
Plaintext
44 lines
860 B
Plaintext
/proc/isassembly(O)
|
|
if(istype(O, /obj/item/device/assembly))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/isigniter(O)
|
|
if(istype(O, /obj/item/device/assembly/igniter))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/isinfared(O)
|
|
if(istype(O, /obj/item/device/assembly/infra))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/isprox(O)
|
|
if(istype(O, /obj/item/device/assembly/prox_sensor))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/issignaler(O)
|
|
if(istype(O, /obj/item/device/assembly/signaler))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/istimer(O)
|
|
if(istype(O, /obj/item/device/assembly/timer))
|
|
return 1
|
|
return 0
|
|
|
|
/*
|
|
Name: IsSpecialAssembly
|
|
Desc: If true is an object that can be attached to an assembly holder but is a special thing like a phoron can or door
|
|
*/
|
|
|
|
/obj/proc/IsSpecialAssembly()
|
|
return 0
|
|
|
|
/*
|
|
Name: IsAssemblyHolder
|
|
Desc: If true is an object that can hold an assemblyholder object
|
|
*/
|
|
/obj/proc/IsAssemblyHolder()
|
|
return 0 |