From 2a06ff753d5d61810d690be2b7eb6965578090d0 Mon Sep 17 00:00:00 2001 From: iloveloopers <140007537+iloveloopers@users.noreply.github.com> Date: Wed, 8 May 2024 16:50:01 -0400 Subject: [PATCH] Update dropship_ammo.dm --- code/modules/cm_marines/dropship_ammo.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/cm_marines/dropship_ammo.dm b/code/modules/cm_marines/dropship_ammo.dm index bfb962866d89..57b09cc7dd06 100644 --- a/code/modules/cm_marines/dropship_ammo.dm +++ b/code/modules/cm_marines/dropship_ammo.dm @@ -297,11 +297,11 @@ desc = "A modified version of the AIM-224B missile, allows for custom reagent mix to be inserted in the receptacle" icon_state = "custom_missile" ammo_name = "rocket" - travelling_time = 60 - point_cost = 600 + travelling_time = 40 + point_cost = 350 fire_mission_delay = 0 //direct bombard only /// the limits of the custom missile - var/list/reaction_limits = list( "max_ex_power" = 300, "base_ex_falloff" = 90, "max_ex_shards" = 128, + var/list/reaction_limits = list( "max_ex_power" = 300, "base_ex_falloff" = 60, "max_ex_shards" = 128, "max_fire_rad" = 8, "max_fire_int" = 60, "max_fire_dur" = 48, "min_fire_rad" = 3, "min_fire_int" = 5, "min_fire_dur" = 5 )