Files
Bubberstation/code/modules/instruments/instrument_data/fun.dm
SkyratBot 1a4ab0c93d [MIRROR] Adds 2 new sounds to the Synthesizer's 'Fun' category [MDB IGNORE] (#15508)
* Adds 2 new sounds to the Synthesizer's 'Fun' category (#68978)

Adds 2 new sounds to the 'Fun' category of the synthesizer

MeowSynth
Spaceman

* Adds 2 new sounds to the Synthesizer's 'Fun' category

Co-authored-by: NanoTrasen-Inc <nano@nanotrasen.org>
2022-08-09 20:57:12 -07:00

49 lines
1.6 KiB
Plaintext

/datum/instrument/fun
name = "Generic Fun Instrument"
category = "Fun"
abstract_type = /datum/instrument/fun
/datum/instrument/fun/honk
name = "!!HONK!!"
id = "honk"
real_samples = list("74"='sound/items/bikehorn.ogg') // Cluwne Heaven
/datum/instrument/fun/signal
name = "Ping"
id = "ping"
real_samples = list("79"='sound/machines/ping.ogg')
/datum/instrument/fun/chime
name = "Chime"
id = "chime"
real_samples = list("79"='sound/machines/chime.ogg')
/datum/instrument/fun/meowsynth
name = "MeowSynth"
id = "meowsynth"
real_samples = list("36"='sound/runtime/instruments/synthesis_samples/meowsynth/c2.ogg',
"48"='sound/runtime/instruments/synthesis_samples/meowsynth/c3.ogg',
"60"='sound/runtime/instruments/synthesis_samples/meowsynth/c4.ogg',
"72"='sound/runtime/instruments/synthesis_samples/meowsynth/c5.ogg',
"84"='sound/runtime/instruments/synthesis_samples/meowsynth/c6.ogg')
/datum/instrument/fun/spaceman
name = "Spaceman"
id = "spaceman"
real_samples = list("36"='sound/runtime/instruments/synthesis_samples/spaceman/c2.ogg',
"48"='sound/runtime/instruments/synthesis_samples/spaceman/c3.ogg',
"60"='sound/runtime/instruments/synthesis_samples/spaceman/c4.ogg',
"72"='sound/runtime/instruments/synthesis_samples/spaceman/c5.ogg')
/datum/instrument/fun/mothscream
name = "Moth Scream"
id = "mothscream"
real_samples = list("60"='sound/voice/moth/scream_moth.ogg')
admin_only = TRUE
/datum/instrument/fun/bilehorn
name = "Bilehorn"
id = "bilehorn"
real_samples = list("60"='sound/creatures/bileworm/bileworm_spit.ogg')
admin_only = TRUE