Skip to content

Commit

Permalink
12345
Browse files Browse the repository at this point in the history
  • Loading branch information
simb11 committed Dec 29, 2024
1 parent 07f41ab commit 74375c8
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
28 changes: 28 additions & 0 deletions code/modules/cargo/exports/tools.dm
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,34 @@
export_types = list(/obj/item/weapon/mining_scanner/improved)


// musical instruments

/datum/export/guitar
cost = 30
unit_name = "guitar"
export_types = list(/obj/item/device/guitar)

/datum/export/harmonica
cost = 15
unit_name = "harmonica"
export_types = list(/obj/item/device/harmonica)

/datum/export/synth
cost = 30
unit_name = "electronic synthesizer"
export_types = list(/obj/item/device/synth)

/datum/export/violin
cost = 30
unit_name = "space violin"
export_types = list(/obj/item/device/violin)

/datum/export/paino
cost = 200
unit_name = "space grand piano"
export_types = list(/obj/structure/device/piano/royal)


// misc

/datum/export/cryobag
Expand Down
17 changes: 17 additions & 0 deletions code/modules/cargo/packs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1786,6 +1786,23 @@ var/global/list/all_supply_groups = list("Operations","Security","Hospitality","
//--------------MISCELLANEOUS-------------------
//----------------------------------------------

/datum/supply_pack/musical_instruments
name = "Musician Instruments"
contains = list(/obj/item/device/guitar,
/obj/item/device/harmonica,
/obj/item/device/synth,
/obj/item/device/violin)
group = "Miscellaneous"
crate_type = /obj/structure/closet/crate
crate_name = "Musician Instruments"

/datum/supply_pack/piano
name = "Piano"
contains = list(/obj/structure/device/piano)
group = "Miscellaneous"
crate_type = /obj/structure/largecrate
crate_name = "Piano"

/datum/supply_pack/wizard
name = "Wizard costume"
contains = list(/obj/item/weapon/staff,
Expand Down

0 comments on commit 74375c8

Please sign in to comment.