mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[FIN] Implement Cecil, Dark Knight / Cecil, Redeemed Paladin (#13445)
This commit is contained in:
parent
13e633f1ca
commit
9520a556c8
4 changed files with 152 additions and 1 deletions
|
|
@ -12,8 +12,12 @@ import mage.game.permanent.Permanent;
|
|||
public class TransformSourceEffect extends OneShotEffect {
|
||||
|
||||
public TransformSourceEffect() {
|
||||
this(false);
|
||||
}
|
||||
|
||||
public TransformSourceEffect(boolean it) {
|
||||
super(Outcome.Transform);
|
||||
staticText = "transform {this}";
|
||||
staticText = "transform " + (it ? "it" : "{this}");
|
||||
}
|
||||
|
||||
protected TransformSourceEffect(final TransformSourceEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue