mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Change tribal card type to kindred, update viashino and naga (#12271)
* change tribal card type to kindred * update viashino to lizard * update naga to snake
This commit is contained in:
parent
40a1fc6c23
commit
cdf91e66fb
177 changed files with 200 additions and 213 deletions
|
|
@ -533,10 +533,10 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
|
|||
return card.isBattle();
|
||||
}
|
||||
};
|
||||
private final CardTypeCounter tribalCounter = new CardTypeCounter() {
|
||||
private final CardTypeCounter kindredCounter = new CardTypeCounter() {
|
||||
@Override
|
||||
protected boolean is(CardView card) {
|
||||
return card.isTribal();
|
||||
return card.isKindred();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -549,7 +549,7 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
|
|||
planeswalkerCounter,
|
||||
sorceryCounter,
|
||||
battleCounter,
|
||||
tribalCounter
|
||||
kindredCounter
|
||||
};
|
||||
|
||||
// Listener
|
||||
|
|
@ -1914,8 +1914,8 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
|
|||
return planeswalkerCounter.get();
|
||||
case SORCERY:
|
||||
return sorceryCounter.get();
|
||||
case TRIBAL:
|
||||
return tribalCounter.get();
|
||||
case KINDRED:
|
||||
return kindredCounter.get();
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue