Changed text of IndestructibleAbility.

This commit is contained in:
LevelX2 2013-09-04 17:14:09 +02:00
parent 8c48383851
commit 40102af238
2 changed files with 7 additions and 1 deletions

View file

@ -57,13 +57,19 @@ public class BeastbreakerOfBalaGed extends LevelerCard<BeastbreakerOfBalaGed> {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// Level up {2}{G} ({2}{G}: Put a level counter on this. Level up only as a sorcery.)
this.addAbility(new LevelUpAbility(new ManaCostsImpl("{2}{G}")));
Abilities<Ability> levelAbilities = new AbilitiesImpl<Ability>();
levelAbilities.add(TrampleAbility.getInstance());
LevelerCardBuilder.construct(this,
// LEVEL 1-3
// 4/4
new LevelerCardBuilder.LevelAbility(1, 3, new AbilitiesImpl<Ability>(), 4, 4),
// LEVEL 1-3
// 4/4
// Trample
new LevelerCardBuilder.LevelAbility(4, -1, levelAbilities, 6, 6)
);
}

View file

@ -79,7 +79,7 @@ public class IndestructibleAbility extends StaticAbility<IndestructibleAbility>
@Override
public String getRule() {
return "{this} is indestructible.";
return "Indestructible";
}
}