From d808b56a05e28ef4e803e18a4260d7d5df3faec6 Mon Sep 17 00:00:00 2001 From: Vaelophis Nyx <1534478+GalacticRuler@users.noreply.github.com> Date: Thu, 16 Jun 2022 14:22:16 -0500 Subject: [PATCH 1/4] nerf DU slugs, but make them cheaper 2 less uranium sheets each, AP under 100 but still absurdly high, lower damage to go with them being slightly less expensive --- code/datums/components/crafting/weapons.dm | 2 +- code/modules/projectiles/projectile/bullets/shotgun.dm | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/components/crafting/weapons.dm b/code/datums/components/crafting/weapons.dm index bac8dbfd518a..73b21682fbe3 100644 --- a/code/datums/components/crafting/weapons.dm +++ b/code/datums/components/crafting/weapons.dm @@ -420,7 +420,7 @@ name = "Depleted Uranium Slug Shell" result = /obj/item/ammo_casing/shotgun/uraniumpenetrator reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, - /obj/item/stack/sheet/mineral/uranium = 3, + /obj/item/stack/sheet/mineral/uranium = 1, /obj/item/stack/rods = 2, /datum/reagent/thermite = 5) tools = list(TOOL_SCREWDRIVER) diff --git a/code/modules/projectiles/projectile/bullets/shotgun.dm b/code/modules/projectiles/projectile/bullets/shotgun.dm index 7b3a39fadc73..8f3bd72b7b47 100644 --- a/code/modules/projectiles/projectile/bullets/shotgun.dm +++ b/code/modules/projectiles/projectile/bullets/shotgun.dm @@ -98,9 +98,9 @@ /obj/item/projectile/bullet/shotgun_uraniumslug name = "depleted uranium slug" icon_state = "ubullet" - damage = 35 - armour_penetration = 200 // he he funny round go through armor - wound_bonus = -30 + damage = 20 + armour_penetration = 85 // he he funny round go through armor + wound_bonus = -35 /obj/item/projectile/bullet/shotgun_uraniumslug/on_hit(atom/target) . = ..() From aca29c2731e7435e252896ffa330c23ef11ffa5b Mon Sep 17 00:00:00 2001 From: Vaelophis Nyx <1534478+GalacticRuler@users.noreply.github.com> Date: Thu, 16 Jun 2022 14:28:46 -0500 Subject: [PATCH 2/4] bump damage back up a little --- code/modules/projectiles/projectile/bullets/shotgun.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/projectile/bullets/shotgun.dm b/code/modules/projectiles/projectile/bullets/shotgun.dm index 8f3bd72b7b47..0fbbcccfdcc6 100644 --- a/code/modules/projectiles/projectile/bullets/shotgun.dm +++ b/code/modules/projectiles/projectile/bullets/shotgun.dm @@ -98,7 +98,7 @@ /obj/item/projectile/bullet/shotgun_uraniumslug name = "depleted uranium slug" icon_state = "ubullet" - damage = 20 + damage = 33 armour_penetration = 85 // he he funny round go through armor wound_bonus = -35 From d2d63e899de0150147187d453f840729eee83485 Mon Sep 17 00:00:00 2001 From: Vaelophis Nyx <1534478+GalacticRuler@users.noreply.github.com> Date: Thu, 16 Jun 2022 14:44:32 -0500 Subject: [PATCH 3/4] tweak values on cost and damage --- code/datums/components/crafting/weapons.dm | 2 +- code/modules/projectiles/projectile/bullets/shotgun.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/datums/components/crafting/weapons.dm b/code/datums/components/crafting/weapons.dm index 73b21682fbe3..c2fc8e5c01cb 100644 --- a/code/datums/components/crafting/weapons.dm +++ b/code/datums/components/crafting/weapons.dm @@ -420,7 +420,7 @@ name = "Depleted Uranium Slug Shell" result = /obj/item/ammo_casing/shotgun/uraniumpenetrator reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, - /obj/item/stack/sheet/mineral/uranium = 1, + /obj/item/stack/sheet/mineral/uranium = 2, /obj/item/stack/rods = 2, /datum/reagent/thermite = 5) tools = list(TOOL_SCREWDRIVER) diff --git a/code/modules/projectiles/projectile/bullets/shotgun.dm b/code/modules/projectiles/projectile/bullets/shotgun.dm index 0fbbcccfdcc6..fb2b622a1804 100644 --- a/code/modules/projectiles/projectile/bullets/shotgun.dm +++ b/code/modules/projectiles/projectile/bullets/shotgun.dm @@ -98,9 +98,9 @@ /obj/item/projectile/bullet/shotgun_uraniumslug name = "depleted uranium slug" icon_state = "ubullet" - damage = 33 + damage = 30 armour_penetration = 85 // he he funny round go through armor - wound_bonus = -35 + wound_bonus = -35 /obj/item/projectile/bullet/shotgun_uraniumslug/on_hit(atom/target) . = ..() From c7db0ffad5a538cfb4df0e4f28c4bb7555e0de50 Mon Sep 17 00:00:00 2001 From: Vaelophis Nyx <1534478+GalacticRuler@users.noreply.github.com> Date: Sun, 19 Jun 2022 20:05:05 -0500 Subject: [PATCH 4/4] Update shotgun.dm --- code/modules/projectiles/projectile/bullets/shotgun.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/projectile/bullets/shotgun.dm b/code/modules/projectiles/projectile/bullets/shotgun.dm index fb2b622a1804..214598b19268 100644 --- a/code/modules/projectiles/projectile/bullets/shotgun.dm +++ b/code/modules/projectiles/projectile/bullets/shotgun.dm @@ -99,8 +99,8 @@ name = "depleted uranium slug" icon_state = "ubullet" damage = 30 - armour_penetration = 85 // he he funny round go through armor - wound_bonus = -35 + armour_penetration = 60 // he he funny round go through armor + wound_bonus = -45 /obj/item/projectile/bullet/shotgun_uraniumslug/on_hit(atom/target) . = ..()