Files
Aurora.3/code/modules/mob/abstract/abstract.dm
T
d95734c606 Emissives (#18895)
A significant amount of influence was taken from
https://github.com/Baystation12/Baystation12/pull/33255, however adapted
to Aurora. Key things to note is the port of the newer alpha settings
from /tg/, among other improvements.

The ancient holographic and screen overlay code has been purged. This is
now handled with emissives, while holograms are handled with filters as
well.

---------

Co-authored-by: Cody Brittain <cbrittain10@live.com>
2024-05-12 20:51:45 +00:00

38 lines
576 B
Plaintext

/mob/abstract
name = "abstract mob"
status_flags = GODMODE
invisibility = INVISIBILITY_ABSTRACT
blocks_emissive = EMISSIVE_BLOCK_NONE
density = FALSE
anchored = TRUE
simulated = FALSE
mob_thinks = FALSE
var/allow_falling = FALSE
/mob/abstract/dust()
return
/mob/abstract/gib()
return
/mob/abstract/can_fall()
. = allow_falling ? ..() : FALSE
/mob/abstract/conveyor_act()
return
/mob/abstract/ex_act(var/severity = 2.0)
return
/mob/abstract/singularity_act()
return
/mob/abstract/singularity_pull()
return
/mob/abstract/singuloCanEat()
return FALSE