mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-17 17:41:23 +00:00
41 lines
573 B
Text
41 lines
573 B
Text
|
|
// Summoning Doll -----------------------------------------------------------
|
|
|
|
ACTOR SummoningDoll
|
|
{
|
|
Game Hexen
|
|
Speed 20
|
|
+NOBLOCKMAP +DROPOFF +MISSILE
|
|
+NOTELEPORT
|
|
|
|
action native A_Summon();
|
|
|
|
States
|
|
{
|
|
Spawn:
|
|
SUMN A 4
|
|
Loop
|
|
Death:
|
|
SUMN AA 4
|
|
SUMN A 4 A_Summon
|
|
Stop
|
|
}
|
|
}
|
|
|
|
// Minotaur Smoke -----------------------------------------------------------
|
|
|
|
ACTOR MinotaurSmoke
|
|
{
|
|
Game Hexen
|
|
+NOBLOCKMAP +NOGRAVITY
|
|
+NOTELEPORT
|
|
RenderStyle Translucent
|
|
Alpha 0.6
|
|
|
|
States
|
|
{
|
|
Spawn:
|
|
MNSM ABCDEFGHIJKLMNOPQ 3
|
|
Stop
|
|
}
|
|
}
|