Part three: The Hierophant. Also minor fixes for the other bosses.

This commit is contained in:
Markolie
2016-10-24 21:39:40 +02:00
parent 269ead92ea
commit f61cfb47b9
23 changed files with 959 additions and 71 deletions
+21 -1
View File
@@ -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)