mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-17 01:32:19 +00:00
9df27c7afd
supported games in any game being played. - Changed Chex Quest DoomEdNum initilization so that all empty slots are filled with Doom actors if they exist. - Added missing spawn filters to Chex Quest items. SVN r1191 (trunk)
67 lines
974 B
Text
67 lines
974 B
Text
// Same as Doom weapons, but the obituaries are removed.
|
|
|
|
actor Bootspoon : Fist
|
|
{
|
|
game Chex
|
|
obituary ""
|
|
}
|
|
|
|
actor SuperBootspork : Chainsaw 2005
|
|
{
|
|
game Chex
|
|
obituary ""
|
|
}
|
|
|
|
actor MiniZorcher : Pistol
|
|
{
|
|
game Chex
|
|
obituary ""
|
|
inventory.pickupmessage "$GOTMINIZORCHER"
|
|
states
|
|
{
|
|
Spawn:
|
|
stop
|
|
}
|
|
}
|
|
|
|
actor LargeZorcher : Shotgun 2001
|
|
{
|
|
game Chex
|
|
obituary ""
|
|
inventory.pickupmessage "$GOTLARGEZORCHER"
|
|
}
|
|
|
|
actor SuperLargeZorcher : SuperShotgun 82
|
|
{
|
|
game Chex
|
|
obituary ""
|
|
inventory.pickupmessage "$GOTSUPERLARGEZORCHER"
|
|
}
|
|
|
|
actor RapidZorcher : Chaingun 2002
|
|
{
|
|
game Chex
|
|
obituary ""
|
|
inventory.pickupmessage "$GOTRAPIDZORCHER"
|
|
}
|
|
|
|
actor ZorchPropulsor : RocketLauncher 2003
|
|
{
|
|
game Chex
|
|
obituary ""
|
|
inventory.pickupmessage "$GOTZORCHPROPULSOR"
|
|
}
|
|
|
|
actor PhasingZorcher : PlasmaRifle 2004
|
|
{
|
|
game Chex
|
|
obituary ""
|
|
inventory.pickupmessage "$GOTPHASINGZORCHER"
|
|
}
|
|
|
|
actor LAZDevice : BFG9000 2006
|
|
{
|
|
game Chex
|
|
obituary ""
|
|
inventory.pickupmessage "$GOTLAZDEVICE"
|
|
}
|