2006-04-30 21:49:18 +00:00
|
|
|
|
|
|
|
Actor DoomKey : Key
|
|
|
|
{
|
|
|
|
Radius 20
|
|
|
|
Height 16
|
|
|
|
+NOTDMATCH
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blue key card ------------------------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
Actor BlueCard : DoomKey
|
2006-04-30 21:49:18 +00:00
|
|
|
{
|
|
|
|
Inventory.Pickupmessage "$GOTBLUECARD"
|
|
|
|
Inventory.Icon "STKEYS0"
|
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
|
|
|
BKEY A 10
|
|
|
|
BKEY B 10 bright
|
|
|
|
loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Yellow key card ----------------------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
Actor YellowCard : DoomKey
|
2006-04-30 21:49:18 +00:00
|
|
|
{
|
|
|
|
Inventory.Pickupmessage "$GOTYELWCARD"
|
|
|
|
Inventory.Icon "STKEYS1"
|
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
|
|
|
YKEY A 10
|
|
|
|
YKEY B 10 bright
|
|
|
|
loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Red key card -------------------------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
Actor RedCard : DoomKey
|
2006-04-30 21:49:18 +00:00
|
|
|
{
|
|
|
|
Inventory.Pickupmessage "$GOTREDCARD"
|
|
|
|
Inventory.Icon "STKEYS2"
|
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
|
|
|
RKEY A 10
|
|
|
|
RKEY B 10 bright
|
|
|
|
loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blue skull key -----------------------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
Actor BlueSkull : DoomKey
|
2006-04-30 21:49:18 +00:00
|
|
|
{
|
|
|
|
Inventory.Pickupmessage "$GOTBLUESKUL"
|
|
|
|
Inventory.Icon "STKEYS3"
|
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
|
|
|
BSKU A 10
|
|
|
|
BSKU B 10 bright
|
|
|
|
loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Yellow skull key ---------------------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
Actor YellowSkull : DoomKey
|
2006-04-30 21:49:18 +00:00
|
|
|
{
|
|
|
|
Inventory.Pickupmessage "$GOTYELWSKUL"
|
|
|
|
Inventory.Icon "STKEYS4"
|
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
|
|
|
YSKU A 10
|
|
|
|
YSKU B 10 bright
|
|
|
|
loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Red skull key ------------------------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
Actor RedSkull : DoomKey
|
2006-04-30 21:49:18 +00:00
|
|
|
{
|
|
|
|
Inventory.Pickupmessage "$GOTREDSKUL"
|
|
|
|
Inventory.Icon "STKEYS5"
|
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
|
|
|
RSKU A 10
|
|
|
|
RSKU B 10 bright
|
|
|
|
loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|