forked from External/mage
[refactoring][minor] Replaced all tabs with four spaces.
This commit is contained in:
parent
e646e4768d
commit
239a4fb100
2891 changed files with 79411 additions and 79411 deletions
|
|
@ -40,28 +40,28 @@ import mage.game.command.Emblem;
|
|||
*/
|
||||
public class GetEmblemEffect extends OneShotEffect<GetEmblemEffect> {
|
||||
|
||||
private Emblem emblem;
|
||||
private Emblem emblem;
|
||||
|
||||
public GetEmblemEffect(Emblem emblem) {
|
||||
super(Outcome.Benefit);
|
||||
this.emblem = emblem;
|
||||
this.staticText = "You get an emblem with \"" + emblem.getAbilities().getRules(null) + "\"";
|
||||
}
|
||||
public GetEmblemEffect(Emblem emblem) {
|
||||
super(Outcome.Benefit);
|
||||
this.emblem = emblem;
|
||||
this.staticText = "You get an emblem with \"" + emblem.getAbilities().getRules(null) + "\"";
|
||||
}
|
||||
|
||||
public GetEmblemEffect(final GetEmblemEffect effect) {
|
||||
super(effect);
|
||||
this.emblem = effect.emblem;
|
||||
}
|
||||
public GetEmblemEffect(final GetEmblemEffect effect) {
|
||||
super(effect);
|
||||
this.emblem = effect.emblem;
|
||||
}
|
||||
|
||||
@Override
|
||||
public GetEmblemEffect copy() {
|
||||
return new GetEmblemEffect(this);
|
||||
}
|
||||
@Override
|
||||
public GetEmblemEffect copy() {
|
||||
return new GetEmblemEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
game.addEmblem(emblem, source);
|
||||
return true;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue