mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 21:19:00 +01:00
Part three: The Hierophant. Also minor fixes for the other bosses.
This commit is contained in:
@@ -1,5 +1,25 @@
|
||||
// Atoms
|
||||
#define isatom(A) istype(A, /atom)
|
||||
#define ismovableatom(A) istype(A, /atom/movable)
|
||||
#define isclient(A) istype(A, /client)
|
||||
|
||||
// Mobs
|
||||
#define ismegafauna(A) (istype(A, /mob/living/simple_animal/hostile/megafauna))
|
||||
|
||||
//Turfs
|
||||
#define issimulatedturf(A) (istype(A, /turf/simulated))
|
||||
|
||||
#define isspaceturf(A) (istype(A, /turf/space))
|
||||
|
||||
#define isfloorturf(A) (istype(A, /turf/simulated/floor))
|
||||
|
||||
#define isunsimulatedturf(A) (istype(A, /turf/unsimulated))
|
||||
|
||||
#define iswallturf(A) (istype(A, /turf/simulated/wall))
|
||||
|
||||
#define isreinforcedwallturf(A) (istype(A, /turf/simulated/wall/r_wall))
|
||||
|
||||
#define ismineralturf(A) (istype(A, /turf/simulated/mineral))
|
||||
|
||||
// Misc
|
||||
#define isclient(A) istype(A, /client)
|
||||
#define isradio(A) istype(A, /obj/item/device/radio)
|
||||
Reference in New Issue
Block a user