File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Mage.Sets/src/mage/cards/c Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 7
7
import mage .abilities .common .EntersBattlefieldTappedAbility ;
8
8
import mage .abilities .costs .common .TapSourceCost ;
9
9
import mage .abilities .costs .mana .GenericManaCost ;
10
+ import mage .abilities .dynamicvalue .DynamicValue ;
10
11
import mage .abilities .dynamicvalue .common .CardsInControllerGraveyardCount ;
12
+ import mage .abilities .hint .ValueHint ;
11
13
import mage .abilities .mana .BlackManaAbility ;
12
14
import mage .abilities .mana .DynamicManaAbility ;
13
15
import mage .cards .CardImpl ;
@@ -36,8 +38,10 @@ public CryptOfAgadeem(UUID ownerId, CardSetInfo setInfo) {
36
38
// {T}: Add {B}.
37
39
this .addAbility (new BlackManaAbility ());
38
40
// {2}, {T}: Add {B} for each black creature card in your graveyard.
39
- DynamicManaAbility ability = new DynamicManaAbility (Mana .BlackMana (1 ), new CardsInControllerGraveyardCount (filter ), new GenericManaCost (2 ));
41
+ DynamicValue blackCardsInGraveyard = new CardsInControllerGraveyardCount (filter );
42
+ DynamicManaAbility ability = new DynamicManaAbility (Mana .BlackMana (1 ), blackCardsInGraveyard , new GenericManaCost (2 ));
40
43
ability .addCost (new TapSourceCost ());
44
+ ability .addHint (new ValueHint ("Black creature cards in your graveyard" , blackCardsInGraveyard ));
41
45
this .addAbility (ability );
42
46
}
43
47
You can’t perform that action at this time.
0 commit comments