1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-13 01:09:53 -09:00

[MH1] fixed Scale Up that it doesn't remove other creature types;

This commit is contained in:
Oleg Agafonov 2019-06-06 21:32:08 +04:00
parent 0e2cfb7def
commit bc95b4efb8

View file

@ -31,7 +31,7 @@ public final class ScaleUp extends CardImpl {
this.getSpellAbility().addEffect(new BecomesCreatureTargetEffect( this.getSpellAbility().addEffect(new BecomesCreatureTargetEffect(
new CreatureToken(6, 4, "green Wurm with base power and toughness 6/4") new CreatureToken(6, 4, "green Wurm with base power and toughness 6/4")
.withColor("G").withSubType(SubType.WURM), .withColor("G").withSubType(SubType.WURM),
false, false, Duration.EndOfTurn true, false, Duration.EndOfTurn
).setText("Until end of turn, target creature you control " + ).setText("Until end of turn, target creature you control " +
"becomes a green Wurm with base power and toughness 6/4.")); "becomes a green Wurm with base power and toughness 6/4."));
this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent()); this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent());