From ecf6891ec04f81710c63a37189a788eb130da030 Mon Sep 17 00:00:00 2001 From: Dimasw99 Date: Wed, 28 Feb 2024 20:32:39 +0100 Subject: [PATCH] revert auretian nerf (#5054) * revert auretian nerf * Fix recoil, remove blacklist restriction * 1984 --- .../projectiles/guns/energy/plasma/centurio_auretian.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/projectiles/guns/energy/plasma/centurio_auretian.dm b/code/modules/projectiles/guns/energy/plasma/centurio_auretian.dm index 9321c5ae3ef..bc7e2926caf 100644 --- a/code/modules/projectiles/guns/energy/plasma/centurio_auretian.dm +++ b/code/modules/projectiles/guns/energy/plasma/centurio_auretian.dm @@ -12,6 +12,7 @@ matter = list(MATERIAL_STEEL = 20, MATERIAL_PLASMA = 5) price_tag = 1250 damage_multiplier = 1 + init_recoil = HANDGUN_RECOIL(0.2) init_firemodes = list( list(mode_name="melt", mode_desc="Hard hitting plasma bolt that melts flesh and armor alike", projectile_type=/obj/item/projectile/plasma/heavy, fire_sound='sound/weapons/energy/incinerate.ogg', fire_delay = 9, icon="destroy", projectile_color = "#006633"), list(mode_name="ion shot", mode_desc="An iodizing shot to disable cells, electronics and cybernetics ", projectile_type=/obj/item/projectile/ion, fire_sound='sound/effects/supermatter.ogg', fire_delay = 25, icon="stun", projectile_color = "#ff7f24"), @@ -36,8 +37,9 @@ can_dual = TRUE sel_mode = 1 suitable_cell = /obj/item/cell/small - charge_cost = 50 + charge_cost = 20 damage_multiplier = 1 + init_recoil = HANDGUN_RECOIL(0.2) matter = list(MATERIAL_PLASTEEL = 10, MATERIAL_PLASTIC = 8, MATERIAL_PLASMA = 2, MATERIAL_SILVER = 3, MATERIAL_URANIUM = 3) gun_tags = list(GUN_LASER, GUN_ENERGY)