Added text to ManaType constants.

This commit is contained in:
LevelX2 2013-09-04 17:15:51 +02:00
parent 3a1d687cf1
commit 4e23d49bd2
3 changed files with 21 additions and 3 deletions

View file

@ -56,6 +56,8 @@ public class Soilshaper extends CardImpl<Soilshaper> {
this.color.setGreen(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// Whenever you cast a Spirit or Arcane spell, target land becomes a 3/3 creature until end of turn. It's still a land.
Ability ability = new SpellCastControllerTriggeredAbility(new BecomesCreatureTargetEffect(new SoilshaperToken(), "land", Duration.EndOfTurn), filter, false);
ability.addTarget(new TargetLandPermanent());
this.addAbility(ability);