* K'rrik, Son of Yawgmoth - Fixe phyrexian mana like payment of mana costs (closes #6928 related to #6698).

This commit is contained in:
LevelX2 2020-08-03 19:17:07 +02:00
parent e9999de931
commit 244cf2a1e9
7 changed files with 160 additions and 70 deletions

View file

@ -932,10 +932,16 @@ public interface Player extends MageItem, Copyable<Player> {
List<Designation> getDesignations();
/**
* Set the mana colors the user can pay with 2 life instead
* @param colors
*/
void addPhyrexianToColors(FilterMana colors);
void removePhyrexianFromColors(FilterMana colors);
/**
* Mana colors the player can pay instead with 2 life
* @return
*/
FilterMana getPhyrexianColors();
}