mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Removed unused code from Thassa God of the Sea.
This commit is contained in:
parent
4b2092f405
commit
91bb1c1de0
1 changed files with 0 additions and 19 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue