diff --git a/code/game/sound.dm b/code/game/sound.dm index 29c471f06e9d..d63e4a1b0c18 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -324,6 +324,8 @@ S = pick('sound/effects/alien_resin_move1.ogg','sound/effects/alien_resin_move2.ogg') if("alien_talk") S = pick('sound/voice/alien_talk.ogg','sound/voice/alien_talk2.ogg','sound/voice/alien_talk3.ogg') + if("larva_talk") + S = pick('sound/voice/larva_talk1.ogg','sound/voice/larva_talk2.ogg','sound/voice/larva_talk3.ogg','sound/voice/larva_talk4.ogg') if("hiss_talk") S = pick('sound/voice/hiss2.ogg','sound/voice/hiss3.ogg','sound/voice/hiss4.ogg') if("alien_growl") diff --git a/code/modules/clothing/suits/marine_armor/_marine_armor.dm b/code/modules/clothing/suits/marine_armor/_marine_armor.dm index 22764d35a8df..cedf20257605 100644 --- a/code/modules/clothing/suits/marine_armor/_marine_armor.dm +++ b/code/modules/clothing/suits/marine_armor/_marine_armor.dm @@ -671,7 +671,7 @@ /obj/item/clothing/suit/storage/marine/caustic name = "\improper Z-210 Armor" - desc = "A a ligth weigth, piece of Z-210 ANCW Armor. It has incredibly soft cushioning on the inside, thanks to the gel pads. A truck could hit you and you be fine in this." + desc = "A lightweight piece of Z-210 ANCW armor. It has incredibly soft cushioning on the inside, thanks to the gel pads. A truck could hit you and you be fine in this." desc_lore = "A special piece of armormend developed against the Xenomporh threat by the USMC top scientists. Based on the design of the Z-110 Acid Neutralizing Combat Wardrobe by Grant Corp, this armor system has been modified to allow soldiers to perform unrestricted in battle. It uses CN-Gel to neutalize even the heaviest of xenomoprh acidcs, and turn their PH level to that of water, wich glides rigth of the superhydrophobicsurface of the armor plates. Its insides are lined with a combination of fiber and gel cushioning, serving as a storage for the CN-Gel, and to protect the user of heavy impacts. CN-Gel also serves as a great insulator, protecting the user from from the harshest of colds, to the blazing sun. Allowing the user to perform in any enviorment. The original Z-110 was to heavy for active combat so the new Z-210 version has been striped down tremendously, barley leaving room for any form of protection against projectiles. Making it unsuitable for combat against human combatance. Grant Corp's openly avilabel NutraGel has been studied by WY and USMC scientist to creat a version of the gel to use xenomorph XX-121 biomatter, primarily their saliva, as a base for Compound NutraGel, or CN-Gel. Making it clearer, thermoinsulating, thicker, and overall more economic. Allowing a Z-210 Armor system to be fully operational for weeks before needing to be refilled." icon = 'icons/obj/items/clothing/cm_suits.dmi' icon_state = "caustic_H" diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm index a3e856c7fc67..8dc427e2c55e 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm @@ -37,6 +37,7 @@ crit_health = -25 gib_chance = 25 mob_size = MOB_SIZE_SMALL + speaking_noise = "larva_talk" base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, /datum/action/xeno_action/watch_xeno, diff --git a/html/changelogs/archive/2024-07.yml b/html/changelogs/archive/2024-07.yml new file mode 100644 index 000000000000..cf474db8722d --- /dev/null +++ b/html/changelogs/archive/2024-07.yml @@ -0,0 +1,4 @@ +2024-07-03: + Blundir: + - soundadd: larva talking sounds + - imageadd: larva moving sprites, tweak of standing ones diff --git a/icons/mob/xenos/larva.dmi b/icons/mob/xenos/larva.dmi index d07dad82ed29..72cfb7b4e318 100644 Binary files a/icons/mob/xenos/larva.dmi and b/icons/mob/xenos/larva.dmi differ diff --git a/sound/voice/larva_talk1.ogg b/sound/voice/larva_talk1.ogg new file mode 100644 index 000000000000..8e8a212d4dde Binary files /dev/null and b/sound/voice/larva_talk1.ogg differ diff --git a/sound/voice/larva_talk2.ogg b/sound/voice/larva_talk2.ogg new file mode 100644 index 000000000000..e59f0e693259 Binary files /dev/null and b/sound/voice/larva_talk2.ogg differ diff --git a/sound/voice/larva_talk3.ogg b/sound/voice/larva_talk3.ogg new file mode 100644 index 000000000000..c784490fffa9 Binary files /dev/null and b/sound/voice/larva_talk3.ogg differ diff --git a/sound/voice/larva_talk4.ogg b/sound/voice/larva_talk4.ogg new file mode 100644 index 000000000000..cbb9b01d2418 Binary files /dev/null and b/sound/voice/larva_talk4.ogg differ