()
| 1694 | return hasKeyword(Keyword.DOUBLE_STRIKE); |
| 1695 | } |
| 1696 | public final boolean hasSecondStrike() { |
| 1697 | return hasDoubleStrike() || !hasFirstStrike(); |
| 1698 | } |
| 1699 | |
| 1700 | public final boolean hasSuspend() { |
| 1701 | return hasKeyword(Keyword.SUSPEND) && getLastKnownZone().is(ZoneType.Exile) |
nothing calls this directly
no test coverage detected