1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-13 01:09:53 -09:00

fixed some outdated token text

This commit is contained in:
Evan Kranzler 2021-03-05 10:54:15 -05:00
parent 712cf4576d
commit 622d13484f
4 changed files with 7 additions and 8 deletions

View file

@ -36,7 +36,7 @@ public final class KeeperOfTheBeasts extends CardImpl {
this.toughness = new MageInt(2);
// {G}, {tap}: Choose target opponent who controlled more creatures than you did as you activated this ability. Put a 2/2 green Beast creature token onto the battlefield.
Ability ability = new SimpleActivatedAbility(new CreateTokenEffect(new BeastToken4()).setText("Choose target opponent who controlled more creatures than you did as you activated this ability. Put a 2/2 green Beast creature token onto the battlefield."),
Ability ability = new SimpleActivatedAbility(new CreateTokenEffect(new BeastToken4()).setText("Choose target opponent who controlled more creatures than you did as you activated this ability. Create a 2/2 green Beast creature token."),
new ManaCostsImpl("{G}"));
ability.addCost(new TapSourceCost());
ability.addTarget(new KeeperOfTheBeastsTarget());

View file

@ -60,7 +60,7 @@ class MyrIncubatorEffect extends SearchEffect {
MyrIncubatorEffect() {
super(new TargetCardInLibrary(0, Integer.MAX_VALUE, filter), Outcome.Neutral);
staticText = "Search your library for any number of artifact cards, exile them, then put that many 1/1 colorless Myr artifact creature tokens onto the battlefield. Then shuffle your library";
staticText = "Search your library for any number of artifact cards, exile them, then create that many 1/1 colorless Myr artifact creature tokens. Then shuffle your library";
}
MyrIncubatorEffect(final MyrIncubatorEffect effect) {

View file

@ -45,7 +45,7 @@ class NantukoShrineEffect extends OneShotEffect {
public NantukoShrineEffect() {
super(Outcome.PutCreatureInPlay);
this.staticText = "that player puts X 1/1 green Squirrel creature tokens onto the battlefield, where X is the number of cards in all graveyards with the same name as that spell";
this.staticText = "that player creates X 1/1 green Squirrel creature tokens, where X is the number of cards in all graveyards with the same name as that spell";
}
public NantukoShrineEffect(final NantukoShrineEffect effect) {

View file

@ -20,7 +20,6 @@ public final class SaprolingInfestation extends CardImpl {
public SaprolingInfestation(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{G}");
// Whenever a player kicks a spell, you put a 1/1 green Saproling creature token onto the battlefield.
this.addAbility(new SaprolingInfestationTriggeredAbility());
}
@ -34,13 +33,13 @@ public final class SaprolingInfestation extends CardImpl {
return new SaprolingInfestation(this);
}
class SaprolingInfestationTriggeredAbility extends TriggeredAbilityImpl {
private static final class SaprolingInfestationTriggeredAbility extends TriggeredAbilityImpl {
SaprolingInfestationTriggeredAbility() {
private SaprolingInfestationTriggeredAbility() {
super(Zone.BATTLEFIELD, new CreateTokenEffect(new SaprolingToken()), false);
}
SaprolingInfestationTriggeredAbility(final SaprolingInfestationTriggeredAbility ability) {
private SaprolingInfestationTriggeredAbility(final SaprolingInfestationTriggeredAbility ability) {
super(ability);
}
@ -61,7 +60,7 @@ public final class SaprolingInfestation extends CardImpl {
@Override
public String getRule() {
return "Whenever a player kicks a spell, you put a 1/1 green Saproling creature token onto the battlefield.";
return "Whenever a player kicks a spell, you creat a 1/1 green Saproling creature token.";
}
}
}