mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-18 12:50:29 +01:00
c8aff28c5b
* space cleanup * this * this too --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
/datum/supply_pack/musical/strings
|
|
contains = list(
|
|
/obj/item/instrument/violin,
|
|
/obj/item/instrument/banjo,
|
|
/obj/item/instrument/guitar,
|
|
/obj/item/instrument/eguitar,
|
|
)
|
|
name = "string instruments"
|
|
desc = "A set of string instruments."
|
|
cost = 50
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "string instrument crate"
|
|
|
|
/datum/supply_pack/musical/wind
|
|
contains = list(
|
|
/obj/item/instrument/accordion,
|
|
/obj/item/instrument/trumpet,
|
|
/obj/item/instrument/saxophone,
|
|
/obj/item/instrument/trombone,
|
|
/obj/item/instrument/recorder,
|
|
/obj/item/instrument/harmonica,
|
|
/obj/item/instrument/bikehorn,
|
|
)
|
|
name = "wind instruments"
|
|
desc = "A set of wind instruments."
|
|
cost = 50
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "wind instrument crate"
|
|
|
|
/datum/supply_pack/musical/keys
|
|
contains = list(
|
|
/obj/item/instrument/piano_synth,
|
|
/obj/item/instrument/glockenspiel, // cough
|
|
/obj/item/instrument/musicalmoth
|
|
)
|
|
name = "keyed instruments"
|
|
desc = "A set of keyboard-style instruments."
|
|
cost = 50
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "keyed instruments crate"
|
|
|
|
// /obj/item/instrument/piano_synth/headphones
|