foxygit / GZDoom Log in
commits tags

/wadsrc/static/zscript/actors/chex/chexkeys.zs · 325 B

raw
// 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";
	}
}