Classes:PunchDagger

From ZDoom Wiki

Jump to: navigation, search
Punch dagger
Actor type Weapon Game
DoomEd Number None Class Name PunchDagger

Classes: InventoryWeaponStrifeWeaponPunchDagger

The Strife Rebel's default weapon. This weapon is generally similar to the Doom fist, with the exception that Stamina Upgrades increase the damage dealt.

DECORATE definition

ACTOR PunchDagger : StrifeWeapon
{
  Weapon.SelectionOrder 3900
  +WEAPON.NOALERT
  
  action native A_JabDagger ();
  
  States
  {
  Ready:
    PNCH A 1 A_WeaponReady
    Loop
  Deselect:
    PNCH A 1 A_Lower
    Loop
  Select:
    PNCH A 1 A_Raise
    Loop
  Fire:
    PNCH B 4
    PNCH C 4 A_JabDagger
    PNCH D 5
    PNCH C 4
    PNCH B 5 A_ReFire
    Goto Ready
  }
}
Personal tools