swwmgz_m/zscript/dlc/swwm_notashotgun.zsc
Marisa Kirisame 90ca4e4838 Golden shells won't spawn if players have a full supply.
Tweak ammo max amounts.
Embiggener max amount halved back to 8.
Embiggeners now increase ammo capacity by a factor relative to BackpackMaxAmount, rather than a fixed increase.
Credits now show the mod's alt title (UnSX Gaiden: Demolitionist).
Added compatibility tweaks to Okuplok and Holy Hell Revealed.
2020-12-04 13:19:43 +01:00

34 lines
682 B
Text

// Kmonn Shuna Quadravol (from UnSX series, not a Quadshot reskin anymore)
// Slot 6, spawns shared with Hellblazer
Class Quadravol : SWWMWeapon
{
int clipcount;
int extracharge;
Property ClipCount : clipcount;
Default
{
Tag "$T_QUADRAVOL";
Inventory.PickupMessage "$I_QUADRAVOL";
Obituary "$O_QUADRAVOL";
Inventory.Icon "graphics/HUD/Icons/W_Quadravol.png";
Weapon.SlotNumber 6;
Weapon.SlotPriority 2.;
Weapon.SelectionOrder 650;
Weapon.AmmoType1 "QuadAmmo";
Weapon.AmmoGive1 1;
SWWMWeapon.DropAmmoType "QuadAmmo";
Quadravol.ClipCount 4;
Stamina 80000;
+SWWMWEAPON.NOFIRSTGIVE;
+WEAPON.EXPLOSIVE;
}
States
{
Spawn:
XZW1 A -1;
Stop;
}
}