forked from External/mage
Implement DFC tokens for Incubate (#10231)
* remove incubate skip * initial implementation of DFC tokens * separate incubator back face to separate class * small refactor to token copy function * token copies now have back faces as well * effects which modify token copies now correctly apply to both faces * add skip for exception * tokens now enter transformed correctly * [MOC] remove skip for incubate * fix verify failure
This commit is contained in:
parent
f8d23ff56b
commit
726e289646
30 changed files with 540 additions and 156 deletions
|
|
@ -2,6 +2,7 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageObject;
|
||||
import mage.ObjectColor;
|
||||
import mage.abilities.Ability;
|
||||
import mage.cards.Card;
|
||||
import mage.game.Game;
|
||||
|
|
@ -58,4 +59,14 @@ public interface Token extends MageObject {
|
|||
void setCopySourceCard(Card copySourceCard);
|
||||
|
||||
void setExpansionSetCodeForImage(String code);
|
||||
|
||||
Token getBackFace();
|
||||
|
||||
void setColor(ObjectColor color);
|
||||
|
||||
void clearManaCost();
|
||||
|
||||
void setEntersTransformed(boolean entersTransformed);
|
||||
|
||||
boolean isEntersTransformed();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue