mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-30 03:05:29 +00:00
Co-authored-by: ItsSelis <selis@xynolabs.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Raeschen <rycoop29@gmail.com>
17 lines
598 B
Plaintext
17 lines
598 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
|
|
var/last_move_time = 0 //For movement smoothing
|
|
/// dict of custom stat tabs with data
|
|
var/list/list/misc_tabs = list()
|
|
|
|
/mob/proc/update_misc_tabs()
|
|
misc_tabs = list() //Reset misc_tabs every Stat() to prevent old shit sticking around
|
|
|
|
/mob/is_incorporeal()
|
|
if(incorporeal_move)
|
|
return 1
|
|
..()
|