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

Crashes the Stock Parts Market #2778

Merged
merged 2 commits into from
Mar 9, 2024
Merged
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
18 changes: 10 additions & 8 deletions code/modules/cargo/packs/machinery.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,33 +18,35 @@

/datum/supply_pack/machinery/t1
name = "T1 parts crate"
desc = "A bundle of basic machine parts, containing 3 of each common part type."
cost = 1500
desc = "A bundle of basic machine parts, containing 3 of each common part type for when you're too lazy to print them yourself."
cost = 500
contains = list(/obj/item/storage/box/stockparts/basic)
crate_name = "\improper T2 parts crate"
crate_name = "\improper stock parts crate"
crate_type = /obj/structure/closet/crate

/datum/supply_pack/machinery/t2
name = "T2 parts crate"
desc = "A bundle of advanced machine parts, containing 2 of each common part type."
cost = 5000
cost = 1500
contains = list(/obj/item/storage/box/stockparts/t2)
crate_name = "\improper T2 parts crate"
crate_name = "\improper stock parts crate"
crate_type = /obj/structure/closet/crate/science

/datum/supply_pack/machinery/t3
name = "T3 parts crate"
desc = "A bundle of high-tech machine parts, containing 2 of each common part type."
cost = 13000
cost = 3000
contains = list(/obj/item/storage/box/stockparts/t3)
crate_name = "\improper T3 parts crate"
crate_name = "\improper stock parts crate"
crate_type = /obj/structure/closet/crate/secure/science

/datum/supply_pack/machinery/power
name = "Power Cell Crate"
desc = "Looking for power overwhelming? Look no further. Contains three high-voltage power cells."
desc = "Looking for power overwhelming? Look no further. Contains five high-voltage power cells."
cost = 1000
contains = list(/obj/item/stock_parts/cell/high,
/obj/item/stock_parts/cell/high,
/obj/item/stock_parts/cell/high,
/obj/item/stock_parts/cell/high,
/obj/item/stock_parts/cell/high)
crate_name = "power cell crate"
Expand Down
Loading