Classes:SkullRod

From ZDoom Wiki
Jump to navigation Jump to search
Note: Wait! Stop! You do not need to copy this actor's code into your project! Here's why:
  1. This actor is already defined in GZDoom, there's no reason to define it again.
  2. In fact, trying to define an actor with the same name will cause an error (because it already exists).
  3. If you want to make your own version of this actor, use inheritance.
  4. Definitions for existing actors are put on the wiki for reference purpose only.
Hellstaff
Actor type Weapon Game MiniHereticLogoIcon.png (Heretic)
DoomEd Number 2004 Class Name SkullRod
Spawn ID 30 Identifier T_SKULLROD


Classes: InventoryWeaponHereticWeaponSkullRod  →SkullRodPowered

The hellstaff is a rapid-fire weapon throwing a stream of red projectiles.

DECORATE definition

ACTOR SkullRod : HereticWeapon
{
  Weapon.SelectionOrder 200
  Weapon.AmmoUse1 1
  Weapon.AmmoGive1 50
  Weapon.YAdjust 15
  Weapon.AmmoType1 "SkullRodAmmo"
  Weapon.SisterWeapon "SkullRodPowered"
  Inventory.PickupMessage "$TXT_WPNSKULLROD"
  Tag "$TAG_SKULLROD"

  action native A_FireSkullRodPL1();

  States
  {
  Spawn:
    WSKL A -1
    Stop
  Ready:
    HROD A 1 A_WeaponReady
    Loop
  Deselect:
    HROD A 1 A_Lower
    Loop
  Select:
    HROD A 1 A_Raise
    Loop
  Fire:
    HROD AB 4 A_FireSkullRodPL1
    HROD B 0 A_ReFire
    Goto Ready
  }
}