mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
[CBL] Add ability to AncientSilverDragon. closes #9015
This commit is contained in:
parent
7643ff5597
commit
63b2df2af2
1 changed files with 4 additions and 1 deletions
|
@ -33,11 +33,14 @@ public final class AncientSilverDragon extends CardImpl {
|
|||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Whenever Ancient Silver Dragon deals combat damage to a player, roll a d20. Draw cards equal to the result. You have no maximum hand size for the rest of the game.
|
||||
// Whenever Ancient Silver Dragon deals combat damage to a player, roll a d20.
|
||||
// Draw cards equal to the result.
|
||||
// You have no maximum hand size for the rest of the game.
|
||||
Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(new AncientSilverDragonEffect(), false);
|
||||
ability.addEffect(new MaximumHandSizeControllerEffect(
|
||||
Integer.MAX_VALUE, Duration.EndOfGame, MaximumHandSizeControllerEffect.HandSizeModification.SET
|
||||
));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private AncientSilverDragon(final AncientSilverDragon card) {
|
||||
|
|
Loading…
Reference in a new issue