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 NiceHRL extends HRL;
defaultproperties
{ FireModeClass(0)=Class'NicePack.NiceHRLFire' PickupClass=Class'NicePack.NiceHRLPickup' ItemName="HRL-1 Rocket Launcher NW"
}

View file

@ -0,0 +1,4 @@
class NiceHRLFire extends HRLFire;
defaultproperties
{ ProjectileClass=Class'NicePack.NiceHRLProj'
}

View file

@ -0,0 +1,4 @@
class NiceHRLPickup extends HRLPickup;
defaultproperties
{ ItemName="HRL-1 Rocket Launcher NW" ItemShortName="HRL-1 NW" InventoryType=Class'NicePack.NiceHRL' PickupMessage="You got the HRL-1 Rocket Launcher NW"
}

View file

@ -0,0 +1,4 @@
class NiceHRLProj extends HRLProj;
defaultproperties
{ ArmDistSquared=180000.000000
}