Update 005

[Changed]
- Knife replaced by machete (now with 0 weight)
- Light vest now costs 50 instead of 100
- Horzine armor now costs 750 instead of 1000
- Dual pistols now have added spread of 500, same as SMGs
- Dual pistols now shoot 1.5 times as fast as single ones, instead of
double speed
- Shiver's health is set to the gorefast's level, but without 6-players
scaling
- Commando's passive reload speed bonus reduced from 30% to 15%
- Skill for commando "Perfect execution" no longer activates from Jasons
- Weapon for commando AK47: total ammo decreased from 270 to 240
- Weapon for commando Mkb42: total ammo increased from 240 to 270, delay
between shots decreased from 0.175 to 0.14
- Weapon for sharpshooter 9mm: perked decapitation mod increased from
0.5 to 0.6
- Weapon for sharpshooter MK23: delay between shots decreased from 0.35
to 0.3 seconds
[Fixed]
- Fixed bug that cause Benelli shotgun to deal 79 damage per pellet
instead of 63
- Fixed bug that caused dual magnums to deal less damage that single one
This commit is contained in:
Anton Tarasenko 2021-08-23 07:56:47 +07:00
commit d8689b9ca0
19 changed files with 39 additions and 34 deletions

View file

@ -4,7 +4,7 @@ defaultproperties
{
WeaponPickupClass=Class'NicePack.NiceAK47Pickup'
AmmoPickupAmount=30
MaxAmmo=270
MaxAmmo=240
InitialAmount=90
PickupClass=Class'NicePack.NiceAK47AmmoPickup'
IconMaterial=Texture'KillingFloorHUD.Generic.HUD'

View file

@ -4,7 +4,7 @@ defaultproperties
{
WeaponPickupClass=Class'NicePack.NiceMKb42Pickup'
AmmoPickupAmount=30
MaxAmmo=240
MaxAmmo=270
InitialAmount=60
PickupClass=Class'NicePack.NiceMKb42AmmoPickup'
IconMaterial=Texture'KillingFloorHUD.Generic.HUD'

View file

@ -23,7 +23,7 @@ defaultproperties
FireLoopAnim="Fire"
TweenTime=0.025000
FireForce="AssaultRifleFire"
FireRate=0.1750000
FireRate=0.140000
AmmoClass=Class'NicePack.NiceMKb42Ammo'
ShakeRotMag=(X=50.000000,Y=50.000000,Z=350.000000)
ShakeRotRate=(X=5000.000000,Y=5000.000000,Z=5000.000000)

View file

@ -5,7 +5,9 @@ defaultproperties
BloodSkinSwitchArray=0
BloodyMaterialRef="KF_Weapons_Trip_T.melee.machete_bloody_cmb"
bSpeedMeUp=True
Weight=1.000000
Weight=0.000000
bCanThrow=false
bKFNeverThrow=True
StandardDisplayFOV=70.000000
TraderInfoTexture=Texture'KillingFloorHUD.Trader_Weapon_Images.Trader_Machete'
bIsTier2Weapon=True

View file

@ -1,7 +1,7 @@
class NiceMachetePickup extends NiceWeaponPickup;
defaultproperties
{
Weight=1.000000
Weight=0.000000
cost=200
PowerValue=35
SpeedValue=56

View file

@ -2,7 +2,7 @@ class NiceDamType9mmPlus extends NiceDamageTypeVetSharpshooter
abstract;
defaultproperties
{
goodDecapMod=0.500000
goodDecapMod=0.600000
WeaponClass=Class'NicePack.Nice9mmPlus'
DeathString="%k killed %o (Beretta)."
FemaleSuicide="%o shot herself in the foot."

View file

@ -9,7 +9,9 @@ defaultproperties
NoAmmoSoundRef="KF_9MMSnd.9mm_DryFire"
DamageType=Class'NicePack.NiceDamType9mmPlus'
Momentum=10000.000000
bWaitForRelease=False
FireRate=0.125000
FireRate=0.167
Spread=500.0
SpreadStyle=SS_Random
bWaitForRelease=Flash2Emitter
AmmoClass=Class'NicePack.NiceDual9mmPlusAmmo'
}

View file

@ -12,7 +12,9 @@ defaultproperties
DamageMin=120
DamageMax=120
Momentum=20000.000000
FireRate=0.250000
FireRate=0.34
Spread=500.0
SpreadStyle=SS_Random
AmmoClass=Class'NicePack.NiceDualDeagleAmmo'
ShakeRotMag=(Z=400.000000)
ShakeRotRate=(X=12500.000000,Y=12500.000000)

View file

@ -11,7 +11,9 @@ defaultproperties
DamageMax=35
Momentum=18000.000000
bWaitForRelease=False
FireRate=0.087500
FireRate=0.117
Spread=500.0
SpreadStyle=SS_Random
AmmoClass=Class'NicePack.NiceDualGlockAmmo'
ShakeRotMag=(Z=290.000000)
ShakeRotRate=(X=10080.000000,Y=10080.000000)

View file

@ -14,7 +14,11 @@ defaultproperties
Momentum=18000.000000
NoAmmoSound=None
bWaitForRelease=False
FireRate=0.175000
FireAnimRate
FireAnimRate=1.5
FireRate=0.2
Spread=500.0
SpreadStyle=SS_Random
AmmoClass=Class'NicePack.NiceDualMK23Ammo'
ShakeRotMag=(Z=290.000000)
ShakeRotRate=(X=10080.000000,Y=10080.000000)

View file

@ -13,7 +13,8 @@ defaultproperties
Momentum=18000.000000
FireLoopAnim=
FireEndAnim=
FireRate=0.350000
FireAnimRate=1.5
FireRate=0.30000
bWaitForRelease=False
AmmoClass=Class'NicePack.NiceMK23Ammo'
ShakeRotMag=(Z=290.000000)

View file

@ -9,11 +9,13 @@ defaultproperties
StereoFireSoundRef="KF_RevolverSnd.Revolver_Fire_S"
NoAmmoSoundRef="KF_HandcannonSnd.50AE_DryFire"
DamageType=Class'NicePack.NiceDamTypeMagnumPistol'
DamageMin=61
DamageMax=61
DamageMin=82
DamageMax=82
Spread=500.0
SpreadStyle=SS_Random
Momentum=15000.000000
bWaitForRelease=False
FireRate=0.125000
FireRate=0.167
AmmoClass=Class'NicePack.NiceDualMagnumAmmo'
ShakeRotMag=(Z=400.000000)
ShakeRotRate=(X=12500.000000,Y=12500.000000)

View file

@ -7,6 +7,7 @@ defaultproperties
DamageType=Class'NicePack.NiceDamTypeBenelli'
FireAnimRate=1.000000
FireRate=0.200000
DamageMax=63
AmmoClass=Class'NicePack.NiceBenelliAmmo'
BotRefireRate=0.200000
}