mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 13:01:03 +00:00
45 lines
753 B
Text
45 lines
753 B
Text
|
// Super map ----------------------------------------------------------------
|
||
|
|
||
|
ACTOR SuperMap : MapRevealer 35
|
||
|
{
|
||
|
Game Heretic
|
||
|
SpawnID 137
|
||
|
+COUNTITEM
|
||
|
+INVENTORY.ALWAYSPICKUP
|
||
|
+FLOATBOB
|
||
|
Inventory.MaxAmount 0
|
||
|
Inventory.PickupMessage "$TXT_ITEMSUPERMAP"
|
||
|
States
|
||
|
{
|
||
|
Spawn:
|
||
|
SPMP A -1
|
||
|
Stop
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// Invisibility -------------------------------------------------------------
|
||
|
|
||
|
ACTOR ArtiInvisibility : PowerupGiver 75
|
||
|
{
|
||
|
Game Heretic
|
||
|
SpawnID 135
|
||
|
+COUNTITEM
|
||
|
+FLOATBOB
|
||
|
+INVENTORY.PICKUPFLASH
|
||
|
RenderStyle Translucent
|
||
|
Alpha 0.4
|
||
|
Inventory.RespawnTics 4230
|
||
|
Inventory.Icon ARTIINVS
|
||
|
Powerup.Type Ghost
|
||
|
Inventory.PickupMessage "$TXT_ARTIINVISIBILITY"
|
||
|
States
|
||
|
{
|
||
|
Spawn:
|
||
|
INVS A 350 Bright
|
||
|
Loop
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|