0
0
Fork 0
mirror of https://github.com/ZDoom/gzdoom.git synced 2025-03-02 23:52:25 +00:00
gzdoom/wadsrc/static/zscript/actors/shared/itemeffects.zs

37 lines
522 B
Text

/***************************************************************************/
//
// shown for respawning Doom and Strife items
//
/***************************************************************************/
class ItemFog : Actor
{
default
{
+NOBLOCKMAP
+NOGRAVITY
}
States
{
Spawn:
IFOG ABABCDE 6 BRIGHT;
Stop;
}
}
// Pickup flash -------------------------------------------------------------
class PickupFlash : Actor
{
default
{
+NOGRAVITY
}
States
{
Spawn:
ACLO DCDCBCBABA 3;
Stop;
}
}