From 74043dab85584989493f4117081c386c2db6e310 Mon Sep 17 00:00:00 2001 From: ILikeToGammon <75219020+ILikeToGammon@users.noreply.github.com> Date: Fri, 6 Dec 2024 03:30:04 +0000 Subject: [PATCH] Tank Hardpoints Tweaks --- code/datums/ammo/bullet/tank.dm | 2 +- code/datums/ammo/rocket.dm | 4 ++-- code/modules/vehicles/hardpoints/armor/ballistic.dm | 4 ++-- code/modules/vehicles/hardpoints/primary/autocannon.dm | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/datums/ammo/bullet/tank.dm b/code/datums/ammo/bullet/tank.dm index 4c9c2a29b8..ab6d0ecd6e 100644 --- a/code/datums/ammo/bullet/tank.dm +++ b/code/datums/ammo/bullet/tank.dm @@ -87,7 +87,7 @@ accuracy_var_low = PROJECTILE_VARIANCE_TIER_8 accuracy_var_high = PROJECTILE_VARIANCE_TIER_8 accurate_range = 12 - damage = 40 + damage = 125 penetration = ARMOR_PENETRATION_TIER_6 damage_armor_punch = 1 diff --git a/code/datums/ammo/rocket.dm b/code/datums/ammo/rocket.dm index 3238c9ac48..5ebcacc8ac 100644 --- a/code/datums/ammo/rocket.dm +++ b/code/datums/ammo/rocket.dm @@ -59,7 +59,7 @@ accuracy_var_low = PROJECTILE_VARIANCE_TIER_9 accurate_range = 6 max_range = 6 - damage = 10 + damage = 200 penetration= ARMOR_PENETRATION_TIER_10 @@ -163,7 +163,7 @@ accuracy = HIT_ACCURACY_TIER_3 accurate_range = 32 max_range = 32 - damage = 200 + damage = 300 shell_speed = AMMO_SPEED_TIER_3 /datum/ammo/rocket/ltb/on_hit_mob(mob/mob, obj/projectile/projectile) diff --git a/code/modules/vehicles/hardpoints/armor/ballistic.dm b/code/modules/vehicles/hardpoints/armor/ballistic.dm index 55f0f6bc4e..ed557116d7 100644 --- a/code/modules/vehicles/hardpoints/armor/ballistic.dm +++ b/code/modules/vehicles/hardpoints/armor/ballistic.dm @@ -7,7 +7,7 @@ disp_icon_state = "ballistic_armor" type_multipliers = list( - "bullet" = 0.67, - "slash" = 0.67, + "bullet" = 0.87, + "slash" = 0.87, "all" = 0.9 ) diff --git a/code/modules/vehicles/hardpoints/primary/autocannon.dm b/code/modules/vehicles/hardpoints/primary/autocannon.dm index e7c07c6d58..812a7f9ac6 100644 --- a/code/modules/vehicles/hardpoints/primary/autocannon.dm +++ b/code/modules/vehicles/hardpoints/primary/autocannon.dm @@ -25,7 +25,7 @@ gun_firemode_list = list( GUN_FIREMODE_AUTOMATIC, ) - fire_delay = 0.7 SECONDS + fire_delay = 0.5 SECONDS /obj/item/hardpoint/primary/autocannon/set_bullet_traits() ..()