mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-05 22:43:46 +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>
37 lines
1.9 KiB
Plaintext
37 lines
1.9 KiB
Plaintext
/datum/instrument/guitar
|
|
name = "Generic guitar-like instrument"
|
|
category = "Guitar"
|
|
abstract_type = /datum/instrument/guitar
|
|
|
|
/datum/instrument/guitar/steel_crisis
|
|
name = "Crisis Steel String Guitar"
|
|
id = "csteelgt"
|
|
real_samples = list("36"='sound/runtime/instruments/synthesis_samples/guitar/crisis_steel/c2.ogg',
|
|
"48"='sound/runtime/instruments/synthesis_samples/guitar/crisis_steel/c3.ogg',
|
|
"60"='sound/runtime/instruments/synthesis_samples/guitar/crisis_steel/c4.ogg',
|
|
"72"='sound/runtime/instruments/synthesis_samples/guitar/crisis_steel/c5.ogg')
|
|
|
|
/datum/instrument/guitar/nylon_crisis
|
|
name = "Crisis Nylon String Guitar"
|
|
id = "cnylongt"
|
|
real_samples = list("36"='sound/runtime/instruments/synthesis_samples/guitar/crisis_nylon/c2.ogg',
|
|
"48"='sound/runtime/instruments/synthesis_samples/guitar/crisis_nylon/c3.ogg',
|
|
"60"='sound/runtime/instruments/synthesis_samples/guitar/crisis_nylon/c4.ogg',
|
|
"72"='sound/runtime/instruments/synthesis_samples/guitar/crisis_nylon/c5.ogg')
|
|
|
|
/datum/instrument/guitar/clean_crisis
|
|
name = "Crisis Clean Guitar"
|
|
id = "ccleangt"
|
|
real_samples = list("36"='sound/runtime/instruments/synthesis_samples/guitar/crisis_clean/c2.ogg',
|
|
"48"='sound/runtime/instruments/synthesis_samples/guitar/crisis_clean/c3.ogg',
|
|
"60"='sound/runtime/instruments/synthesis_samples/guitar/crisis_clean/c4.ogg',
|
|
"72"='sound/runtime/instruments/synthesis_samples/guitar/crisis_clean/c5.ogg')
|
|
|
|
/datum/instrument/guitar/muted_crisis
|
|
name = "Crisis Muted Guitar"
|
|
id = "cmutedgt"
|
|
real_samples = list("36"='sound/runtime/instruments/synthesis_samples/guitar/crisis_muted/c2.ogg',
|
|
"48"='sound/runtime/instruments/synthesis_samples/guitar/crisis_muted/c3.ogg',
|
|
"60"='sound/runtime/instruments/synthesis_samples/guitar/crisis_muted/c4.ogg',
|
|
"72"='sound/runtime/instruments/synthesis_samples/guitar/crisis_muted/c5.ogg')
|