Files
CHOMPStation2/code/modules/mob/mob_defines_vr.dm
CHOMPStation2 eb4f254c80 [MIRROR] [Ready] Hanner Species (#8923)
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Kashargul <KashL@t-online.de>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2024-09-11 09:39:52 +02:00

20 lines
797 B
Plaintext

/mob
var/vantag_hud = 0 // Do I have the HUD enabled?
var/stomach_vision = 1 // By default, you will see stomachs.
var/mob/living/simple_mob/temporary_form // For holding onto a temporary form //CHOMPEdit - should be mob/living/simple_mob, not /mob
var/disconnect_time = null //Time of client loss, set by Logout(), for timekeeping
var/obj/screen/shadekin/shadekin_display = null
var/obj/screen/shadekin/lleill_display = null
var/obj/screen/xenochimera/danger_level/xenochimera_danger_display = null
var/size_multiplier = 1 //multiplier for the mob's icon size
var/accumulated_rads = 0 // For radiation stuff.
var/faction_bump_vore = FALSE // Don't bump nom mobs of the same faction
/mob/drop_location()
if(temporary_form)
return temporary_form.drop_location()
return ..()