mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Add hint to Gaea's Cradle
This commit is contained in:
parent
80cc908216
commit
585aa296ee
1 changed files with 7 additions and 1 deletions
|
@ -4,6 +4,8 @@ package mage.cards.g;
|
|||
import java.util.UUID;
|
||||
import mage.Mana;
|
||||
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
||||
import mage.abilities.hint.Hint;
|
||||
import mage.abilities.hint.ValueHint;
|
||||
import mage.abilities.mana.DynamicManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
@ -17,6 +19,10 @@ import mage.filter.StaticFilters;
|
|||
*/
|
||||
public final class GaeasCradle extends CardImpl {
|
||||
|
||||
private static final Hint hint = new ValueHint(
|
||||
"Number of creatures you control", new PermanentsOnBattlefieldCount(StaticFilters.FILTER_PERMANENT_CREATURE_CONTROLLED)
|
||||
);
|
||||
|
||||
public GaeasCradle(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
|
@ -26,7 +32,7 @@ public final class GaeasCradle extends CardImpl {
|
|||
Mana.GreenMana(1),
|
||||
new PermanentsOnBattlefieldCount(StaticFilters.FILTER_PERMANENT_CREATURE_CONTROLLED)
|
||||
);
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability.addHint(hint));
|
||||
}
|
||||
|
||||
private GaeasCradle(final GaeasCradle card) {
|
||||
|
|
Loading…
Reference in a new issue