mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
add TransformAbility to finalizeDFC
This commit is contained in:
parent
acdc774e40
commit
cb9f608fad
2 changed files with 2 additions and 2 deletions
|
|
@ -2,6 +2,7 @@ package mage.cards;
|
|||
|
||||
import mage.ObjectColor;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.keyword.TransformAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
|
|
@ -73,6 +74,7 @@ public abstract class TransformingDoubleFacedCard extends CardImpl {
|
|||
for (Ability ability : this.getLeftHalfCard().getAbilities()) {
|
||||
this.addAbility(ability);
|
||||
}
|
||||
this.addAbility(new TransformAbility());
|
||||
this.power = this.getLeftHalfCard().getPower().copy();
|
||||
this.toughness = this.getLeftHalfCard().getToughness().copy();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue