[refactoring][minor] Replaced all tabs with four spaces.

This commit is contained in:
North 2012-06-19 23:50:20 +03:00
parent e646e4768d
commit 239a4fb100
2891 changed files with 79411 additions and 79411 deletions

View file

@ -44,25 +44,25 @@ import mage.cards.CardImpl;
*/
public class ReassemblingSkeleton extends CardImpl<ReassemblingSkeleton> {
public ReassemblingSkeleton(UUID ownerId) {
super(ownerId, 112, "Reassembling Skeleton", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{B}");
this.expansionSetCode = "M11";
this.subtype.add("Skeleton");
this.subtype.add("Warrior");
this.color.setBlack(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
public ReassemblingSkeleton(UUID ownerId) {
super(ownerId, 112, "Reassembling Skeleton", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{B}");
this.expansionSetCode = "M11";
this.subtype.add("Skeleton");
this.subtype.add("Warrior");
this.color.setBlack(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
this.addAbility(new SimpleActivatedAbility(Zone.GRAVEYARD, new ReturnSourceFromGraveyardToBattlefieldEffect(true), new ManaCostsImpl("{1}{B}")));
}
this.addAbility(new SimpleActivatedAbility(Zone.GRAVEYARD, new ReturnSourceFromGraveyardToBattlefieldEffect(true), new ManaCostsImpl("{1}{B}")));
}
public ReassemblingSkeleton(final ReassemblingSkeleton card) {
super(card);
}
public ReassemblingSkeleton(final ReassemblingSkeleton card) {
super(card);
}
@Override
public ReassemblingSkeleton copy() {
return new ReassemblingSkeleton(this);
}
@Override
public ReassemblingSkeleton copy() {
return new ReassemblingSkeleton(this);
}
}