mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
* Necrogenesis and Thrive - Fixed tooltip texts.
This commit is contained in:
parent
025c5bf5d8
commit
4d283993e6
2 changed files with 5 additions and 5 deletions
|
|
@ -30,6 +30,7 @@ package mage.sets.prophecy;
|
|||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.SpellAbility;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
|
|
@ -49,7 +50,9 @@ public class Thrive extends CardImpl {
|
|||
this.expansionSetCode = "PCY";
|
||||
|
||||
// Put a +1/+1 counter on each of X target creatures.
|
||||
this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance()));
|
||||
Effect effect = new AddCountersTargetEffect(CounterType.P1P1.createInstance());
|
||||
effect.setText("Put a +1/+1 counter on each of X target creatures");
|
||||
this.getSpellAbility().addEffect(effect);
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 1));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,12 +51,9 @@ public class Necrogenesis extends CardImpl {
|
|||
super(ownerId, 181, "Necrogenesis", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{B}{G}");
|
||||
this.expansionSetCode = "ALA";
|
||||
|
||||
this.color.setGreen(true);
|
||||
this.color.setBlack(true);
|
||||
|
||||
// {2}: Exile target creature card from a graveyard. Put a 1/1 green Saproling creature token onto the battlefield.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ExileTargetEffect(), new GenericManaCost(2));
|
||||
ability.addTarget(new TargetCardInGraveyard(new FilterCreatureCard()));
|
||||
ability.addTarget(new TargetCardInGraveyard(new FilterCreatureCard("creature card from a graveyard")));
|
||||
ability.addEffect(new CreateTokenEffect(new SaprolingToken()));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue