mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-25 17:12:12 +00:00
* Baystruments - I had two tgstation forks for some reason and had to delete one and that nuked the last PR (#51459) Instruments and sound channels refactor. * Baystruments - I had two tgstation forks for some reason and had to delete one and that nuked the last PR * Fixes dme dupe * Fixes dme dupe (#52954) Co-authored-by: silicons <2003111+silicons@users.noreply.github.com> Co-authored-by: AnturK <AnturK@users.noreply.github.com> Co-authored-by: Useroth <37159550+Useroth@users.noreply.github.com>
32 lines
1.7 KiB
Plaintext
32 lines
1.7 KiB
Plaintext
/datum/instrument/chromatic
|
|
name = "Generic chromatic percussion instrument"
|
|
category = "Chromatic percussion"
|
|
abstract_type = /datum/instrument/chromatic
|
|
|
|
/datum/instrument/chromatic/vibraphone1
|
|
name = "Crisis Vibraphone"
|
|
id = "crvibr"
|
|
real_samples = list("36"='sound/runtime/instruments/synthesis_samples/chromatic/vibraphone1/c2.ogg',
|
|
"48"='sound/runtime/instruments/synthesis_samples/chromatic/vibraphone1/c3.ogg',
|
|
"60"='sound/runtime/instruments/synthesis_samples/chromatic/vibraphone1/c4.ogg',
|
|
"72"='sound/runtime/instruments/synthesis_samples/chromatic/vibraphone1/c5.ogg')
|
|
|
|
/datum/instrument/chromatic/musicbox1
|
|
name = "SGM Music Box"
|
|
id = "sgmmbox"
|
|
real_samples = list("36"='sound/runtime/instruments/synthesis_samples/chromatic/sgmbox/c2.ogg',
|
|
"48"='sound/runtime/instruments/synthesis_samples/chromatic/sgmbox/c3.ogg',
|
|
"60"='sound/runtime/instruments/synthesis_samples/chromatic/sgmbox/c4.ogg',
|
|
"72"='sound/runtime/instruments/synthesis_samples/chromatic/sgmbox/c5.ogg')
|
|
|
|
/datum/instrument/chromatic/fluid_celeste
|
|
name = "FluidR3 Celeste"
|
|
id = "r3celeste"
|
|
real_samples = list("36"='sound/runtime/instruments/synthesis_samples/chromatic/fluid_celeste/c2.ogg',
|
|
"48"='sound/runtime/instruments/synthesis_samples/chromatic/fluid_celeste/c3.ogg',
|
|
"60"='sound/runtime/instruments/synthesis_samples/chromatic/fluid_celeste/c4.ogg',
|
|
"72"='sound/runtime/instruments/synthesis_samples/chromatic/fluid_celeste/c5.ogg',
|
|
"84"='sound/runtime/instruments/synthesis_samples/chromatic/fluid_celeste/c6.ogg',
|
|
"96"='sound/runtime/instruments/synthesis_samples/chromatic/fluid_celeste/c7.ogg',
|
|
"108"='sound/runtime/instruments/synthesis_samples/chromatic/fluid_celeste/c8.ogg')
|