Classes:GoldWand

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.
Elvenwand
Actor type Weapon Game MiniHereticLogoIcon.png (Heretic)
DoomEd Number 9042 Class Name GoldWand


Classes: InventoryWeaponHereticWeaponGoldWand
 →GoldWandPowered


Corvus's elvenwand. It fires magical hitscan shots fairly quickly, but they are not very damaging. A magical equivalent to Doom's pistol.

DECORATE definition

ACTOR GoldWand : HereticWeapon
{
  +BLOODSPLATTER
  Weapon.SelectionOrder 2000
  Weapon.AmmoGive 25
  Weapon.AmmoUse 1
  Weapon.AmmoType "GoldWandAmmo"
  Weapon.SisterWeapon "GoldWandPowered"
  Weapon.YAdjust 5
  Inventory.PickupMessage "$TXT_WPNGOLDWAND" // "GOLD WAND"
  Obituary "$OB_MPGOLDWAND"
  Tag "$TAG_GOLDWAND"

  action native A_FireGoldWandPL1();

  States
  {
  Spawn:
    GWAN A -1
    Stop
  Ready:
    GWND A 1 A_WeaponReady
    Loop
  Deselect:
    GWND A 1 A_Lower
    Loop
  Select:
    GWND A 1 A_Raise
    Loop
  Fire:
    GWND B 3 
    GWND C 5 A_FireGoldWandPL1
    GWND D 3
    GWND D 0 A_ReFire
    Goto Ready
  }
}