Classes:Mace
Classes: Inventory→Weapon→HereticWeapon→Mace
→MacePowered
Note: Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:
|
Firemace | |||
---|---|---|---|
Actor type | Weapon | Game | ![]() |
DoomEd Number | None | Class Name | Mace |
Spawn ID | 31 | Identifier | T_MACE |
The firemace is Heretic's ultimate weapon, and may seem a bit disappointing as long as it isn't coupled with a tome of power. It fires a rapid stream of spheres which produce other spheres when bouncing on the ground. While its rate of fire is good, its projectiles are slow and have a limited range, and they harmlessly pass through enemies with the GHOST flag, or protected by a shadowsphere.
Contrarily to most other weapons, it cannot be placed directly on a map; instead one or several MaceSpawner things are placed, and there is a ~75% chance that a firemace will appear on a randomly-selected MaceSpawner.
DECORATE definition
ACTOR Mace : HereticWeapon { Weapon.SelectionOrder 1400 Weapon.AmmoUse 1 Weapon.AmmoGive1 50 Weapon.YAdjust 15 Weapon.AmmoType "MaceAmmo" Weapon.SisterWeapon "MacePowered" Inventory.PickupMessage "$TXT_WPNMACE" Tag "$TAG_MACE" action native A_FireMacePL1(); States { Spawn: WMCE A -1 Stop Ready: MACE A 1 A_WeaponReady Loop Deselect: MACE A 1 A_Lower Loop Select: MACE A 1 A_Raise Loop Fire: MACE B 4 Hold: MACE CDEF 3 A_FireMacePL1 MACE C 4 A_ReFire MACE DEFB 4 Goto Ready } }
This article is issued from Zdoom. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.