mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 13:01:03 +00:00
25 lines
325 B
Text
25 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";
|
|
}
|
|
}
|