SPosAttack: Difference between revisions

From Eternity Wiki
Jump to navigationJump to search
(cat; removed thunk)
No edit summary
Line 1: Line 1:
Type: Monster attack, normal
{{Codepointer|description=
 
Causes a [[Doom Wiki:Sergeant|Sergeant]] shotgun attack.  
Purpose: Causes a [[Sergeant]] shotgun attack. If the object's target is valid, it will turn to face it, play the "shotgn" sound effect, and fire 3 tracers with [[monster accuracy]] for standard monster tracer damage of (rnd%5 + 1) * 3.
|usage='''SPosAttack'''
 
|notes=If the object's target is valid, it will turn to face it, play the <code>shotgn</code> sound effect, and fire 3 tracers with monster accuracy for standard monster tracer damage of <code>(rnd % 5 + 1) * 3</code> (3-15).
[[Category:Codepointers]]
|seealso=
*[[Doom Wiki:A_SPosAttack|A_SPosAttack]] on the Doom wiki
*[[BulletAttack]]
}}

Revision as of 13:18, 7 February 2021

Description

Causes a Sergeant shotgun attack.

Usage

SPosAttack

Parameters

No parameters.

Examples

No examples given.

Notes

If the object's target is valid, it will turn to face it, play the shotgn sound effect, and fire 3 tracers with monster accuracy for standard monster tracer damage of (rnd % 5 + 1) * 3 (3-15).

See also