Classes:Doberman
From ECWolf Wiki
Note: Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:
|
Doberman | |||
---|---|---|---|
Actor type | Monster | Game | |
DoomEd Number | 95 | Class Name | Doberman |
Classes: Actor → WolfensteinMonster → Dog → Doberman
Overview
Alternative version of the Dog for the Spear of Destiny mission packs. Behaves the same as the parent, but is blue in appearance.
DECORATE Definition
actor Doberman : Dog 95 { AttackSound "doberman/attack" DeathSound "doberman/death" SecretDeathSound "doberman/crash" SeeSound "doberman/sight" states { Spawn: Path: DOBR A 10 NOP A_Chase DOBR A 2.5 DOBR B 7.5 NOP A_Chase DOBR C 10 NOP A_Chase DOBR C 2.5 DOBR D 7.5 NOP A_Chase loop Melee: DOBR EF 5 A_FaceTarget DOBR G 5 A_MeleeAttack(random(1,15)) DOBR EA 5 goto See See: DOBR A 5 NOP A_Chase DOBR A 1.5 DOBR B 4 NOP A_Chase DOBR C 5 NOP A_Chase DOBR C 1.5 DOBR D 4 NOP A_Chase loop Death: DOBR H 7.5 A_Fall DOBR I 7.5 A_Scream DOBR J 7.5 DOBR K -1 stop } }