From e9bdc7804da5305e2c9ee7eda6724fdccfe71bab Mon Sep 17 00:00:00 2001 From: Cadunkus <140308611+Cadunkus@users.noreply.github.com> Date: Wed, 28 Feb 2024 04:47:49 -0500 Subject: [PATCH 1/2] stock_part_prices --- code/modules/cargo/packs/machinery.dm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/code/modules/cargo/packs/machinery.dm b/code/modules/cargo/packs/machinery.dm index 510ec7841417..fc351bdf4236 100644 --- a/code/modules/cargo/packs/machinery.dm +++ b/code/modules/cargo/packs/machinery.dm @@ -18,8 +18,8 @@ /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_type = /obj/structure/closet/crate @@ -27,7 +27,7 @@ /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_type = /obj/structure/closet/crate/science @@ -35,17 +35,19 @@ /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_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" crate_type = /obj/structure/closet/crate/engineering/electrical From 819094b226653c6258fa5ff28edc95166d580720 Mon Sep 17 00:00:00 2001 From: Cadunkus <140308611+Cadunkus@users.noreply.github.com> Date: Wed, 28 Feb 2024 04:52:40 -0500 Subject: [PATCH 2/2] Adjusts Stock Part crates --- code/modules/cargo/packs/machinery.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/cargo/packs/machinery.dm b/code/modules/cargo/packs/machinery.dm index fc351bdf4236..9f3b3b2a4023 100644 --- a/code/modules/cargo/packs/machinery.dm +++ b/code/modules/cargo/packs/machinery.dm @@ -21,7 +21,7 @@ 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 @@ -29,7 +29,7 @@ desc = "A bundle of advanced machine parts, containing 2 of each common part type." 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 @@ -37,7 +37,7 @@ desc = "A bundle of high-tech machine parts, containing 2 of each common part type." 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 @@ -46,8 +46,8 @@ 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, + /obj/item/stock_parts/cell/high, /obj/item/stock_parts/cell/high) crate_name = "power cell crate" crate_type = /obj/structure/closet/crate/engineering/electrical