From 63b2df2af202a1bae6f3bd6a6a6921b999fd0cb5 Mon Sep 17 00:00:00 2001 From: Alex Vasile <48962821+Alex-Vasile@users.noreply.github.com> Date: Fri, 27 May 2022 19:33:07 -0600 Subject: [PATCH] [CBL] Add ability to AncientSilverDragon. closes #9015 --- Mage.Sets/src/mage/cards/a/AncientSilverDragon.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/a/AncientSilverDragon.java b/Mage.Sets/src/mage/cards/a/AncientSilverDragon.java index baebb4e30bb..16531882766 100644 --- a/Mage.Sets/src/mage/cards/a/AncientSilverDragon.java +++ b/Mage.Sets/src/mage/cards/a/AncientSilverDragon.java @@ -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) {