2011-09-23 08:23:51 +00:00
|
|
|
// The Doom and Heretic players are not excluded from pickup in case
|
|
|
|
// somebody wants to use these weapons with either of those games.
|
|
|
|
|
2008-08-09 11:35:42 +00:00
|
|
|
ACTOR FighterWeapon : Weapon native
|
|
|
|
{
|
|
|
|
Weapon.Kickback 150
|
2011-09-23 08:23:51 +00:00
|
|
|
Inventory.ForbiddenTo ClericPlayer, MagePlayer
|
2008-08-09 11:35:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR ClericWeapon : Weapon native
|
|
|
|
{
|
|
|
|
Weapon.Kickback 150
|
2011-09-23 08:23:51 +00:00
|
|
|
Inventory.ForbiddenTo FighterPlayer, MagePlayer
|
2008-08-09 11:35:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR MageWeapon : Weapon native
|
|
|
|
{
|
|
|
|
Weapon.Kickback 150
|
2011-09-23 08:23:51 +00:00
|
|
|
Inventory.ForbiddenTo FighterPlayer, ClericPlayer
|
2008-08-09 11:35:42 +00:00
|
|
|
}
|