Removed unused code from Thassa God of the Sea.

This commit is contained in:
LevelX2 2013-09-04 17:21:04 +02:00
parent 4b2092f405
commit 91bb1c1de0

View file

@ -83,9 +83,6 @@ public class ThassaGodOfTheSea extends CardImpl<ThassaGodOfTheSea> {
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CantBeBlockedTargetEffect(Duration.EndOfTurn), new ManaCostsImpl("{1}{U}"));
ability.addTarget(new TargetControlledCreaturePermanent(true));
this.addAbility(ability);
}
public ThassaGodOfTheSea(final ThassaGodOfTheSea card) {
@ -97,19 +94,3 @@ public class ThassaGodOfTheSea extends CardImpl<ThassaGodOfTheSea> {
return new ThassaGodOfTheSea(this);
}
}
class ThassaGodOfTheSeaToken extends Token {
public ThassaGodOfTheSeaToken() {
super("Cleric", "2/1 white Cleric enchantment creature");
this.cardType.add(CardType.CREATURE);
this.cardType.add(CardType.ENCHANTMENT);
this.subtype.add("Cleric");
this.color.isWhite();
this.power = new MageInt(2);
this.toughness = new MageInt(1);
}
}