mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
26 lines
325 B
Text
26 lines
325 B
Text
|
// These are merely renames of the Doom cards
|
||
|
|
||
|
class ChexBlueCard : BlueCard
|
||
|
{
|
||
|
Default
|
||
|
{
|
||
|
inventory.pickupmessage "$GOTCBLUEKEY";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class ChexYellowCard : YellowCard
|
||
|
{
|
||
|
Default
|
||
|
{
|
||
|
inventory.pickupmessage "$GOTCYELLOWKEY";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class ChexRedCard : RedCard
|
||
|
{
|
||
|
Default
|
||
|
{
|
||
|
inventory.pickupmessage "$GOTCREDKEY";
|
||
|
}
|
||
|
}
|