Revert weapon conversion

This patch reverts first step of global weapon conversion
that would have halted the release of the next version for too long.
This commit is contained in:
Anton Tarasenko 2020-04-17 23:06:41 +07:00
commit 12d95e387e
757 changed files with 10788 additions and 4046 deletions

View file

@ -0,0 +1,4 @@
class NiceCZ805M extends CZ805M;
defaultproperties
{ FireModeClass(0)=Class'NicePack.NiceCZ805MFire' FireModeClass(1)=Class'NicePack.NiceCZ805MAltFire' PickupClass=Class'NicePack.NiceCZ805MPickup' ItemName="CZ-805M Medic/Assault Rifle NW"
}

View file

@ -0,0 +1,4 @@
class NiceCZ805MAltFire extends CZ805MAltFire;
defaultproperties
{ ProjectileClass=Class'NicePack.NiceCZ805MHealingProjectile'
}

View file

@ -0,0 +1,4 @@
class NiceCZ805MAmmo extends CZ805MAmmo;
defaultproperties
{ MaxAmmo=300 InitialAmount=150 PickupClass=Class'NicePack.NiceCZ805MAmmoPickup'
}

View file

@ -0,0 +1,4 @@
class NiceCZ805MAmmoPickup extends CZ805MAmmoPickup;
defaultproperties
{ InventoryType=Class'NicePack.NiceCZ805MAmmo'
}

View file

@ -0,0 +1,4 @@
class NiceCZ805MFire extends CZ805MFire;
defaultproperties
{ maxVerticalRecoilAngle=270 maxHorizontalRecoilAngle=135 DamageType=Class'NicePack.NiceDamTypeCZ805M' DamageMax=40 AmmoClass=Class'NicePack.NiceCZ805MAmmo'
}

View file

@ -0,0 +1,4 @@
class NiceCZ805MHealingProjectile extends CZ805MHealingProjectile;
defaultproperties
{ HealBoostAmount=20
}

View file

@ -0,0 +1,4 @@
class NiceCZ805MPickup extends CZ805MPickup;
defaultproperties
{ cost=2500 BuyClipSize=30 Description="Horzine's modification of CZ-805 BREN rifle with attached healing dart launcher. Useful for both Medic and Commando perks." ItemName="CZ-805M NW" ItemShortName="CZ-805M NW" InventoryType=Class'NicePack.NiceCZ805M' PickupMessage="You got the CZ-805M NW"
}

View file

@ -0,0 +1,5 @@
class NiceDamTypeCZ805M extends NiceDamageTypeVetCommando
abstract;
defaultproperties
{ HeadShotDamageMult=1.500000 WeaponClass=Class'NicePack.NiceCZ805M' DeathString="%k killed %o (CZ 805)." FemaleSuicide="%o shot herself in the foot." MaleSuicide="%o shot himself in the foot." bRagdollBullet=True KDamageImpulse=5500.000000 KDeathVel=175.000000 KDeathUpKick=20.000000
}