From 2b02bf103bac5c3ae46f208b21fc74931ecdf0ff Mon Sep 17 00:00:00 2001 From: arnociiroc <81465875+arnociiroc@users.noreply.github.com> Date: Sun, 9 Oct 2022 23:33:15 -0400 Subject: [PATCH] nerfs shotgun darts (#70112) * Shotgun darts now only hold up to 15 units, with the nukie-variation being able to hold up to 30. This puts it on-par with the Syringe gun. --- code/modules/projectiles/ammunition/ballistic/shotgun.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/projectiles/ammunition/ballistic/shotgun.dm b/code/modules/projectiles/ammunition/ballistic/shotgun.dm index 5d090cc108a..b048c8cd2ec 100644 --- a/code/modules/projectiles/ammunition/ballistic/shotgun.dm +++ b/code/modules/projectiles/ammunition/ballistic/shotgun.dm @@ -134,10 +134,10 @@ /obj/item/ammo_casing/shotgun/dart name = "shotgun dart" - desc = "A dart for use in shotguns. Can be injected with up to 30 units of any chemical." + desc = "A dart for use in shotguns. Can be injected with up to 15 units of any chemical." icon_state = "cshell" projectile_type = /obj/projectile/bullet/dart - var/reagent_amount = 30 + var/reagent_amount = 15 /obj/item/ammo_casing/shotgun/dart/Initialize(mapload) . = ..() @@ -147,7 +147,8 @@ return /obj/item/ammo_casing/shotgun/dart/bioterror - desc = "A shotgun dart filled with deadly toxins." + desc = "An improved shotgun dart filled with deadly toxins. Can be injected with up to 30 units of any chemical." + reagent_amount = 30 /obj/item/ammo_casing/shotgun/dart/bioterror/Initialize(mapload) . = ..()