From 338dca92b3aa1acac628584bc6432846f69d314f Mon Sep 17 00:00:00 2001 From: Fikou Date: Sat, 5 Oct 2019 19:22:16 +0200 Subject: [PATCH] meteorslugs now knockdown instead of stunning (#46763) * h * meh why not * ok bobby --- code/modules/projectiles/projectile/bullets/shotgun.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/projectile/bullets/shotgun.dm b/code/modules/projectiles/projectile/bullets/shotgun.dm index 5c6e0f50205..33f7ffc6e12 100644 --- a/code/modules/projectiles/projectile/bullets/shotgun.dm +++ b/code/modules/projectiles/projectile/bullets/shotgun.dm @@ -29,8 +29,9 @@ name = "meteorslug" icon = 'icons/obj/meteor.dmi' icon_state = "dust" - damage = 20 - paralyze = 80 + damage = 30 + paralyze = 15 + knockdown = 80 hitsound = 'sound/effects/meteorimpact.ogg' /obj/item/projectile/bullet/shotgun_meteorslug/on_hit(atom/target, blocked = FALSE)