mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 20:40:30 +00:00
34 lines
473 B
Text
34 lines
473 B
Text
|
|
ACTOR RatBuddy
|
|
{
|
|
Health 5
|
|
Speed 13
|
|
Radius 10
|
|
Height 16
|
|
+NOBLOOD +FLOORCLIP +CANPASS
|
|
+ISMONSTER +INCOMBAT
|
|
MinMissileChance 150
|
|
MaxStepHeight 16
|
|
MaxDropoffHeight 32
|
|
Tag "$TAG_RATBUDDY"
|
|
SeeSound "rat/sight"
|
|
DeathSound "rat/death"
|
|
ActiveSound "rat/active"
|
|
States
|
|
{
|
|
Spawn:
|
|
RATT A 10 A_Look
|
|
Loop
|
|
See:
|
|
RATT AABB 4 A_Chase
|
|
Loop
|
|
Melee:
|
|
RATT A 8 A_Wander
|
|
RATT B 4 A_Wander
|
|
Goto See
|
|
Death:
|
|
MEAT Q 700
|
|
Stop
|
|
}
|
|
}
|
|
|