Files
CHOMPStation2/modular_chomp/code/modules/mob/mob.dm
2022-12-10 14:53:38 -06:00

11 lines
358 B
Plaintext

/mob
var/voice_freq = 42500 // Preference for character voice frequency
var/list/voice_sounds_list = list() // The sound list containing our voice sounds!
var/enabled = TRUE //Pauses a mob if disabled (Prevents life ticks from happening)
var/died_in_vr = FALSE //For virtual reality sleepers
/mob/is_incorporeal()
if(incorporeal_move)
return 1
..()