Files
11d6312e31 Adds more AI hologram options (#4648)
## About The Pull Request
Adds the mothroach, stoat, bee, red panda, and fennec animals to the
list of possible AI hologram appearances.
## Why It's Good For The Game
I was sad when I found out I couldn't appear as a mothroach when talking
with people as an AI. I feel like such an iconic creature shouldn't be
excluded and that having more options is good.
## Proof Of Testing
It runs. New options work and old options are not broken.
<details>
<summary>Screenshots/Videos</summary>
<img width="103" height="198" alt="AIBee"
src="https://github.com/user-attachments/assets/c0a9cb55-6edc-48ff-a806-507cb2675b76"
/>
<img width="105" height="202" alt="AIFennec"
src="https://github.com/user-attachments/assets/7b788c97-f0d3-4321-bc9f-aabcffdc1956"
/>
<img width="98" height="193" alt="AIMothroach"
src="https://github.com/user-attachments/assets/48084e6a-e812-4df8-ad59-01c112365614"
/>
<img width="102" height="203" alt="AIRedPanda"
src="https://github.com/user-attachments/assets/5690bd09-643b-4fc2-beee-3ad41cd86914"
/>
<img width="103" height="200" alt="AIStoat"
src="https://github.com/user-attachments/assets/63b6dd28-5987-495c-a154-5a3c10b3a8d9"
/>

</details>

## Changelog
🆑 Midnight Starchaser
add: Added several new AI hologram appearance options
/🆑

---------

Co-authored-by: Shadow-Quill <44811257+Shadow-Quill@users.noreply.github.com>
Co-authored-by: xPokee <catmc8565@gmail.com>
2025-09-30 14:50:27 -04:00

44 lines
2.4 KiB
Plaintext

#define BLOOD_VOLUME_OVERSIZED 1120
#define PULL_OVERSIZED_SLOWDOWN 2
#define HUMAN_MAXHEALTH MAX_LIVING_HEALTH
#define UNDERWEAR_HIDE_SOCKS (1<<0)
#define UNDERWEAR_HIDE_SHIRT (1<<1)
#define UNDERWEAR_HIDE_UNDIES (1<<2)
#define UNDERWEAR_HIDE_BRA (1<<3)
///Defines for icons used for modular bodyparts, created to make it easier to relocate the module or files if necessary.
#define BODYPART_ICON_HUMAN 'modular_skyrat/modules/bodyparts/icons/human_parts_greyscale.dmi'
#define BODYPART_ICON_MAMMAL 'modular_skyrat/modules/bodyparts/icons/mammal_parts_greyscale.dmi'
#define BODYPART_ICON_AKULA 'modular_skyrat/modules/bodyparts/icons/akula_parts_greyscale.dmi'
#define BODYPART_ICON_AQUATIC 'modular_skyrat/modules/bodyparts/icons/aquatic_parts_greyscale.dmi'
#define BODYPART_ICON_GHOUL 'modular_skyrat/modules/bodyparts/icons/ghoul_bodyparts.dmi'
#define BODYPART_ICON_INSECT 'modular_skyrat/modules/bodyparts/icons/insect_parts_greyscale.dmi'
#define BODYPART_ICON_LIZARD 'modular_skyrat/modules/bodyparts/icons/lizard_parts_greyscale.dmi'
#define BODYPART_ICON_MOTH 'modular_skyrat/modules/bodyparts/icons/moth_parts_greyscale.dmi'
#define BODYPART_ICON_ROUNDSTARTSLIME 'modular_skyrat/modules/bodyparts/icons/slime_parts_greyscale.dmi'
#define BODYPART_ICON_SKRELL 'modular_skyrat/modules/bodyparts/icons/skrell_parts_greyscale.dmi'
#define BODYPART_ICON_TAUR 'modular_skyrat/modules/bodyparts/icons/taur_invisible_legs.dmi'
#define BODYPART_ICON_TESHARI 'modular_skyrat/modules/bodyparts/icons/teshari_parts_greyscale.dmi'
#define BODYPART_ICON_VOX 'modular_skyrat/modules/bodyparts/icons/vox_parts_greyscale.dmi'
#define BODYPART_ICON_XENO 'modular_skyrat/modules/bodyparts/icons/xeno_parts_greyscale.dmi'
#define BODYPART_ICON_SYNTHMAMMAL 'modular_skyrat/modules/bodyparts/icons/synthmammal_parts_greyscale.dmi'
#define BODYPART_ICON_IPC 'modular_skyrat/modules/bodyparts/icons/ipc_parts.dmi'
#define BODYPART_ICON_SYNTHLIZARD 'modular_skyrat/modules/bodyparts/icons/synthliz_parts_greyscale.dmi'
#define BODYPART_ICON_LYCAN 'modular_zubbers/icons/mob/species/lycan/lycan_bodyparts.dmi'
#define BUTT_SPRITE_PODPERSON "podperson"
#define BUTT_SPRITE_VOX "vox"
#define BUTT_SPRITE_VULP "vulp"
#define BLOOD_TYPE_COPPER "CU"
#define BLOOD_TYPE_NANITE_SLURRY "NS"
#define AI_HOLOGRAM_MOTHROACH "Mothroach"
#define AI_HOLOGRAM_STOAT "Stoat"
#define AI_HOLOGRAM_BEE "Bee"
#define AI_HOLOGRAM_REDPANDA "Red Panda"
#define AI_HOLOGRAM_FENNEC "Fennec"