* is this item a rifle? * @return whether or not it is a rifle. */
| 787 | * @return whether or not it is a rifle. |
| 788 | */ |
| 789 | bool RuleItem::isRifle() const |
| 790 | { |
| 791 | return (_battleType == BT_FIREARM || _battleType == BT_MELEE) && _twoHanded; |
| 792 | } |
| 793 | |
| 794 | /** |
| 795 | * is this item a pistol? |