Classes:GoldWand

From ZDoom Wiki

Jump to: navigation, search
Elvenwand
Actor type Weapon Game
DoomEd Number None 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

  action native A_FireGoldWandPL1();
  
  States
  {
  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
  }
}
Personal tools