gui, deck: reworked edh power level (close #5361, close #11732, related to #13341):

* added power level info in deck validation panel;
* added detail calculation info (hint with cards and their power levels);
* fixed that deck's edh power level ignore individual card's levels and used only commanders;
* removed outdated deck restrictions by commander colors;
* now players can really limit allowed decks by edh power level;
This commit is contained in:
Oleg Agafonov 2025-05-24 19:49:21 +04:00 committed by Failure
parent 0a243a19b8
commit cf7fe968c2
9 changed files with 235 additions and 76 deletions

View file

@ -174,7 +174,7 @@ public abstract class DeckValidator implements Serializable {
}
}
public int getEdhPowerLevel(Deck deck) {
public int getEdhPowerLevel(Deck deck, List<String> foundPowerCards, List<String> foundInfo) {
return 0;
}