initial Friends forever

This commit is contained in:
Northmoc
2021-10-15 15:17:41 -04:00
parent e499d9bed8
commit 80171918dd
5 changed files with 9 additions and 3 deletions

View File

@@ -228,7 +228,8 @@ public final class CardRules implements ICardCharacteristics {
}
public boolean canBePartnerCommander() {
return canBeCommander() && (hasKeyword("Partner") || !this.partnerWith.isEmpty());
return canBeCommander() && (hasKeyword("Partner") || !this.partnerWith.isEmpty() ||
hasKeyword("Friends forever"));
}
public boolean canBeOathbreaker() {

View File

@@ -259,6 +259,9 @@ public enum DeckFormat {
} else if (a.getName().equals(b.getRules().getPartnerWith())
&& b.getName().equals(a.getRules().getPartnerWith())) {
// paired partner commander
} else if (a.getRules().hasKeyword("Friends forever") &&
b.getRules().hasKeyword("Friends forever")) {
// Stranger Things Secret Lair gimmick partner commander
} else {
return "has an illegal commander partnership";
}