[BRO] Implemented Gix, Yawgmoth Praetor (#9765)

* [BRO] Implemented Gix, Yawgmoth Praetor

* Add missing TestPlayer, PlayerStub implementations
This commit is contained in:
Daniel Bomar 2023-04-23 10:49:52 -05:00 committed by GitHub
parent 89687b305a
commit 92b6d7a531
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 280 additions and 15 deletions

View file

@ -5127,6 +5127,11 @@ public abstract class PlayerImpl implements Player, Serializable {
return this.phyrexianColors;
}
@Override
public ActivatedAbility chooseLandOrSpellAbility(Card card, Game game, boolean noMana) {
return card.getSpellAbility();
}
@Override
public SpellAbility chooseAbilityForCast(Card card, Game game, boolean noMana) {
return card.getSpellAbility();