mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 20:40:30 +00:00
30685c3a74
SVN r1177 (trunk)
34 lines
520 B
Text
34 lines
520 B
Text
|
|
// Oracle -------------------------------------------------------------------
|
|
|
|
ACTOR Oracle 199 native
|
|
{
|
|
Game Strife
|
|
ConversationID 65, 62, 63
|
|
Health 1
|
|
Radius 15
|
|
Height 56
|
|
Monster
|
|
+NOTDMATCH
|
|
DamageFactor "Fire", 0.5
|
|
MaxDropoffHeight 32
|
|
Tag "Oracle"
|
|
DropItem "Meat"
|
|
|
|
action native A_WakeOracleSpectre ();
|
|
|
|
States
|
|
{
|
|
Spawn:
|
|
ORCL A -1
|
|
Stop
|
|
Death:
|
|
ORCL BCDEFGHIJK 5
|
|
ORCL L 5 A_NoBlocking
|
|
ORCL M 5
|
|
ORCL N 5 A_WakeOracleSpectre
|
|
ORCL OP 5
|
|
ORCL Q -1
|
|
Stop
|
|
}
|
|
}
|