Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tweak: cargo miscellaneous update #916

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modular_ss220/modular_ss220.dme
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#include "clumsy_table/_clumsy_table.dme"

// --- MISC --- //
#include "supply/_supply.dme"
#include "administration/_administration.dme"
#include "aesthetics_sounds/_aesthetics_sounds.dme"
#include "agent_id_tgui/_agent_id_tgui.dme"
Expand Down
4 changes: 4 additions & 0 deletions modular_ss220/supply/_supply.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/datum/modpack/supply
name = "Supply"
desc = "Модпак для заказов в карго"
author = "legendaxe"
3 changes: 3 additions & 0 deletions modular_ss220/supply/_supply.dme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "_supply.dm"

#include "code/pack_miscellaneous.dm"
12 changes: 12 additions & 0 deletions modular_ss220/supply/code/pack_miscellaneous.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/datum/supply_packs/misc/bigband/New()
. = ..()

contains |= /obj/machinery/jukebox/drum_red

/datum/supply_packs/misc/soundhand
name = "Soundhand fan crate"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name = "Soundhand fan crate"
name = "Soundhand Fan Crate"

contains = list(/obj/item/clothing/suit/soundhand_black_jacket,
/obj/item/clothing/suit/soundhand_olive_jacket,
/obj/item/clothing/suit/soundhand_brown_jacket)
cost = 600
containername = "soundhand fan crate"
Loading