swwmgz_m/zscript/dlc1/swwm_rebolber.zsc

32 lines
673 B
Text

// Blackmann Arms "Puntzer Beta" SMW.05 Revolver (planned for unreleased SWWM Iridium)
// Slot 3, spawns shared with Spreadgun
Class PuntzerBeta : SWWMWeapon
{
int bullets[6];
int rotation;
bool initialized;
Default
{
Tag "$T_PUNTZERBETA";
Inventory.PickupMessage "$I_PUNTZERBETA";
Obituary "$O_PUNTZERBETA";
SWWMWeapon.Tooltip "$TT_PUNTZERBETA";
SWWMWeapon.GetLine "getpuntzerbeta";
Weapon.SlotNumber 3;
Weapon.SlotPriority 2.;
Weapon.SelectionOrder 450;
Weapon.AmmoType1 "SMW05Ammo";
Weapon.AmmoGive1 6;
SWWMWeapon.DropAmmoType "SWWMShellAmmoSmall";
Stamina 10000;
+SWWMWEAPON.NOFIRSTGIVE;
}
States
{
Spawn:
XZW1 A -1;
Stop;
}
}