From 84d2ae463e45faad4c1c33bb347ad46b57a3fe8d Mon Sep 17 00:00:00 2001 From: Alberyk Date: Fri, 13 Jul 2018 16:29:23 -0300 Subject: [PATCH] Buffs the thermal drill (#4975) -removes the thermal drill dispersion, making it a more effective mining tool --- code/modules/projectiles/guns/energy/special.dm | 5 ++--- html/changelogs/alberyk-drill.yml | 5 +++++ 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/alberyk-drill.yml diff --git a/code/modules/projectiles/guns/energy/special.dm b/code/modules/projectiles/guns/energy/special.dm index 29d933968ac..b8f59a41ef8 100644 --- a/code/modules/projectiles/guns/energy/special.dm +++ b/code/modules/projectiles/guns/energy/special.dm @@ -419,8 +419,8 @@ firemodes = list( list(mode_name="2 second burst", burst=10, burst_delay = 1, fire_delay = 20), - list(mode_name="4 second burst", burst=20, burst_delay = 1, fire_delay = 40, dispersion = list(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)), - list(mode_name="6 second burst", burst=30, burst_delay = 1, fire_delay = 60, dispersion = list(0, 1.5, 3, 4.5, 6, 7.5, 9, 10.5, 12, 13.5, 15, 16.5, 18, 19.5, 21)) + list(mode_name="4 second burst", burst=20, burst_delay = 1, fire_delay = 40), + list(mode_name="6 second burst", burst=30, burst_delay = 1, fire_delay = 60) ) action_button_name = "Wield thermal drill" @@ -485,7 +485,6 @@ charge_meter = 1 use_external_power = 1 charge_cost = 25 - dispersion = list(0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30) /obj/item/weapon/gun/energy/vaurca/mountedthermaldrill/special_check(var/mob/user) if(is_charging) diff --git a/html/changelogs/alberyk-drill.yml b/html/changelogs/alberyk-drill.yml new file mode 100644 index 00000000000..d30371bba74 --- /dev/null +++ b/html/changelogs/alberyk-drill.yml @@ -0,0 +1,5 @@ +author: Alberyk +delete-after: True + +changes: + - tweak: "Removed the thermal drill dispersion, making it a more effective mining tool."