mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-30 03:26:56 +01:00
datumizes and standardizes all emotes because that file is in the fucking way of my saycode rewrite adds vocal cues
20 lines
559 B
Plaintext
20 lines
559 B
Plaintext
//* This file is explicitly licensed under the MIT license. *//
|
|
//* Copyright (c) 2025 Citadel Station Developers *//
|
|
|
|
/datum/soundbyte/spray
|
|
abstract_type = /datum/soundbyte/spray
|
|
is_sfx = TRUE
|
|
|
|
/datum/soundbyte/spray/air_1
|
|
name = "Spray (Air)"
|
|
id = "spray-air-1"
|
|
path = 'sound/soundbytes/effects/spray/spray_air_whoosh.ogg'
|
|
|
|
/datum/soundbyte/spray/liquid_1
|
|
name = "Spray (Liquid)"
|
|
id = "spray-liquid-1"
|
|
path = list(
|
|
'sound/soundbytes/effects/spray/spray_liquid_slower.ogg',
|
|
'sound/soundbytes/effects/spray/spray_liquid_faster.ogg',
|
|
)
|