forked from External/mage
make Morph cost reduction a separate class (and fix to work with new system)
This commit is contained in:
parent
3f82c36813
commit
e7927cb50f
8 changed files with 49 additions and 67 deletions
|
|
@ -46,11 +46,12 @@ public enum SpellAbilityCastMode {
|
|||
if (this.equals(BESTOW)) {
|
||||
BestowAbility.becomeAura(cardCopy);
|
||||
}
|
||||
if (this.isTransformed){
|
||||
if (this.isTransformed) {
|
||||
Card tmp = card.getSecondCardFace();
|
||||
if (tmp != null) {
|
||||
cardCopy = tmp.copy();
|
||||
}
|
||||
}
|
||||
if (this.equals(MORPH)) {
|
||||
MorphAbility.setObjectToFaceDownCreature(cardCopy, game);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue