mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
01441cd4f0
- Added string replacement option to obituary strings. - Changed lock and pickup message handling so that it is either a real string or a LANGUAGE identifier. The only reason I did the mixed format in the first place were Hexen's lock messages but they have been replaced by unique strings in the mean time so the feature isn't needed any more. - Added a flags parameter to TranslucentLine. - Extended the second arg of Line_SetIdentification to set not only ML_ZONEBOUNDARY but all 8 bits of the third byte in the flag word. This allows a relatively simple means of setting all the new flags directly. - Moved ML_ZONEBOUNDARY to doomdata.h so that it is in the same place as the other line flags. - Fixed: Strife's teleport swirl didn't loop its animation. - Fixed: Strife's rat is not supposed to be shootable. SVN r110 (trunk)
36 lines
517 B
Text
36 lines
517 B
Text
|
|
ACTOR RatBuddy 85
|
|
{
|
|
Game Strife
|
|
ConversationID 202, 196, 200
|
|
Health 5
|
|
Speed 13
|
|
Radius 10
|
|
Height 16
|
|
+NOBLOOD +FLOORCLIP +CANPASS
|
|
+ISMONSTER +INCOMBAT
|
|
MinMissileChance 150
|
|
MaxStepHeight 16
|
|
MaxDropoffHeight 32
|
|
Tag "rat_buddy"
|
|
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
|
|
}
|
|
}
|
|
|