mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 20:52:41 +00:00
23 lines
587 B
Plaintext
23 lines
587 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/hair_accessory/hair_accessory_style = null
|
|
var/r_acc = 30
|
|
var/g_acc = 30
|
|
var/b_acc = 30
|
|
var/r_acc2 = 30
|
|
var/g_acc2 = 30
|
|
var/b_acc2 = 30
|
|
var/r_acc3 = 30
|
|
var/g_acc3 = 30
|
|
var/b_acc3 = 30
|