mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
Added missing ferocious hints
This commit is contained in:
parent
3d998a85b8
commit
195bca0aa5
2 changed files with 6 additions and 3 deletions
|
@ -4,15 +4,16 @@ import mage.abilities.common.SimpleStaticAbility;
|
|||
import mage.abilities.condition.common.FerociousCondition;
|
||||
import mage.abilities.effects.common.ChooseNewTargetsTargetEffect;
|
||||
import mage.abilities.effects.common.cost.SpellCostReductionSourceEffect;
|
||||
import mage.abilities.hint.common.FerociousHint;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterStackObject;
|
||||
import mage.filter.predicate.mageobject.NumberOfTargetsPredicate;
|
||||
import mage.target.TargetStackObject;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.filter.FilterStackObject;
|
||||
import mage.target.TargetStackObject;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
|
@ -31,7 +32,7 @@ public final class BoltBend extends CardImpl {
|
|||
// This spell costs {3} less to cast if you control a creature with power 4 or greater.
|
||||
this.addAbility(new SimpleStaticAbility(
|
||||
Zone.STACK, new SpellCostReductionSourceEffect(3, FerociousCondition.instance)
|
||||
).setRuleAtTheTop(true));
|
||||
).setRuleAtTheTop(true).addHint(FerociousHint.instance));
|
||||
|
||||
// Change the target of target spell or ability with a single target.
|
||||
this.getSpellAbility().addEffect(new ChooseNewTargetsTargetEffect(true, true));
|
||||
|
|
|
@ -6,6 +6,7 @@ import mage.abilities.decorator.ConditionalOneShotEffect;
|
|||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
|
||||
import mage.abilities.hint.common.FerociousHint;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
@ -50,6 +51,7 @@ public final class TheFirstIroanGames extends CardImpl {
|
|||
"if you control a creature with power 4 or greater, draw two cards"
|
||||
)
|
||||
);
|
||||
sagaAbility.addHint(FerociousHint.instance);
|
||||
|
||||
// IV — Create a Gold token.
|
||||
sagaAbility.addChapterEffect(
|
||||
|
|
Loading…
Reference in a new issue