mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 23:27:34 +01:00
## About The Pull Request **The majority of the work was done by Ozzo in #1471.** GAS are snake bugs hailing from Baystation 12. - They hate the heat, but are durable against low-pressure environments and the cold. - They cannot wear suits and most clothes, but have built in armor (it's in their name). - It is harder to grab GAS. - They are taller than the average spaceman. https://github.com/user-attachments/assets/f9ac1078-0d41-4a26-850f-26a2cd7bbf01 They currently have no lore or species description, but plans are in the works for both to be made. ## Why It's Good For The Game It's a new species that was well-recieved when it was tested the first time around, before being lost due to a lack of work on it. I am here to continue work on it and add new features to it if they are requested by the person that wanted them. ## Proof Of Testing It compiled and ran, hence me being able to take the video. There were no runtimes. I attached an image of a stylish GAS as further proof of testing. <details> <summary>Screenshots/Videos</summary> <img width="137" height="111" alt="image" src="https://github.com/user-attachments/assets/4b2ddd78-9312-4f0e-bbac-37bd51290490" /> </details> ## Changelog 🆑 add: Added a new species: Giant Armored Serpentids (GAS)! /🆑
46 lines
2.5 KiB
Plaintext
46 lines
2.5 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"
|
|
|
|
#define BODYPART_ICON_GAS 'modular_skyrat/modules/bodyparts/icons/serpentid_parts_greyscale.dmi'
|