[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

@ -46,27 +46,27 @@ import mage.target.common.TargetCreatureOrPlayer;
*/
public class ProdigalPyromancer extends CardImpl<ProdigalPyromancer> {
public ProdigalPyromancer(UUID ownerId) {
super(ownerId, 221, "Prodigal Pyromancer", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{R}");
this.expansionSetCode = "10E";
this.subtype.add("Human");
this.subtype.add("Wizard");
this.color.setRed(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
public ProdigalPyromancer(UUID ownerId) {
super(ownerId, 221, "Prodigal Pyromancer", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{R}");
this.expansionSetCode = "10E";
this.subtype.add("Human");
this.subtype.add("Wizard");
this.color.setRed(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new TapSourceCost());
ability.addTarget(new TargetCreatureOrPlayer());
this.addAbility(ability);
}
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new TapSourceCost());
ability.addTarget(new TargetCreatureOrPlayer());
this.addAbility(ability);
}
public ProdigalPyromancer(final ProdigalPyromancer card) {
super(card);
}
public ProdigalPyromancer(final ProdigalPyromancer card) {
super(card);
}
@Override
public ProdigalPyromancer copy() {
return new ProdigalPyromancer(this);
}
@Override
public ProdigalPyromancer copy() {
return new ProdigalPyromancer(this);
}
}