Identify if this is a primary natural weapon. @return true for a primary natural weapons, false if not natural or a secondary natural weapon.
()
| 348 | * @return true for a primary natural weapons, false if not natural or a secondary natural weapon. |
| 349 | */ |
| 350 | public boolean isPrimaryNaturalWeapon() |
| 351 | { |
| 352 | // The name is generated by the NATURALATTACKS token, so we place some trust in it. |
| 353 | return isNatural() && modifiedName().endsWith("Primary"); //$NON-NLS-1$ |
| 354 | } |
| 355 | |
| 356 | /** |
| 357 | * Gets the ranged attribute of the Equipment object |
no test coverage detected