mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-03 21:00:19 +00:00
34 lines
824 B
Plaintext
34 lines
824 B
Plaintext
/**
|
|
* Additional variables that must be defined on /mob/living/carbon/human
|
|
* for use in code that is part of the vore modules.
|
|
*
|
|
* These variables are declared here (separately from the normal human_defines.dm)
|
|
* in order to isolate VOREStation changes and ease merging of other codebases.
|
|
*/
|
|
|
|
// Additional vars
|
|
/mob/living/carbon/human
|
|
|
|
// Horray Furries!
|
|
var/datum/sprite_accessory/ears/ear_style = null
|
|
var/r_ears = 30
|
|
var/g_ears = 30
|
|
var/b_ears = 30
|
|
var/r_ears2 = 30
|
|
var/g_ears2 = 30
|
|
var/b_ears2 = 30
|
|
var/datum/sprite_accessory/tail/tail_style = null
|
|
var/r_tail = 30
|
|
var/g_tail = 30
|
|
var/b_tail = 30
|
|
var/r_tail2 = 30
|
|
var/g_tail2 = 30
|
|
var/b_tail2 = 30
|
|
var/datum/sprite_accessory/wing/wing_style = null
|
|
var/r_wing = 30
|
|
var/g_wing = 30
|
|
var/b_wing = 30
|
|
|
|
// Custom Species Name
|
|
var/custom_species
|