39 lines
873 B
Text
39 lines
873 B
Text
// Unissix Crafts Blackfire Igniter (from UnSX 4, cut from initial SWWM GZ release)
|
|
// Slot 7, spawns shared with Biospark Carbine
|
|
|
|
Class BlackfireIgniter : SWWMWeapon
|
|
{
|
|
int clipcount;
|
|
bool hasaux[2];
|
|
int auxclipcount[2];
|
|
|
|
Property ClipCount : clipcount;
|
|
|
|
Default
|
|
{
|
|
//$Title Blackfire Igniter
|
|
//$Group Weapons
|
|
//$Sprite graphics/HUD/Icons/W_Blackfire.png
|
|
//$Icon weapon
|
|
Tag "$T_BLACKFIRE";
|
|
Inventory.PickupMessage "$T_BLACKFIRE";
|
|
Obituary "$O_BLACKFIRE";
|
|
SWWMWeapon.Tooltip "$TT_BLACKFIRE";
|
|
Inventory.Icon "graphics/HUD/Icons/W_Blackfire.png";
|
|
Weapon.SlotNumber 7;
|
|
Weapon.SlotPriority 2.;
|
|
Weapon.SelectionOrder 550;
|
|
Weapon.AmmoType1 "DarkCanister";
|
|
Weapon.AmmoGive1 1;
|
|
SWWMWeapon.DropAmmoType "DarkCanister";
|
|
BlackfireIgniter.ClipCount 1000;
|
|
Stamina 220000;
|
|
+SWWMWEAPON.NOFIRSTGIVE;
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
XZW1 A -1;
|
|
Stop;
|
|
}
|
|
}
|