Classes:GreenGuard
From ECWolf Wiki
Note: Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:
|
Green Guard | |||
---|---|---|---|
Actor type | Monster | Game | |
DoomEd Number | 93 | Class Name | GreenGuard |
Classes: Actor → WolfensteinMonster → Guard → GreenGuard
Overview
Alternate version of the Guard for the Spear of Destiny mission packs. Identical in behavior and similar in appearance to the parent, but wears a green uniform.
DECORATE Definition
actor GreenGuard : Guard 93 { AttackSound "greenguard/attack" DeathSound "greenguard/death" SecretDeathSound "greenguard/crash" SeeSound "greenguard/sight" DropItem "BlueClip" states { Spawn: GGRD A -1 NOP A_Look stop Path: GGRD B 10 NOP A_Chase GGRD B 2.5 GGRD C 7.5 NOP A_Chase GGRD D 10 NOP A_Chase GGRD D 2.5 GGRD E 7.5 NOP A_Chase loop See: GGRD B 5 NOP A_Chase GGRD B 1.5 GGRD C 4 NOP A_Chase GGRD D 5 NOP A_Chase GGRD D 1.5 GGRD E 4 NOP A_Chase loop Missile: GGRD FG 10 A_FaceTarget GGRD H 10 bright A_WolfAttack goto See Pain: GGRD I 5 A_JumpIf(health & 1, 1) goto See GGRD J 5 goto See Death: GGRD K 7.5 A_Fall GGRD L 7.5 A_Scream GGRD M 7.5 GGRD N -1 stop } }