mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
Changed text of IndestructibleAbility.
This commit is contained in:
parent
8c48383851
commit
40102af238
2 changed files with 7 additions and 1 deletions
|
@ -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)
|
||||
);
|
||||
}
|
||||
|
|
|
@ -79,7 +79,7 @@ public class IndestructibleAbility extends StaticAbility<IndestructibleAbility>
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "{this} is indestructible.";
|
||||
return "Indestructible";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue