mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-17 01:51:17 +00:00
961a6fe211
# Conflicts: # wadsrc/static/zscript.txt
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";
|
|
}
|
|
}
|