mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
updated Cryptoplasm text
This commit is contained in:
parent
62d2426267
commit
0795dfee54
1 changed files with 7 additions and 6 deletions
|
|
@ -1,7 +1,6 @@
|
||||||
|
|
||||||
package mage.cards.c;
|
package mage.cards.c;
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.MageObject;
|
import mage.MageObject;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
|
|
@ -10,8 +9,8 @@ import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.SubType;
|
||||||
import mage.constants.TargetController;
|
import mage.constants.TargetController;
|
||||||
import mage.filter.common.FilterCreaturePermanent;
|
import mage.filter.common.FilterCreaturePermanent;
|
||||||
import mage.filter.predicate.permanent.AnotherPredicate;
|
import mage.filter.predicate.permanent.AnotherPredicate;
|
||||||
|
|
@ -20,6 +19,8 @@ import mage.game.permanent.Permanent;
|
||||||
import mage.target.common.TargetCreaturePermanent;
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
import mage.util.functions.ApplyToPermanent;
|
import mage.util.functions.ApplyToPermanent;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Loki
|
* @author Loki
|
||||||
*/
|
*/
|
||||||
|
|
@ -44,7 +45,7 @@ public final class Cryptoplasm extends CardImpl {
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Cryptoplasm(final Cryptoplasm card) {
|
private Cryptoplasm(final Cryptoplasm card) {
|
||||||
super(card);
|
super(card);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -57,12 +58,12 @@ public final class Cryptoplasm extends CardImpl {
|
||||||
|
|
||||||
class CryptoplasmEffect extends OneShotEffect {
|
class CryptoplasmEffect extends OneShotEffect {
|
||||||
|
|
||||||
public CryptoplasmEffect() {
|
CryptoplasmEffect() {
|
||||||
super(Outcome.Copy);
|
super(Outcome.Copy);
|
||||||
this.staticText = "you may have {this} become a copy of another target creature. If you do, {this} gains this ability";
|
this.staticText = "you may have {this} become a copy of another target creature, except it gains this ability";
|
||||||
}
|
}
|
||||||
|
|
||||||
public CryptoplasmEffect(final CryptoplasmEffect effect) {
|
private CryptoplasmEffect(final CryptoplasmEffect effect) {
|
||||||
super(effect);
|
super(effect);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue