[SWS] Fixed wrong p/t of Trade Federation Battleship.

This commit is contained in:
LevelX2 2016-10-19 23:35:51 +02:00
parent a47aa158f0
commit cfb4eea267

View file

@ -62,10 +62,10 @@ public class TradeFederationBattleship extends CardImpl {
}
public TradeFederationBattleship(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{3}{W}{U}{B}");
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}{W}{U}{B}");
this.subtype.add("Starship");
this.power = new MageInt(2);
this.toughness = new MageInt(2);
this.power = new MageInt(0);
this.toughness = new MageInt(6);
// Spaceflight
this.addAbility(SpaceflightAbility.getInstance());