forked from External/mage
Double-faced cards support
This commit is contained in:
parent
ceb54518ed
commit
e7bb796d48
16 changed files with 847 additions and 500 deletions
|
|
@ -347,7 +347,22 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
|
|||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Override
|
||||
public boolean canTransform() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Card getSecondCardFace() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isNightCard() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Spell copy() {
|
||||
return new Spell(this);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue