mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
* mob part bitflags in proper format, added tail part bitflag, hidetail clothing cover flag, reordered tail layer, added tail_underlimbs_layer for overlapping tails, limbs_layer for limbs placed under, tail_wagging + has_icon_skin_tone + tail_overlapped species anatomical flags, mutable_appearance() helper, made many suits cover tail, added tail wagging emote for species that can wag, made a species folder for species files, rewrote update_tail_showing(), character preview can show tails, vox tails are now separate from the body instead of being baked into the chest, vox tails will show slightly in north dir instead of being invisible * added color defines, undid bitfield format change, wag emote is shorter and doesnt show text on stopping wag, vox tails have their own file and have better names, removed icon manipulation from tail updating, species can have own tail icon, made vox tail north sprites full/complete sprites * wag emote no longer displays runechat, custom emotes can choose to not show runechat, restores old husk overlays * limb_tail tail define, moved 2 tail species flags to organ level, added span define, tail is on organ level, added support for cosmetic organs, tail preview icon shows better, added tail support to common surgeries * fix double tail organ, tail organ item only uses east sprite and is shifted to center it more * removes tail wagging * rename tail define, minor tweaks * more checks, fix char preview issues, remove unused proc, frankensteins spawn with random kind of tail, repaired tajaran and unathi tails credit to falcon2346, robotail support, rambler will not spawn with tail, gibbing drops tails * Update species.dm
24 lines
866 B
Plaintext
24 lines
866 B
Plaintext
#define COLOR_DARKMODE_BACKGROUND "#282828"
|
|
#define COLOR_DARKMODE_DARKBACKGROUND "#1d2021"
|
|
#define COLOR_DARKMODE_BUTTONBACKGROUND "#32302f"
|
|
#define COLOR_DARKMODE_TEXT "#a4bad6"
|
|
|
|
#define COLOR_WHITEMODE_BACKGROUND "none"
|
|
#define COLOR_WHITEMODE_INFOBACKGROUND "#FFFFFF"
|
|
#define COLOR_WHITEMODE_TEXT "#000000"
|
|
|
|
#define DYNAMIC_TEXT_COLOR_V_MIN 60 //Dynamically-colored text such as that describing blood-stains will have its HSV V brightness clamped to between these.
|
|
#define DYNAMIC_TEXT_COLOR_V_MAX 200
|
|
|
|
#define COLOR_WHITE "#FFFFFF"
|
|
#define COLOR_LINEN "#E5E4DC"
|
|
#define COLOR_RADIUM "#61F09A"
|
|
#define COLOR_GLUE "#FFFFCC"
|
|
#define COLOR_BEESWAX "#FFB700"
|
|
#define COLOR_DEFAULT_CANDLE "#BE0000"
|
|
#define COLOR_RED "#FF0000"
|
|
#define COLOR_GREEN "#00FF00"
|
|
#define COLOR_BLUE "#0000FF"
|
|
|
|
#define COLOR_MATRIX_ADD(color) list(COLOR_RED, COLOR_GREEN, COLOR_BLUE, color)
|