mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
b0f3121bec
- moved health items to their own file. - scriptified ScoreItem and MapRevealer whose entire functionality was a small TryPickup method. - fixed: bit fields in global variables were not correctly written. This should conclude the inventory cleanup. It is now possible again to find things in there.
37 lines
522 B
Text
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;
|
|
}
|
|
}
|
|
|