MCPcopy Create free account
hub / github.com/PCGen/pcgen / isPrimaryNaturalWeapon

Method isPrimaryNaturalWeapon

code/src/java/pcgen/core/Equipment.java:350–354  ·  view source on GitHub ↗

Identify if this is a primary natural weapon. @return true for a primary natural weapons, false if not natural or a secondary natural weapon.

()

Source from the content-addressed store, hash-verified

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

Callers 2

Calls 2

isNaturalMethod · 0.95
modifiedNameMethod · 0.95

Tested by

no test coverage detected