From 8eb5b20536413b4b1e96e1ab48f79e6e8d38f6f9 Mon Sep 17 00:00:00 2001 From: Theos Date: Tue, 18 Jun 2024 22:25:49 -0400 Subject: [PATCH] Reduces the orice of 9mm bullets so they arent objectively worse than anything else (#3113) ## About The Pull Request Presently, 9mm loses 20% damage with no other direct stat changes This pr reduces the price of 9mm boxes by 20% so the bullets aren't as expensive as any other standard pistol bullet while dealing less damage ## Why It's Good For The Game Usually bullets are significantly more expensive to counteract QOL stuff like killing things significantly faster or being fired from a contender and 9mm does neither ## Changelog :cl: balance: 9mm boxes are now cheaper than other pistol calibers to account for the lower damage per bullet /:cl: Signed-off-by: Theos --- code/modules/cargo/packs/ammo.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/cargo/packs/ammo.dm b/code/modules/cargo/packs/ammo.dm index aa165cbc8149..9507f883c10a 100644 --- a/code/modules/cargo/packs/ammo.dm +++ b/code/modules/cargo/packs/ammo.dm @@ -213,7 +213,7 @@ name = "9mm Ammo Box Crate" desc = "Contains a fifty-round 9mm box for pistols and SMGs such as the Commander or Saber." contains = list(/obj/item/ammo_box/c9mm) - cost = 250 + cost = 200 /datum/supply_pack/ammo/a308_ammo_box name = "308 Ammo Box Crate" @@ -225,7 +225,7 @@ name = "9mm AP Ammo Box Crate" desc = "Contains a fifty-round 9mm box loaded with armor piercing ammo." contains = list(/obj/item/ammo_box/c9mm/ap) - cost = 500 + cost = 400 /datum/supply_pack/ammo/a357match_ammo_box name = ".357 Match Ammo Box Crate" @@ -255,7 +255,7 @@ name = "9mm HP Ammo Box Crate" desc = "Contains a fifty-round 9mm box loaded with hollow point ammo, great against unarmored targets." contains = list(/obj/item/ammo_box/c9mm/hp) - cost = 500 + cost = 400 /datum/supply_pack/ammo/a357hp_ammo_box name = ".357 HP Ammo Box Crate" @@ -284,7 +284,7 @@ name = "9mm Rubber Ammo Box Crate" desc = "Contains a fifty-round 9mm box loaded with less-than-lethal rubber rounds." contains = list(/obj/item/ammo_box/c9mm/rubbershot) - cost = 250 + cost = 200 /datum/supply_pack/ammo/c10mmrubber_ammo_box name = "10mm Rubber Ammo Box Crate"