Classes:MWeapFrost
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:
|
Frost shards spell | |||
---|---|---|---|
Actor type | Weapon | Game | ![]() |
DoomEd Number | 53 | Class Name | MWeapFrost |
Spawn ID | 36 | Identifier | MAGESHARDS |
Classes: Inventory→Weapon→MageWeapon→MWeapFrost
The Mage's second weapon, the Frost Shards spell uses 3 blue mana to spawn a wide cone of ice projectiles.
DECORATE definition
ACTOR MWeapFrost : MageWeapon { +BLOODSPLATTER Weapon.SelectionOrder 1700 Weapon.AmmoUse1 3 Weapon.AmmoGive1 25 Weapon.KickBack 150 Weapon.YAdjust 20 Weapon.AmmoType1 "Mana1" Inventory.PickupMessage "$TXT_WEAPON_M2" // "FROST SHARDS" Obituary "$OB_MPMWEAPFROST" Tag "$TAG_MWEAPFROST" action native A_FireConePL1(); States { Spawn: WMCS ABC 8 Bright Loop Select: CONE A 1 A_Raise Loop Deselect: CONE A 1 A_Lower Loop Ready: CONE A 1 A_WeaponReady Loop Fire: CONE B 3 CONE C 4 Hold: CONE D 3 CONE E 5 CONE F 3 A_FireConePL1 CONE G 3 CONE A 9 CONE A 10 A_ReFire Goto Ready } }