From 26fa550683a7535cd42a4d45be9a5fcf5078d16e Mon Sep 17 00:00:00 2001 From: generalthrax <139387950+generalthrax@users.noreply.github.com> Date: Tue, 23 Jul 2024 04:57:50 -0700 Subject: [PATCH] reverts 'Increases the price of automatic weapons and some handguns' (#3223) ## About The Pull Request Reverts https://github.com/shiptest-ss13/Shiptest/pull/3111 as it was awaiting testmerges for being a Very Unpopular pr among maintainers and other voices in private-dev (extensively discussed) before it was full-merged without that happening. ## Why It's Good For The Game Lol ![woe2](https://github.com/user-attachments/assets/94c29def-6fe8-4bad-8b72-e66af04276fd) ## Changelog :cl: balance: Undoubles the price on every automatic gun and removed 250 from the price of every semi-auto pistol. /:cl: --- code/modules/cargo/packs/gun.dm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/code/modules/cargo/packs/gun.dm b/code/modules/cargo/packs/gun.dm index 4aaf2f60bef8..7ac296f09398 100644 --- a/code/modules/cargo/packs/gun.dm +++ b/code/modules/cargo/packs/gun.dm @@ -23,19 +23,19 @@ /datum/supply_pack/gun/commanders name = "Commander Pistol Crate" desc = "Contains a modified Candor 'Commander' pistol, produced by Nanotrasen and chambered in 9mm." - cost = 1000 + cost = 750 contains = list(/obj/item/storage/pistolcase/commander) /datum/supply_pack/gun/makarovs name = "Stechkin Pistol Crate" desc = "Contains a concealable stechkin pistol, produced by Scarborough Arms and chambered in 10mm." - cost = 1250 + cost = 1000 contains = list(/obj/item/storage/pistolcase/stechkin) /datum/supply_pack/gun/candors name = "Candor Pistol Crate" desc = "Contains a Candor pistol, the trusty sidearm of any spacer, produced by Hunter's Pride and chambered in .45 ACP." - cost = 1250 + cost = 1000 contains = list(/obj/item/storage/pistolcase/candor) /datum/supply_pack/gun/pepperbox @@ -165,28 +165,28 @@ /datum/supply_pack/gun/cobra20 name = "Cobra-20 SMG Crate" desc = "Contains a .45 submachine gun, manufactured by Scaraborough Arms and chambered in .45" - cost = 6000 + cost = 3000 contains = list(/obj/item/storage/guncase/cobra) crate_name = "SMG crate" /datum/supply_pack/gun/wt550 name = "WT-550 Auto Rifle Crate" desc = "Contains a high-powered, automatic personal defense weapon chambered in 4.6x30mm." - cost = 6000 + cost = 4000 contains = list(/obj/item/storage/guncase/wt550) crate_name = "auto rifle crate" /datum/supply_pack/gun/p16 name = "P16 Assault Rifle Crate" desc = "Contains a high-powered, automatic rifle chambered in 5.56mm." - cost = 9000 + cost = 5000 contains = list(/obj/item/storage/guncase/p16) crate_name = "auto rifle crate" /datum/supply_pack/gun/skm name = "SKM-24 Rifle Crate" desc = "Contains a high-powered, automatic rifle chambered in 7.62x40mm CLIP." - cost = 9000 + cost = 5000 contains = list(/obj/item/storage/guncase/skm) crate_name = "auto rifle crate"