mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 16:18:01 +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)! /🆑
59 lines
2.5 KiB
Plaintext
59 lines
2.5 KiB
Plaintext
/datum/species/get_scream_sound(mob/living/carbon/human/species)
|
|
if(species.physique == FEMALE)
|
|
return pick(
|
|
'modular_skyrat/modules/emotes/sound/voice/scream_f1.ogg',
|
|
'modular_skyrat/modules/emotes/sound/voice/scream_f2.ogg',
|
|
)
|
|
else
|
|
return pick(
|
|
'modular_skyrat/modules/emotes/sound/voice/scream_m1.ogg',
|
|
'modular_skyrat/modules/emotes/sound/voice/scream_m2.ogg',
|
|
)
|
|
|
|
/datum/species/synthetic/get_scream_sound(mob/living/carbon/human/synthetic)
|
|
return 'modular_skyrat/modules/emotes/sound/voice/scream_silicon.ogg'
|
|
|
|
/datum/species/android/get_scream_sound(mob/living/carbon/human/android)
|
|
return 'modular_skyrat/modules/emotes/sound/voice/scream_silicon.ogg'
|
|
|
|
/datum/species/lizard/get_scream_sound(mob/living/carbon/human/lizard)
|
|
return pick(
|
|
'modular_skyrat/modules/emotes/sound/voice/scream_lizard.ogg',
|
|
'sound/mobs/humanoids/lizard/lizard_scream_1.ogg',
|
|
'sound/mobs/humanoids/lizard/lizard_scream_2.ogg',
|
|
'sound/mobs/humanoids/lizard/lizard_scream_3.ogg',
|
|
)
|
|
|
|
/datum/species/skeleton/get_scream_sound(mob/living/carbon/human/skeleton)
|
|
return 'modular_skyrat/modules/emotes/sound/voice/scream_skeleton.ogg'
|
|
|
|
/datum/species/fly/get_scream_sound(mob/living/carbon/human/fly)
|
|
return 'modular_skyrat/modules/emotes/sound/voice/scream_moth.ogg'
|
|
|
|
/datum/species/moth/get_scream_sound(mob/living/carbon/human/moth)
|
|
return 'modular_skyrat/modules/emotes/sound/voice/scream_moth.ogg'
|
|
|
|
/datum/species/insect/get_scream_sound(mob/living/carbon/human/insect)
|
|
return 'modular_skyrat/modules/emotes/sound/voice/scream_moth.ogg'
|
|
|
|
/datum/species/jelly/get_scream_sound(mob/living/carbon/human/jelly)
|
|
return 'modular_skyrat/modules/emotes/sound/emotes/jelly_scream.ogg'
|
|
|
|
/datum/species/vox/get_scream_sound(mob/living/carbon/human/vox)
|
|
return 'modular_skyrat/modules/emotes/sound/emotes/voxscream.ogg'
|
|
|
|
/datum/species/vox_primalis/get_scream_sound(mob/living/carbon/human/vox_primalis)
|
|
return 'modular_skyrat/modules/emotes/sound/emotes/voxscream.ogg'
|
|
|
|
/datum/species/xeno/get_scream_sound(mob/living/carbon/human/xeno)
|
|
return 'sound/mobs/non-humanoids/hiss/hiss6.ogg'
|
|
|
|
/datum/species/zombie/get_scream_sound(mob/living/carbon/human/teshari)
|
|
return 'modular_skyrat/modules/emotes/sound/emotes/zombie_scream.ogg'
|
|
|
|
/datum/species/teshari/get_scream_sound(mob/living/carbon/human/teshari)
|
|
return 'modular_skyrat/modules/emotes/sound/emotes/raptorscream.ogg'
|
|
|
|
/datum/species/gas/get_scream_sound(mob/living/carbon/human/serpentid)
|
|
return 'modular_skyrat/modules/emotes/sound/emotes/serpentidscream.ogg'
|