mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
add back effect text
This commit is contained in:
parent
7d821ef922
commit
15cecf5acb
1 changed files with 4 additions and 4 deletions
|
|
@ -31,7 +31,7 @@ import java.util.UUID;
|
||||||
*/
|
*/
|
||||||
public final class RunadiBehemothCaller extends CardImpl {
|
public final class RunadiBehemothCaller extends CardImpl {
|
||||||
|
|
||||||
private static final FilterPermanent filter = new FilterControlledCreaturePermanent("creatures with three or more +1/+1 counters on them");
|
private static final FilterPermanent filter = new FilterControlledCreaturePermanent("creatures you control with three or more +1/+1 counters on them");
|
||||||
|
|
||||||
private static final FilterSpell filterSpell = new FilterSpell("a creature spell with mana value 5 or greater");
|
private static final FilterSpell filterSpell = new FilterSpell("a creature spell with mana value 5 or greater");
|
||||||
|
|
||||||
|
|
@ -54,10 +54,9 @@ public final class RunadiBehemothCaller extends CardImpl {
|
||||||
this.addAbility(new SpellCastControllerTriggeredAbility(new RunadiBehemothCallerCounterEffect(), filterSpell,
|
this.addAbility(new SpellCastControllerTriggeredAbility(new RunadiBehemothCallerCounterEffect(), filterSpell,
|
||||||
false, SetTargetPointer.SPELL));
|
false, SetTargetPointer.SPELL));
|
||||||
|
|
||||||
// Creature you control with three or more +1/+1 counters on them have haste.
|
// Creatures you control with three or more +1/+1 counters on them have haste.
|
||||||
this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect(
|
this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect(
|
||||||
HasteAbility.getInstance(), Duration.WhileOnBattlefield, filter
|
HasteAbility.getInstance(), Duration.WhileOnBattlefield, filter)));
|
||||||
).setText("creatures you control with three or more +1/+1 counters on them have haste")));
|
|
||||||
|
|
||||||
// {T}: Add {G}.
|
// {T}: Add {G}.
|
||||||
this.addAbility(new GreenManaAbility());
|
this.addAbility(new GreenManaAbility());
|
||||||
|
|
@ -78,6 +77,7 @@ class RunadiBehemothCallerCounterEffect extends ReplacementEffectImpl {
|
||||||
|
|
||||||
RunadiBehemothCallerCounterEffect() {
|
RunadiBehemothCallerCounterEffect() {
|
||||||
super(Duration.EndOfTurn, Outcome.BoostCreature);
|
super(Duration.EndOfTurn, Outcome.BoostCreature);
|
||||||
|
this.staticText = "that creature enters the battlefield with X additional +1/+1 counters on it, where X is its mana value minus 4";
|
||||||
}
|
}
|
||||||
|
|
||||||
private RunadiBehemothCallerCounterEffect(final RunadiBehemothCallerCounterEffect effect) {
|
private RunadiBehemothCallerCounterEffect(final RunadiBehemothCallerCounterEffect effect) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue