()
| 1115 | } |
| 1116 | |
| 1117 | public final boolean isOnAdventure() { |
| 1118 | if (!isAdventureCard()) |
| 1119 | return false; |
| 1120 | if (!equals(getExiledWith())) |
| 1121 | return false; |
| 1122 | if (!CardStateName.Secondary.equals(getExiledWith().getCurrentStateName())) |
| 1123 | return false; |
| 1124 | if (!getExiledWith().getType().hasSubtype("Adventure")) { |
| 1125 | return false; |
| 1126 | } |
| 1127 | return true; |
| 1128 | } |
| 1129 | |
| 1130 | public final boolean isBackSide() { |
| 1131 | return backside; |
no test coverage detected