1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 17:00:16 -09:00

use {T}, not {tap}

and fix some abilities that mistakenly included cost in the effect text
This commit is contained in:
Neil Gentleman 2015-11-23 23:17:37 -08:00
parent b1cc464d98
commit 79ff0bd374
12 changed files with 24 additions and 24 deletions

View file

@ -67,10 +67,10 @@ public class AbundantGrowth extends CardImpl {
// When Abundant Growth enters the battlefield, draw a card.
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1), false));
// Enchanted land has "{tap}: Add one mana of any color to your mana pool."
// Enchanted land has "{T}: Add one mana of any color to your mana pool."
Ability gainedAbility = new AnyColorManaAbility(new TapSourceCost());
Effect effect = new GainAbilityAttachedEffect(gainedAbility, AttachmentType.AURA);
effect.setText("Enchanted land has \"{tap}: Add one mana of any color to your mana pool.\"");
effect.setText("Enchanted land has \"{T}: Add one mana of any color to your mana pool.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}

View file

@ -47,7 +47,7 @@ import mage.target.TargetPlayer;
*/
public class SternMentor extends CardImpl {
private static final String ruleText = "As long as {this} is paired with another creature, each of those creatures has \"{tap}: Target player puts the top two cards of his or her library into his or her graveyard.\"";
private static final String ruleText = "As long as {this} is paired with another creature, each of those creatures has \"{T}: Target player puts the top two cards of his or her library into his or her graveyard.\"";
public SternMentor(UUID ownerId) {
super(ownerId, 77, "Stern Mentor", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
@ -61,7 +61,7 @@ public class SternMentor extends CardImpl {
// Soulbond
this.addAbility(SoulbondAbility.getInstance());
// As long as Stern Mentor is paired with another creature, each of those creatures has "{t}: Target player puts the top two cards of his or her library into his or her graveyard."
// As long as Stern Mentor is paired with another creature, each of those creatures has "{T}: Target player puts the top two cards of his or her library into his or her graveyard."
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new PutLibraryIntoGraveTargetEffect(2), new TapSourceCost());
ability.addTarget(new TargetPlayer());
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityPairedEffect(ability, ruleText)));

View file

@ -67,11 +67,11 @@ public class WolfhuntersQuiver extends CardImpl {
this.expansionSetCode = "DKA";
this.subtype.add("Equipment");
// Equipped creature has "{tap}: This creature deals 1 damage to target creature or player"
// Equipped creature has "{T}: This creature deals 1 damage to target creature or player"
Ability abilityToGain = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new TapSourceCost());
abilityToGain.addTarget(new TargetCreatureOrPlayer());
Effect effect = new GainAbilityAttachedEffect(abilityToGain, AttachmentType.EQUIPMENT);
effect.setText("Equipped creature has \"{tap}: This creature deals 1 damage to target creature or player\"");
effect.setText("Equipped creature has \"{T}: This creature deals 1 damage to target creature or player\"");
SimpleStaticAbility ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect);
// and "{T}: This creature deals 3 damage to target Werewolf creature."

View file

@ -55,10 +55,10 @@ public class RiftstonePortal extends CardImpl {
// {tap}: Add {1} to your mana pool.
this.addAbility(new ColorlessManaAbility());
// As long as Riftstone Portal is in your graveyard, lands you control have "{tap}: Add {G} or {W} to your mana pool."
// As long as Riftstone Portal is in your graveyard, lands you control have "{T}: Add {G} or {W} to your mana pool."
ContinuousEffect effect = new GainAbilityControlledEffect(new GreenManaAbility(),
Duration.WhileOnBattlefield, new FilterControlledLandPermanent());
effect.setText("As long as Riftstone Portal is in your graveyard, lands you control have \"{tap}: Add {G} or {W} to your mana pool.\"");
effect.setText("As long as Riftstone Portal is in your graveyard, lands you control have \"{T}: Add {G} or {W} to your mana pool.\"");
Ability ability = new SimpleStaticAbility(Zone.GRAVEYARD, effect);
effect = new GainAbilityControlledEffect(new WhiteManaAbility(),
Duration.WhileOnBattlefield, new FilterControlledLandPermanent());

View file

@ -59,7 +59,7 @@ public class GoblinBangchuckers extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// {t}: Flip a coin. If you win the flip, Goblin Bangchuckers deals 2 damage to target creature or player. If you lose the flip, Goblin Bangchuckers deals 2 damage to itself.
// {T}: Flip a coin. If you win the flip, Goblin Bangchuckers deals 2 damage to target creature or player. If you lose the flip, Goblin Bangchuckers deals 2 damage to itself.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GoblinBangchuckersEffect(), new TapSourceCost());
ability.addTarget(new TargetCreatureOrPlayer());
this.addAbility(ability);
@ -79,7 +79,7 @@ class GoblinBangchuckersEffect extends OneShotEffect {
public GoblinBangchuckersEffect() {
super(Outcome.Damage);
staticText = "{tap}: Flip a coin. If you win the flip, Goblin Bangchuckers deals 2 damage to target creature or player. If you lose the flip, Goblin Bangchuckers deals 2 damage to itself";
staticText = "Flip a coin. If you win the flip, Goblin Bangchuckers deals 2 damage to target creature or player. If you lose the flip, Goblin Bangchuckers deals 2 damage to itself";
}
public GoblinBangchuckersEffect(GoblinBangchuckersEffect effect) {

View file

@ -69,11 +69,11 @@ public class AnimalBoneyard extends CardImpl {
this.getSpellAbility().addEffect(new AttachEffect(Outcome.AddAbility));
Ability ability = new EnchantAbility(auraTarget.getTargetName());
this.addAbility(ability);
// Enchanted land has "{tap}, Sacrifice a creature: You gain life equal to that creature's toughness."
// Enchanted land has "{T}, Sacrifice a creature: You gain life equal to that creature's toughness."
Ability gainedAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AnimalBoneyardEffect(), new TapSourceCost());
gainedAbility.addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent()));
Effect effect = new GainAbilityAttachedEffect(gainedAbility, AttachmentType.AURA, Duration.WhileOnBattlefield,
"Enchanted land has \"{tap}, Sacrifice a creature: You gain life equal to that creature's toughness.\"");
"Enchanted land has \"{T}, Sacrifice a creature: You gain life equal to that creature's toughness.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}

View file

@ -65,13 +65,13 @@ public class NomadDecoy extends CardImpl {
ability.addCost(new TapSourceCost());
this.addAbility(ability);
// Threshold - {W}{W}, {tap}: Tap two target creatures. Activate this ability only if seven or more cards are in your graveyard.
// Threshold - {W}{W}, {T}: Tap two target creatures. Activate this ability only if seven or more cards are in your graveyard.
Ability thresholdAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TapTargetEffect(), new ManaCostsImpl("{W}{W}"));
thresholdAbility.addTarget(new TargetCreaturePermanent(2));
thresholdAbility.addCost(new TapSourceCost());
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new GainAbilitySourceEffect(thresholdAbility),
new CardsInControllerGraveCondition(7),
"<i>Threshold</i> - {W}{W}, {tap}: Tap two target creatures. Activate this ability only if seven or more cards are in your graveyard.")));
"<i>Threshold</i> - {W}{W}, {T}: Tap two target creatures. Activate this ability only if seven or more cards are in your graveyard.")));
}
public NomadDecoy(final NomadDecoy card) {

View file

@ -56,7 +56,7 @@ public class Whipkeeper extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// {tap}: Whipkeeper deals damage to target creature equal to the damage already dealt to it this turn.
// {T}: Whipkeeper deals damage to target creature equal to the damage already dealt to it this turn.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new WhipkeeperEffect(), new TapSourceCost());
ability.addTarget(new TargetCreaturePermanent());
this.addAbility(ability);
@ -77,7 +77,7 @@ class WhipkeeperEffect extends OneShotEffect {
public WhipkeeperEffect() {
super(Outcome.Damage);
staticText = "{tap}: {this} deals damage to target creature equal to the damage already dealt to it this turn.";
staticText = "{this} deals damage to target creature equal to the damage already dealt to it this turn.";
}
public WhipkeeperEffect(final WhipkeeperEffect effect) {
super(effect);

View file

@ -72,13 +72,13 @@ public class DementiaSliver extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(3);
// All Slivers have "{tap}: Name a card. Target opponent reveals a card at random from his or her hand. If it's the named card, that player discards it. Activate this ability only during your turn."
// All Slivers have "{T}: Name a card. Target opponent reveals a card at random from his or her hand. If it's the named card, that player discards it. Activate this ability only during your turn."
Ability gainedAbility = new ActivateIfConditionActivatedAbility(Zone.BATTLEFIELD, new NameACardEffect(NameACardEffect.TypeOfName.ALL), new TapSourceCost(), MyTurnCondition.getInstance());
gainedAbility.addEffect(new DementiaSliverEffect());
gainedAbility.addTarget(new TargetOpponent());
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
new GainAbilityAllEffect(gainedAbility, Duration.WhileOnBattlefield, filter,
"All Slivers have \"{tap}: Name a card. Target opponent reveals a card at random from his or her hand. If it's the named card, that player discards it\"")));
"All Slivers have \"{T}: Name a card. Target opponent reveals a card at random from his or her hand. If it's the named card, that player discards it\"")));
}
public DementiaSliver(final DementiaSliver card) {

View file

@ -60,13 +60,13 @@ public class PsionicSliver extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// All Sliver creatures have "{tap}: This creature deals 2 damage to target creature or player and 3 damage to itself."
// All Sliver creatures have "{T}: This creature deals 2 damage to target creature or player and 3 damage to itself."
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(2), new TapSourceCost());
ability.addEffect(new DamageSelfEffect(3));
ability.addTarget(new TargetCreatureOrPlayer());
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
new GainAbilityAllEffect(ability, Duration.WhileOnBattlefield,
filter, "All Sliver creatures have \"{tap}: This creature deals 2 damage to target creature or player and 3 damage to itself.\"")));
filter, "All Sliver creatures have \"{T}: This creature deals 2 damage to target creature or player and 3 damage to itself.\"")));
}
public PsionicSliver(final PsionicSliver card) {

View file

@ -57,13 +57,13 @@ public class ScreechingSliver extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// All Slivers have "{tap}: Target player puts the top card of his or her library into his or her graveyard."
// All Slivers have "{T}: Target player puts the top card of his or her library into his or her graveyard."
SimpleActivatedAbility ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new PutLibraryIntoGraveTargetEffect(1), new TapSourceCost());
ability.addTarget(new TargetPlayer());
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
new GainAbilityAllEffect(ability, Duration.WhileOnBattlefield,
filter, "All Sliver creatures have \"{tap}: Target player puts the top card of his or her library into his or her graveyard.\"")));
filter, "All Sliver creatures have \"{T}: Target player puts the top card of his or her library into his or her graveyard.\"")));
}
public ScreechingSliver(final ScreechingSliver card) {

View file

@ -58,11 +58,11 @@ public class TelekineticSliver extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// All Slivers have "{tap}: Tap target permanent."
// All Slivers have "{T}: Tap target permanent."
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TapTargetEffect(), new TapSourceCost());
ability.addTarget(new TargetPermanent());
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
new GainAbilityAllEffect(ability, Duration.WhileOnBattlefield, filter, "All Slivers have \"{tap}: Tap target permanent.\"")));
new GainAbilityAllEffect(ability, Duration.WhileOnBattlefield, filter, "All Slivers have \"{T}: Tap target permanent.\"")));
}
public TelekineticSliver(final TelekineticSliver card) {