mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
initial Friends forever
This commit is contained in:
@@ -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() {
|
||||
|
||||
@@ -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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user