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

Handheld Charger and MRE for Cargo. #651

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions code/modules/reqs/engineering.dm
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
contains = list(/obj/item/stack/sheet/mineral/junk/large_stack)
cost = 300

/datum/supply_packs/engineering/handheld_charger
name = "handheld charger"
contains = list(/obj/item/tool/handheld_charger)
cost = 80

/datum/supply_packs/engineering/plasmacutter
name = "plasma cutter"
contains = list(/obj/item/tool/pickaxe/plasmacutter/)
Expand Down
17 changes: 17 additions & 0 deletions code/modules/reqs/supplies.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@
containertype = /obj/structure/closet/crate/operations
cost = 40

/datum/supply_packs/supplies/provision
name = "Emergency Provision Crate"
notes = "Contains 10 special TGMC MRE racions."
contains = list(/obj/item/storage/box/MRE,
/obj/item/storage/box/MRE,
/obj/item/storage/box/MRE,
/obj/item/storage/box/MRE,
/obj/item/storage/box/MRE,
/obj/item/storage/box/MRE,
/obj/item/storage/box/MRE,
/obj/item/storage/box/MRE,
/obj/item/storage/box/MRE,
/obj/item/storage/box/MRE
)
Helg2 marked this conversation as resolved.
Show resolved Hide resolved
containertype = /obj/structure/closet/crate/operations
cost = 65

/datum/supply_packs/supplies/janitor
name = "assorted janitorial supplies"
contains = list(
Expand Down
Loading