From 07d9fdf1c34b787068c06ad6538f8fc365672aff Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Tue, 21 Apr 2020 13:59:10 +0700 Subject: [PATCH] Nerf Nailgun by removing penetration from altfire --- .../Playable/Shotguns/Nailgun/NiceDamTypeNailGunWeak.uc | 6 ++++++ .../Weapons/Playable/Shotguns/Nailgun/NiceNailGunAltFire.uc | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 sources/Weapons/Playable/Shotguns/Nailgun/NiceDamTypeNailGunWeak.uc diff --git a/sources/Weapons/Playable/Shotguns/Nailgun/NiceDamTypeNailGunWeak.uc b/sources/Weapons/Playable/Shotguns/Nailgun/NiceDamTypeNailGunWeak.uc new file mode 100644 index 0000000..fdc7d50 --- /dev/null +++ b/sources/Weapons/Playable/Shotguns/Nailgun/NiceDamTypeNailGunWeak.uc @@ -0,0 +1,6 @@ +class NiceDamTypeNailGunWeak extends NiceDamTypeNailGun + abstract; +defaultproperties +{ + MaxPenetrations=0 +} \ No newline at end of file diff --git a/sources/Weapons/Playable/Shotguns/Nailgun/NiceNailGunAltFire.uc b/sources/Weapons/Playable/Shotguns/Nailgun/NiceNailGunAltFire.uc index 322fc19..ab9300f 100644 --- a/sources/Weapons/Playable/Shotguns/Nailgun/NiceNailGunAltFire.uc +++ b/sources/Weapons/Playable/Shotguns/Nailgun/NiceNailGunAltFire.uc @@ -3,6 +3,7 @@ defaultproperties { bCanFireIncomplete=True ProjectileSpeed=3500.000000 + DamageType=Class'NicePack.NiceDamTypeNailGunWeak' AmmoPerFire=7 SpreadStyle=SS_Random -} +} \ No newline at end of file