forked from External/mage
refactor: clean all copy constructors in cards starting T (#11093)
This commit is contained in:
parent
371eb87e0b
commit
a702d10ce0
251 changed files with 290 additions and 290 deletions
|
|
@ -58,7 +58,7 @@ class TIESilencerEffect extends OneShotEffect {
|
|||
staticText = "it deals 1 damage to defending player and 1 damage to up to one target creature that player controls";
|
||||
}
|
||||
|
||||
public TIESilencerEffect(final TIESilencerEffect effect) {
|
||||
private TIESilencerEffect(final TIESilencerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class TabletOfTheGuildsEntersBattlefieldEffect extends OneShotEffect {
|
|||
staticText = "choose two colors";
|
||||
}
|
||||
|
||||
public TabletOfTheGuildsEntersBattlefieldEffect(final TabletOfTheGuildsEntersBattlefieldEffect effect) {
|
||||
private TabletOfTheGuildsEntersBattlefieldEffect(final TabletOfTheGuildsEntersBattlefieldEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -102,7 +102,7 @@ class TabletOfTheGuildsGainLifeEffect extends OneShotEffect {
|
|||
staticText = "if it's at least one of the chosen colors, you gain 1 life for each of the chosen colors it is";
|
||||
}
|
||||
|
||||
public TabletOfTheGuildsGainLifeEffect(final TabletOfTheGuildsGainLifeEffect effect) {
|
||||
private TabletOfTheGuildsGainLifeEffect(final TabletOfTheGuildsGainLifeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@ class TaigamOjutaiMasterGainReboundEffect extends ContinuousEffectImpl {
|
|||
staticText = "that spell gains rebound";
|
||||
}
|
||||
|
||||
public TaigamOjutaiMasterGainReboundEffect(final TaigamOjutaiMasterGainReboundEffect effect) {
|
||||
private TaigamOjutaiMasterGainReboundEffect(final TaigamOjutaiMasterGainReboundEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ class TaintedPactEffect extends OneShotEffect {
|
|||
this.staticText = "Exile the top card of your library. You may put that card into your hand unless it has the same name as another card exiled this way. Repeat this process until you put a card into your hand or you exile two cards with the same name, whichever comes first";
|
||||
}
|
||||
|
||||
public TaintedPactEffect(final TaintedPactEffect effect) {
|
||||
private TaintedPactEffect(final TaintedPactEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class TaintedRemedyReplacementEffect extends ReplacementEffectImpl {
|
|||
staticText = "If an opponent would gain life, that player loses that much life instead";
|
||||
}
|
||||
|
||||
public TaintedRemedyReplacementEffect(final TaintedRemedyReplacementEffect effect) {
|
||||
private TaintedRemedyReplacementEffect(final TaintedRemedyReplacementEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ public final class TaintedStrike extends CardImpl {
|
|||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
public TaintedStrike (final TaintedStrike card) {
|
||||
private TaintedStrike(final TaintedStrike card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class TajuruPreserverEffect extends ReplacementEffectImpl {
|
|||
staticText = "Spells and abilities your opponents control can't cause you to sacrifice permanents";
|
||||
}
|
||||
|
||||
public TajuruPreserverEffect(final TajuruPreserverEffect effect) {
|
||||
private TajuruPreserverEffect(final TajuruPreserverEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class TakenoSamuraiGeneralEffect extends ContinuousEffectImpl {
|
|||
staticText = "Each other Samurai creature you control gets +1/+1 for each point of bushido it has";
|
||||
}
|
||||
|
||||
public TakenoSamuraiGeneralEffect(final TakenoSamuraiGeneralEffect effect) {
|
||||
private TakenoSamuraiGeneralEffect(final TakenoSamuraiGeneralEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class TakenumaBleederEffect extends OneShotEffect {
|
|||
this.staticText = "you lose 1 life if you don't control a Demon";
|
||||
}
|
||||
|
||||
public TakenumaBleederEffect(final TakenumaBleederEffect effect) {
|
||||
private TakenumaBleederEffect(final TakenumaBleederEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class TalarasBaneEffect extends OneShotEffect {
|
|||
this.staticText = "Target opponent reveals their hand. You choose a green or white creature card from it. You gain life equal to that creature card's toughness, then that player discards that card";
|
||||
}
|
||||
|
||||
public TalarasBaneEffect(final TalarasBaneEffect effect) {
|
||||
private TalarasBaneEffect(final TalarasBaneEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class TalentOfTheTelepathEffect extends OneShotEffect {
|
|||
"instant and/or sorcery spells from among the revealed cards instead of one.";
|
||||
}
|
||||
|
||||
public TalentOfTheTelepathEffect(final TalentOfTheTelepathEffect effect) {
|
||||
private TalentOfTheTelepathEffect(final TalentOfTheTelepathEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class TalonOfPainTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever a source you control other than {this} deals damage to an opponent, ");
|
||||
}
|
||||
|
||||
public TalonOfPainTriggeredAbility(final TalonOfPainTriggeredAbility ability) {
|
||||
private TalonOfPainTriggeredAbility(final TalonOfPainTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -128,7 +128,7 @@ class TalonOfPainRemoveVariableCountersSourceCost extends VariableCostImpl {
|
|||
}
|
||||
}
|
||||
|
||||
public TalonOfPainRemoveVariableCountersSourceCost(final TalonOfPainRemoveVariableCountersSourceCost cost) {
|
||||
private TalonOfPainRemoveVariableCountersSourceCost(final TalonOfPainRemoveVariableCountersSourceCost cost) {
|
||||
super(cost);
|
||||
this.minimalCountersToPay = cost.minimalCountersToPay;
|
||||
this.counterName = cost.counterName;
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public final class TalonTrooper extends CardImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public TalonTrooper (final TalonTrooper card) {
|
||||
private TalonTrooper(final TalonTrooper card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class TalruumPiperEffect extends RequirementEffect {
|
|||
staticText = "All creatures with flying able to block {this} do so";
|
||||
}
|
||||
|
||||
public TalruumPiperEffect(TalruumPiperEffect effect) {
|
||||
private TalruumPiperEffect(final TalruumPiperEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ class TalusPaladinEffect extends OneShotEffect {
|
|||
super(Outcome.Benefit);
|
||||
}
|
||||
|
||||
public TalusPaladinEffect(final TalusPaladinEffect effect) {
|
||||
private TalusPaladinEffect(final TalusPaladinEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class TamanoaDealsDamageTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever a noncreature source you control deals damage, ");
|
||||
}
|
||||
|
||||
public TamanoaDealsDamageTriggeredAbility(final TamanoaDealsDamageTriggeredAbility ability) {
|
||||
private TamanoaDealsDamageTriggeredAbility(final TamanoaDealsDamageTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ class TamiyoFieldResearcherEffect1 extends OneShotEffect {
|
|||
this.staticText = "Choose up to two target creatures. Until your next turn, whenever either of those creatures deals combat damage, you draw a card";
|
||||
}
|
||||
|
||||
public TamiyoFieldResearcherEffect1(final TamiyoFieldResearcherEffect1 effect) {
|
||||
private TamiyoFieldResearcherEffect1(final TamiyoFieldResearcherEffect1 effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -124,7 +124,7 @@ class TamiyoFieldResearcherDelayedTriggeredAbility extends DelayedTriggeredAbili
|
|||
this.startingTurn = startingTurn;
|
||||
}
|
||||
|
||||
public TamiyoFieldResearcherDelayedTriggeredAbility(final TamiyoFieldResearcherDelayedTriggeredAbility ability) {
|
||||
private TamiyoFieldResearcherDelayedTriggeredAbility(final TamiyoFieldResearcherDelayedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
this.creatures = ability.creatures;
|
||||
this.startingTurn = ability.startingTurn;
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class TangleEffect extends OneShotEffect {
|
|||
this.staticText = "Each attacking creature doesn't untap during its controller's next untap step";
|
||||
}
|
||||
|
||||
public TangleEffect(final TangleEffect effect) {
|
||||
private TangleEffect(final TangleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ public final class TangleHulk extends CardImpl {
|
|||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl<>("{2}{G}")));
|
||||
}
|
||||
|
||||
public TangleHulk (final TangleHulk card) {
|
||||
private TangleHulk(final TangleHulk card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class DontUntapIfAttackedLastTurnEnchantedEffect extends ContinuousRuleModifying
|
|||
staticText = "Enchanted creature doesn't untap during its controller's untap step if it attacked during its controller's last turn";
|
||||
}
|
||||
|
||||
public DontUntapIfAttackedLastTurnEnchantedEffect(final DontUntapIfAttackedLastTurnEnchantedEffect effect) {
|
||||
private DontUntapIfAttackedLastTurnEnchantedEffect(final DontUntapIfAttackedLastTurnEnchantedEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ public final class TangleMantis extends CardImpl {
|
|||
this.addAbility(TrampleAbility.getInstance());
|
||||
}
|
||||
|
||||
public TangleMantis (final TangleMantis card) {
|
||||
private TangleMantis(final TangleMantis card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class TaniwhaEffect extends OneShotEffect {
|
|||
this.staticText = "all lands you control phase out";
|
||||
}
|
||||
|
||||
public TaniwhaEffect(final TaniwhaEffect effect) {
|
||||
private TaniwhaEffect(final TaniwhaEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class TarielReckonerOfSoulsEffect extends OneShotEffect {
|
|||
this.staticText = "Choose a creature card at random from target opponent's graveyard. Put that card onto the battlefield under your control";
|
||||
}
|
||||
|
||||
public TarielReckonerOfSoulsEffect(final TarielReckonerOfSoulsEffect effect) {
|
||||
private TarielReckonerOfSoulsEffect(final TarielReckonerOfSoulsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class TariffEffect extends OneShotEffect {
|
|||
this.staticText = "Each player sacrifices the creature they control with the highest mana value unless they pay that creature's mana cost. If two or more creatures a player controls are tied for highest, that player chooses one.";
|
||||
}
|
||||
|
||||
public TariffEffect(final TariffEffect effect) {
|
||||
private TariffEffect(final TariffEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class TaskMageAssemblyStateTriggeredAbility extends StateTriggeredAbility {
|
|||
setTriggerPhrase("When there are no creatures on the battlefield, ");
|
||||
}
|
||||
|
||||
public TaskMageAssemblyStateTriggeredAbility(final TaskMageAssemblyStateTriggeredAbility ability) {
|
||||
private TaskMageAssemblyStateTriggeredAbility(final TaskMageAssemblyStateTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class TatsumaTheDragonsFangEffect extends OneShotEffect {
|
|||
"Return {this} to the battlefield under its owner's control when that token dies";
|
||||
}
|
||||
|
||||
public TatsumaTheDragonsFangEffect(final TatsumaTheDragonsFangEffect effect) {
|
||||
private TatsumaTheDragonsFangEffect(final TatsumaTheDragonsFangEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -92,7 +92,7 @@ class TatsumaTheDragonsFangTriggeredAbility extends DelayedTriggeredAbility {
|
|||
tokens.addAll(token.getLastAddedTokenIds());
|
||||
}
|
||||
|
||||
public TatsumaTheDragonsFangTriggeredAbility(final TatsumaTheDragonsFangTriggeredAbility ability) {
|
||||
private TatsumaTheDragonsFangTriggeredAbility(final TatsumaTheDragonsFangTriggeredAbility ability) {
|
||||
super(ability);
|
||||
tokens.addAll(ability.tokens);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public final class TatteredDrake extends CardImpl {
|
|||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl<>("{B}")));
|
||||
}
|
||||
|
||||
public TatteredDrake (final TatteredDrake card) {
|
||||
private TatteredDrake(final TatteredDrake card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class TavernSwindlerEffect extends OneShotEffect {
|
|||
staticText = "Flip a coin. If you win the flip, you gain 6 life";
|
||||
}
|
||||
|
||||
public TavernSwindlerEffect(TavernSwindlerEffect effect) {
|
||||
private TavernSwindlerEffect(final TavernSwindlerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class TawnossCoffinTriggeredAbility extends LeavesBattlefieldTriggeredAbility {
|
|||
setTriggerPhrase("When {this} leaves the battlefield or becomes untapped, ");
|
||||
}
|
||||
|
||||
public TawnossCoffinTriggeredAbility(final TawnossCoffinTriggeredAbility ability) {
|
||||
private TawnossCoffinTriggeredAbility(final TawnossCoffinTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -107,7 +107,7 @@ class TawnossCoffinEffect extends OneShotEffect {
|
|||
"Note the number and kind of counters that were on that creature";
|
||||
}
|
||||
|
||||
public TawnossCoffinEffect(final TawnossCoffinEffect effect) {
|
||||
private TawnossCoffinEffect(final TawnossCoffinEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -151,7 +151,7 @@ class TawnossCoffinReturnEffect extends OneShotEffect {
|
|||
"If you do, return the exiled Aura cards to the battlefield under their owner's control attached to that permanent";
|
||||
}
|
||||
|
||||
public TawnossCoffinReturnEffect(final TawnossCoffinReturnEffect effect) {
|
||||
private TawnossCoffinReturnEffect(final TawnossCoffinReturnEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ class TayamLuminousEnigmaCost extends RemoveCounterCost {
|
|||
super(new TargetPermanent(1, 1, filter, true), null, 3);
|
||||
}
|
||||
|
||||
public TayamLuminousEnigmaCost(TayamLuminousEnigmaCost cost) {
|
||||
private TayamLuminousEnigmaCost(final TayamLuminousEnigmaCost cost) {
|
||||
super(cost);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class TearsOfRageEffect extends OneShotEffect {
|
|||
this.staticText = "Sacrifice those creatures at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public TearsOfRageEffect(final TearsOfRageEffect effect) {
|
||||
private TearsOfRageEffect(final TearsOfRageEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class TeferiMageOfZhalfirAddFlashEffect extends ContinuousEffectImpl {
|
|||
this.staticText = "Creature cards you own that aren't on the battlefield have flash";
|
||||
}
|
||||
|
||||
public TeferiMageOfZhalfirAddFlashEffect(final TeferiMageOfZhalfirAddFlashEffect effect) {
|
||||
private TeferiMageOfZhalfirAddFlashEffect(final TeferiMageOfZhalfirAddFlashEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ class TeferisProtectionEffect extends OneShotEffect {
|
|||
staticText = " and you gain protection from everything";
|
||||
}
|
||||
|
||||
public TeferisProtectionEffect(final TeferisProtectionEffect effect) {
|
||||
private TeferisProtectionEffect(final TeferisProtectionEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -105,7 +105,7 @@ class TeferisProtectionPhaseOutEffect extends OneShotEffect {
|
|||
this.staticText = "All permanents you control phase out. <i>(While they're phased out, they're treated as though they don't exist. They phase in before you untap during your untap step.)</i><br>";
|
||||
}
|
||||
|
||||
public TeferisProtectionPhaseOutEffect(final TeferisProtectionPhaseOutEffect effect) {
|
||||
private TeferisProtectionPhaseOutEffect(final TeferisProtectionPhaseOutEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ class TeferisPuzzleBoxEffect extends OneShotEffect {
|
|||
staticText = "that player puts the cards in their hand on the bottom of their library in any order, then draws that many cards";
|
||||
}
|
||||
|
||||
public TeferisPuzzleBoxEffect(final TeferisPuzzleBoxEffect effect) {
|
||||
private TeferisPuzzleBoxEffect(final TeferisPuzzleBoxEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class TeferisRealmEffect extends OneShotEffect {
|
|||
this.staticText = "that player chooses artifact, creature, land, or non-Aura enchantment. All nontoken permanents of that type phase out";
|
||||
}
|
||||
|
||||
public TeferisRealmEffect(final TeferisRealmEffect effect) {
|
||||
private TeferisRealmEffect(final TeferisRealmEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class TeferisResponseEffect extends OneShotEffect {
|
|||
this.staticText = "Counter target spell or ability an opponent controls that targets a land you control. If a permanent's ability is countered this way, destroy that permanent";
|
||||
}
|
||||
|
||||
public TeferisResponseEffect(final TeferisResponseEffect effect) {
|
||||
private TeferisResponseEffect(final TeferisResponseEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public final class TelJiladFallen extends CardImpl {
|
|||
this.addAbility(new ProtectionAbility(new FilterArtifactCard("artifacts")));
|
||||
}
|
||||
|
||||
public TelJiladFallen (final TelJiladFallen card) {
|
||||
private TelJiladFallen(final TelJiladFallen card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class TeleminPerformanceEffect extends OneShotEffect {
|
|||
this.staticText = "Target opponent reveals cards from the top of their library until they reveal a creature card. That player puts all noncreature cards revealed this way into their graveyard, then you put the creature card onto the battlefield under your control";
|
||||
}
|
||||
|
||||
public TeleminPerformanceEffect(final TeleminPerformanceEffect effect) {
|
||||
private TeleminPerformanceEffect(final TeleminPerformanceEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class TeleportalEffect extends OneShotEffect {
|
|||
staticText = "each creature you control can't be blocked this turn";
|
||||
}
|
||||
|
||||
public TeleportalEffect(final TeleportalEffect effect) {
|
||||
private TeleportalEffect(final TeleportalEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class TellingTimeEffect extends OneShotEffect {
|
|||
this.staticText = "Look at the top three cards of your library. Put one of those cards into your hand, one on top of your library, and one on the bottom of your library.";
|
||||
}
|
||||
|
||||
public TellingTimeEffect(final TellingTimeEffect effect) {
|
||||
private TellingTimeEffect(final TellingTimeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class TempOfTheDamnedEffect extends OneShotEffect {
|
|||
staticText = "roll a six-sided die. {this} enters the battlefield with a number of funk counters on it equal to the result";
|
||||
}
|
||||
|
||||
public TempOfTheDamnedEffect(final TempOfTheDamnedEffect effect) {
|
||||
private TempOfTheDamnedEffect(final TempOfTheDamnedEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class TemperPreventDamageTargetEffect extends PreventionEffectImpl {
|
|||
staticText = "Prevent the next X damage that would be dealt to target creature this turn. For each 1 damage prevented this way, put a +1/+1 counter on that creature";
|
||||
}
|
||||
|
||||
public TemperPreventDamageTargetEffect(final TemperPreventDamageTargetEffect effect) {
|
||||
private TemperPreventDamageTargetEffect(final TemperPreventDamageTargetEffect effect) {
|
||||
super(effect);
|
||||
this.amount = effect.amount;
|
||||
this.dVal = effect.dVal;
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ public final class TemperedSteel extends CardImpl {
|
|||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(2, 2, Duration.WhileOnBattlefield, filter, false)));
|
||||
}
|
||||
|
||||
public TemperedSteel (final TemperedSteel card) {
|
||||
private TemperedSteel(final TemperedSteel card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public final class TempleAcolyte extends CardImpl {
|
|||
this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(3)));
|
||||
}
|
||||
|
||||
public TempleAcolyte (final TempleAcolyte card) {
|
||||
private TempleAcolyte(final TempleAcolyte card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class TempleAltisaurPreventEffect extends PreventionEffectImpl {
|
|||
consumable = false;
|
||||
}
|
||||
|
||||
public TempleAltisaurPreventEffect(TempleAltisaurPreventEffect effect) {
|
||||
private TempleAltisaurPreventEffect(final TempleAltisaurPreventEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class TempleOfAclazotzEffect extends OneShotEffect {
|
|||
this.staticText = "You gain life equal to the sacrificed creature's toughness";
|
||||
}
|
||||
|
||||
public TempleOfAclazotzEffect(final TempleOfAclazotzEffect effect) {
|
||||
private TempleOfAclazotzEffect(final TempleOfAclazotzEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class TemporalApertureEffect extends OneShotEffect {
|
|||
+ "paying its mana cost";
|
||||
}
|
||||
|
||||
public TemporalApertureEffect(final TemporalApertureEffect effect) {
|
||||
private TemporalApertureEffect(final TemporalApertureEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -96,7 +96,7 @@ class TemporalApertureTopCardCastEffect extends AsThoughEffectImpl {
|
|||
+ "of your library, you may cast it without paying its mana costs";
|
||||
}
|
||||
|
||||
public TemporalApertureTopCardCastEffect(final TemporalApertureTopCardCastEffect effect) {
|
||||
private TemporalApertureTopCardCastEffect(final TemporalApertureTopCardCastEffect effect) {
|
||||
super(effect);
|
||||
this.card = effect.card;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class TemporalCascadeDrawEffect extends OneShotEffect {
|
|||
staticText = "Each player draws seven cards";
|
||||
}
|
||||
|
||||
public TemporalCascadeDrawEffect(final TemporalCascadeDrawEffect effect) {
|
||||
private TemporalCascadeDrawEffect(final TemporalCascadeDrawEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class TemporalDistortionRemovalEffect extends OneShotEffect {
|
|||
staticText = "remove all hourglass counters from permanents that player controls";
|
||||
}
|
||||
|
||||
public TemporalDistortionRemovalEffect(final TemporalDistortionRemovalEffect effect) {
|
||||
private TemporalDistortionRemovalEffect(final TemporalDistortionRemovalEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class TemporalExtortionCounterSourceEffect extends OneShotEffect {
|
|||
staticText = "any player may pay half their life, rounded up. If a player does, counter {this}";
|
||||
}
|
||||
|
||||
public TemporalExtortionCounterSourceEffect(final TemporalExtortionCounterSourceEffect effect) {
|
||||
private TemporalExtortionCounterSourceEffect(final TemporalExtortionCounterSourceEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class TargetCreatureWithPowerLessThanNumberOfCardsInYourGraveyard extends Target
|
|||
targetName = "creature with power less than the number of cards in your graveyard";
|
||||
}
|
||||
|
||||
public TargetCreatureWithPowerLessThanNumberOfCardsInYourGraveyard(final TargetCreatureWithPowerLessThanNumberOfCardsInYourGraveyard target) {
|
||||
private TargetCreatureWithPowerLessThanNumberOfCardsInYourGraveyard(final TargetCreatureWithPowerLessThanNumberOfCardsInYourGraveyard target) {
|
||||
super(target);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class TemptWithDiscoveryEffect extends OneShotEffect {
|
|||
this.staticText = "<i>Tempting offer</i> — Search your library for a land card and put it onto the battlefield. Each opponent may search their library for a land card and put it onto the battlefield. For each opponent who searches a library this way, search your library for a land card and put it onto the battlefield. Then each player who searched a library this way shuffles";
|
||||
}
|
||||
|
||||
public TemptWithDiscoveryEffect(final TemptWithDiscoveryEffect effect) {
|
||||
private TemptWithDiscoveryEffect(final TemptWithDiscoveryEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class TemptWithGloryEffect extends OneShotEffect {
|
|||
this.staticText = "<i>Tempting offer</i> — Put a +1/+1 counter on each creature you control. Each opponent may put a +1/+1 counter on each creature they control. For each opponent who does, put a +1/+1 counter on each creature you control";
|
||||
}
|
||||
|
||||
public TemptWithGloryEffect(final TemptWithGloryEffect effect) {
|
||||
private TemptWithGloryEffect(final TemptWithGloryEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class TemptWithImmortalityEffect extends OneShotEffect {
|
|||
|
||||
}
|
||||
|
||||
public TemptWithImmortalityEffect(final TemptWithImmortalityEffect effect) {
|
||||
private TemptWithImmortalityEffect(final TemptWithImmortalityEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class TemptWithReflectionsEffect extends OneShotEffect {
|
|||
this.staticText = "<i>Tempting offer</i> — Choose target creature you control. Create a token that's a copy of that creature. Each opponent may create a token that's a copy of that creature. For each opponent who does, create a token that's a copy of that creature";
|
||||
}
|
||||
|
||||
public TemptWithReflectionsEffect(final TemptWithReflectionsEffect effect) {
|
||||
private TemptWithReflectionsEffect(final TemptWithReflectionsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class TemptWithVengeanceEffect extends OneShotEffect {
|
|||
this.staticText = "<i>Tempting offer</i> — Create X 1/1 red Elemental creature tokens with haste. Each opponent may create X 1/1 red Elemental creature tokens with haste. For each opponent who does, create X 1/1 red Elemental creature tokens with haste";
|
||||
}
|
||||
|
||||
public TemptWithVengeanceEffect(final TemptWithVengeanceEffect effect) {
|
||||
private TemptWithVengeanceEffect(final TemptWithVengeanceEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class TemurSabertoothEffect extends OneShotEffect {
|
|||
this.staticText = "You may return another creature you control to its owner's hand. If you do, {this} gains indestructible until end of turn";
|
||||
}
|
||||
|
||||
public TemurSabertoothEffect(final TemurSabertoothEffect effect) {
|
||||
private TemurSabertoothEffect(final TemurSabertoothEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ public final class TerashisGrasp extends CardImpl {
|
|||
staticText = "You gain life equal to its mana value";
|
||||
}
|
||||
|
||||
public TerashisGraspEffect(TerashisGraspEffect effect) {
|
||||
private TerashisGraspEffect(final TerashisGraspEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class TerastodonEffect extends OneShotEffect {
|
|||
this.staticText = "you may destroy up to three target noncreature permanents. For each permanent put into a graveyard this way, its controller creates a 3/3 green Elephant creature token";
|
||||
}
|
||||
|
||||
public TerastodonEffect(final TerastodonEffect effect) {
|
||||
private TerastodonEffect(final TerastodonEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public final class TeremkoGriffin extends CardImpl {
|
|||
this.addAbility(BandingAbility.getInstance());
|
||||
}
|
||||
|
||||
public TeremkoGriffin (final TeremkoGriffin card) {
|
||||
private TeremkoGriffin(final TeremkoGriffin card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ class TergridGodOfFrightEffect extends OneShotEffect {
|
|||
super(Outcome.Neutral);
|
||||
}
|
||||
|
||||
public TergridGodOfFrightEffect(final TergridGodOfFrightEffect effect) {
|
||||
private TergridGodOfFrightEffect(final TergridGodOfFrightEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -177,7 +177,7 @@ class TergridsLaternEffect extends OneShotEffect {
|
|||
staticText = "Target player loses 3 life unless they sacrifice a nonland permanent or discard a card";
|
||||
}
|
||||
|
||||
public TergridsLaternEffect(final TergridsLaternEffect effect) {
|
||||
private TergridsLaternEffect(final TergridsLaternEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class TerminusEffect extends OneShotEffect {
|
|||
this.staticText = "Put all creatures on the bottom of their owners' libraries";
|
||||
}
|
||||
|
||||
public TerminusEffect(final TerminusEffect effect) {
|
||||
private TerminusEffect(final TerminusEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ class TerrifyingPresenceEffect extends PreventionEffectImpl {
|
|||
this.staticText = "Prevent all combat damage that would be dealt by creatures other than target creature this turn";
|
||||
}
|
||||
|
||||
public TerrifyingPresenceEffect(final TerrifyingPresenceEffect effect) {
|
||||
private TerrifyingPresenceEffect(final TerrifyingPresenceEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class TerritorialDisputeEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
this.staticText = "Players can't play lands";
|
||||
}
|
||||
|
||||
public TerritorialDisputeEffect(final TerritorialDisputeEffect effect) {
|
||||
private TerritorialDisputeEffect(final TerritorialDisputeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ class AttackIfAbleTargetRandoOpponentSourceEffect extends OneShotEffect {
|
|||
this.staticText = "choose an opponent at random that {this} didn't attack during your last combat. {this} attacks that player this combat if able. If you can't choose an opponent this way, tap {this}";
|
||||
}
|
||||
|
||||
public AttackIfAbleTargetRandoOpponentSourceEffect(final AttackIfAbleTargetRandoOpponentSourceEffect effect) {
|
||||
private AttackIfAbleTargetRandoOpponentSourceEffect(final AttackIfAbleTargetRandoOpponentSourceEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ public final class TesharAncestorsApostle extends CardImpl {
|
|||
|
||||
}
|
||||
|
||||
public TesharAncestorsApostle(final TesharAncestorsApostle TesharAncestorsApostle) {
|
||||
private TesharAncestorsApostle(final TesharAncestorsApostle TesharAncestorsApostle) {
|
||||
super(TesharAncestorsApostle);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class TestOfFaithPreventDamageTargetEffect extends PreventionEffectImpl {
|
|||
staticText = "Prevent the next 3 damage that would be dealt to target creature this turn. For each 1 damage prevented this way, put a +1/+1 counter on that creature";
|
||||
}
|
||||
|
||||
public TestOfFaithPreventDamageTargetEffect(final TestOfFaithPreventDamageTargetEffect effect) {
|
||||
private TestOfFaithPreventDamageTargetEffect(final TestOfFaithPreventDamageTargetEffect effect) {
|
||||
super(effect);
|
||||
this.amount = effect.amount;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ class TetravusCreateTokensEffect extends OneShotEffect {
|
|||
+ "They each have flying and \"This creature can't be enchanted.\"";
|
||||
}
|
||||
|
||||
public TetravusCreateTokensEffect(final TetravusCreateTokensEffect effect) {
|
||||
private TetravusCreateTokensEffect(final TetravusCreateTokensEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -137,7 +137,7 @@ class TetravusAddCountersEffect extends OneShotEffect {
|
|||
+ "If you do, put that many +1/+1 counters on {this}";
|
||||
}
|
||||
|
||||
public TetravusAddCountersEffect(final TetravusAddCountersEffect effect) {
|
||||
private TetravusAddCountersEffect(final TetravusAddCountersEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class TetsuoUmezawaEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
staticText = "{this} can't be the target of Aura spells";
|
||||
}
|
||||
|
||||
public TetsuoUmezawaEffect(final TetsuoUmezawaEffect effect) {
|
||||
private TetsuoUmezawaEffect(final TetsuoUmezawaEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class TeysaEnvoyOfGhostsTriggeredAbility extends TriggeredAbilityImpl {
|
|||
this.addEffect(new CreateTokenEffect(new WhiteBlackSpiritToken(), 1));
|
||||
}
|
||||
|
||||
public TeysaEnvoyOfGhostsTriggeredAbility(final TeysaEnvoyOfGhostsTriggeredAbility ability) {
|
||||
private TeysaEnvoyOfGhostsTriggeredAbility(final TeysaEnvoyOfGhostsTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class TezzeretAgentOfBolasEffect2 extends OneShotEffect {
|
|||
staticText = "Target player loses X life and you gain X life, where X is twice the number of artifacts you control";
|
||||
}
|
||||
|
||||
public TezzeretAgentOfBolasEffect2(final TezzeretAgentOfBolasEffect2 effect) {
|
||||
private TezzeretAgentOfBolasEffect2(final TezzeretAgentOfBolasEffect2 effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ class TezzeretCruelMachinistEffect extends OneShotEffect {
|
|||
this.staticText = "put any number of cards from your hand onto the battlefield face down. They're 5/5 artifact creatures";
|
||||
}
|
||||
|
||||
public TezzeretCruelMachinistEffect(final TezzeretCruelMachinistEffect effect) {
|
||||
private TezzeretCruelMachinistEffect(final TezzeretCruelMachinistEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -113,7 +113,7 @@ class TezzeretCruelMachinistCardTypeEffect extends ContinuousEffectImpl {
|
|||
super(Duration.Custom, Layer.CopyEffects_1, SubLayer.FaceDownEffects_1b, Outcome.Neutral);
|
||||
}
|
||||
|
||||
public TezzeretCruelMachinistCardTypeEffect(final TezzeretCruelMachinistCardTypeEffect effect) {
|
||||
private TezzeretCruelMachinistCardTypeEffect(final TezzeretCruelMachinistCardTypeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ class TezzeretMasterOfMetalEffect extends OneShotEffect {
|
|||
this.staticText = "Gain control of all artifacts and creatures target opponent controls";
|
||||
}
|
||||
|
||||
public TezzeretMasterOfMetalEffect(final TezzeretMasterOfMetalEffect effect) {
|
||||
private TezzeretMasterOfMetalEffect(final TezzeretMasterOfMetalEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -103,7 +103,7 @@ class TezzeretMasterOfMetalControlEffect extends ContinuousEffectImpl {
|
|||
this.controllerId = controllerId;
|
||||
}
|
||||
|
||||
public TezzeretMasterOfMetalControlEffect(final TezzeretMasterOfMetalControlEffect effect) {
|
||||
private TezzeretMasterOfMetalControlEffect(final TezzeretMasterOfMetalControlEffect effect) {
|
||||
super(effect);
|
||||
this.controllerId = effect.controllerId;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class TezzeretTheSeekerEffect2 extends OneShotEffect {
|
|||
this.staticText = "Search your library for an artifact card with mana value X or less, put it onto the battlefield, then shuffle";
|
||||
}
|
||||
|
||||
public TezzeretTheSeekerEffect2(final TezzeretTheSeekerEffect2 effect) {
|
||||
private TezzeretTheSeekerEffect2(final TezzeretTheSeekerEffect2 effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -110,7 +110,7 @@ class TezzeretTheSeekerEffect3 extends ContinuousEffectImpl {
|
|||
this.staticText = "Artifacts you control become artifact creatures with base power and toughness 5/5 until end of turn";
|
||||
}
|
||||
|
||||
public TezzeretTheSeekerEffect3(final TezzeretTheSeekerEffect3 effect) {
|
||||
private TezzeretTheSeekerEffect3(final TezzeretTheSeekerEffect3 effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class ThallidOmnivoreEffect extends OneShotEffect {
|
|||
this.staticText = "If a Saproling was sacrificed this way, you gain 2 life";
|
||||
}
|
||||
|
||||
public ThallidOmnivoreEffect(final ThallidOmnivoreEffect effect) {
|
||||
private ThallidOmnivoreEffect(final ThallidOmnivoreEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class ThassasEmissaryTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever {this} or enchanted creature deals combat damage to a player, ");
|
||||
}
|
||||
|
||||
public ThassasEmissaryTriggeredAbility(final ThassasEmissaryTriggeredAbility ability) {
|
||||
private ThassasEmissaryTriggeredAbility(final ThassasEmissaryTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class ThatcherRevoltEffect extends OneShotEffect {
|
|||
this.staticText = "Create three 1/1 red Human creature tokens with haste. Sacrifice those tokens at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public ThatcherRevoltEffect(final ThatcherRevoltEffect effect) {
|
||||
private ThatcherRevoltEffect(final ThatcherRevoltEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class TheAntiquitiesWarEffect extends ContinuousEffectImpl {
|
|||
this.staticText = "Artifacts you control become artifact creatures with base power and toughness 5/5 until end of turn";
|
||||
}
|
||||
|
||||
public TheAntiquitiesWarEffect(final TheAntiquitiesWarEffect effect) {
|
||||
private TheAntiquitiesWarEffect(final TheAntiquitiesWarEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class TheBattleOfNabooEffect extends OneShotEffect {
|
|||
staticText = "Draw twice that many cards";
|
||||
}
|
||||
|
||||
public TheBattleOfNabooEffect(final TheBattleOfNabooEffect effect) {
|
||||
private TheBattleOfNabooEffect(final TheBattleOfNabooEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class TheBattleOfYavinEffect extends OneShotEffect {
|
|||
this.staticText = "For each nonland permanent target opponent controls, that player sacrificies it unless they pay X life";
|
||||
}
|
||||
|
||||
public TheBattleOfYavinEffect(final TheBattleOfYavinEffect effect) {
|
||||
private TheBattleOfYavinEffect(final TheBattleOfYavinEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ class TheBigIdeaEffect extends OneShotEffect {
|
|||
this.staticText = "Roll a six-sided die. Create a number of 1/1 red Brainiac creature tokens equal to the result";
|
||||
}
|
||||
|
||||
public TheBigIdeaEffect(final TheBigIdeaEffect effect) {
|
||||
private TheBigIdeaEffect(final TheBigIdeaEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ class TheBookOfVileDarknessCost extends CostImpl {
|
|||
this.text = "exile {this} and artifacts you control named Eye of Vecna and Hand of Vecna";
|
||||
}
|
||||
|
||||
public TheBookOfVileDarknessCost(final TheBookOfVileDarknessCost cost) {
|
||||
private TheBookOfVileDarknessCost(final TheBookOfVileDarknessCost cost) {
|
||||
super(cost);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ class TheBrothersWarRequirementEffect extends RequirementEffect {
|
|||
this.defendingPlayerId = defender.getId();
|
||||
}
|
||||
|
||||
public TheBrothersWarRequirementEffect(final TheBrothersWarRequirementEffect effect) {
|
||||
private TheBrothersWarRequirementEffect(final TheBrothersWarRequirementEffect effect) {
|
||||
super(effect);
|
||||
this.attackingPlayerId = effect.attackingPlayerId;
|
||||
this.defendingPlayerId = effect.defendingPlayerId;
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ class TheChainVeilIncreaseLoyaltyUseEffect extends ContinuousEffectImpl {
|
|||
staticText = "For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities have been activated this turn";
|
||||
}
|
||||
|
||||
public TheChainVeilIncreaseLoyaltyUseEffect(final TheChainVeilIncreaseLoyaltyUseEffect effect) {
|
||||
private TheChainVeilIncreaseLoyaltyUseEffect(final TheChainVeilIncreaseLoyaltyUseEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class CheeseStandsAloneContinuousEffect extends ContinuousRuleModifyingEffectImp
|
|||
staticText = "When you control no permanents other than {this} and have no cards in hand, you win the game";
|
||||
}
|
||||
|
||||
public CheeseStandsAloneContinuousEffect(final CheeseStandsAloneContinuousEffect effect) {
|
||||
private CheeseStandsAloneContinuousEffect(final CheeseStandsAloneContinuousEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ class TheEternalWandererExileEffect extends OneShotEffect {
|
|||
"under its owner's control at the beginning of that player's next end step.";
|
||||
}
|
||||
|
||||
public TheEternalWandererExileEffect(final TheEternalWandererExileEffect effect) {
|
||||
private TheEternalWandererExileEffect(final TheEternalWandererExileEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -126,7 +126,7 @@ class TheEternalWandererSacrificeEffect extends OneShotEffect {
|
|||
staticText = "For each player, choose a creature that player controls. Each player sacrifices all creatures they control not chosen this way";
|
||||
}
|
||||
|
||||
public TheEternalWandererSacrificeEffect(final TheEternalWandererSacrificeEffect effect) {
|
||||
private TheEternalWandererSacrificeEffect(final TheEternalWandererSacrificeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class TheFallenEffect extends OneShotEffect {
|
|||
this.staticText = "{this} deals 1 damage to each opponent or planeswalker it has dealt damage to this game";
|
||||
}
|
||||
|
||||
public TheFallenEffect(final TheFallenEffect effect) {
|
||||
private TheFallenEffect(final TheFallenEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class TheFallenApartEntersEffect extends OneShotEffect {
|
|||
staticText = "with two arms and two legs";
|
||||
}
|
||||
|
||||
public TheFallenApartEntersEffect(final TheFallenApartEntersEffect effect) {
|
||||
private TheFallenApartEntersEffect(final TheFallenApartEntersEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -91,7 +91,7 @@ class TheFallenApartToggleEffect extends OneShotEffect {
|
|||
staticText = "remove an arm or a leg from it";
|
||||
}
|
||||
|
||||
public TheFallenApartToggleEffect(final TheFallenApartToggleEffect effect) {
|
||||
private TheFallenApartToggleEffect(final TheFallenApartToggleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -147,7 +147,7 @@ class TheFallenApartRestrictionEffect extends RestrictionEffect {
|
|||
staticText = "{this} can't attack if it has no legs and can't block if it has no arms";
|
||||
}
|
||||
|
||||
public TheFallenApartRestrictionEffect(final TheFallenApartRestrictionEffect effect) {
|
||||
private TheFallenApartRestrictionEffect(final TheFallenApartRestrictionEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class TheFlameOfKeldDamageEffect extends ReplacementEffectImpl {
|
|||
this.staticText = "If a red source you control would deal damage to a permanent or player this turn, it deals that much damage plus 2 to that permanent or player instead";
|
||||
}
|
||||
|
||||
public TheFlameOfKeldDamageEffect(final TheFlameOfKeldDamageEffect effect) {
|
||||
private TheFlameOfKeldDamageEffect(final TheFlameOfKeldDamageEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class TheGitrogMonsterTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), false);
|
||||
}
|
||||
|
||||
public TheGitrogMonsterTriggeredAbility(final TheGitrogMonsterTriggeredAbility ability) {
|
||||
private TheGitrogMonsterTriggeredAbility(final TheGitrogMonsterTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class TheGoldenThroneEffect extends ReplacementEffectImpl {
|
|||
staticText = "if you would lose the game, instead exile {this} and your life total becomes 1";
|
||||
}
|
||||
|
||||
public TheGoldenThroneEffect(final TheGoldenThroneEffect effect) {
|
||||
private TheGoldenThroneEffect(final TheGoldenThroneEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class TheGreatAuroraEffect extends OneShotEffect {
|
|||
this.staticText = "Each player shuffles all cards from their hand and all permanents they own into their library, then draws that many cards. Each player may put any number of land cards from their hand onto the battlefield";
|
||||
}
|
||||
|
||||
public TheGreatAuroraEffect(final TheGreatAuroraEffect effect) {
|
||||
private TheGreatAuroraEffect(final TheGreatAuroraEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ class TheGreatSynthesisCastEffect extends OneShotEffect {
|
|||
this.staticText = "you may cast any number of spells from your hand without paying their mana costs";
|
||||
}
|
||||
|
||||
public TheGreatSynthesisCastEffect(final TheGreatSynthesisCastEffect effect) {
|
||||
private TheGreatSynthesisCastEffect(final TheGreatSynthesisCastEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class TheImmortalSunCantActivateEffect extends ContinuousRuleModifyingEffectImpl
|
|||
staticText = "Players can't activate planeswalkers' loyalty abilities";
|
||||
}
|
||||
|
||||
public TheImmortalSunCantActivateEffect(final TheImmortalSunCantActivateEffect effect) {
|
||||
private TheImmortalSunCantActivateEffect(final TheImmortalSunCantActivateEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class TheMendingOfDominariaFirstEffect extends OneShotEffect {
|
|||
this.staticText = "Mill two cards, then you may return a creature card from your graveyard to your hand";
|
||||
}
|
||||
|
||||
public TheMendingOfDominariaFirstEffect(final TheMendingOfDominariaFirstEffect effect) {
|
||||
private TheMendingOfDominariaFirstEffect(final TheMendingOfDominariaFirstEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ class TheMirariConjectureDelayedTriggeredAbility extends DelayedTriggeredAbility
|
|||
super(new CopyTargetSpellEffect(true), Duration.EndOfTurn, false);
|
||||
}
|
||||
|
||||
public TheMirariConjectureDelayedTriggeredAbility(final TheMirariConjectureDelayedTriggeredAbility ability) {
|
||||
private TheMirariConjectureDelayedTriggeredAbility(final TheMirariConjectureDelayedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ class TheMycosynthGardensCopyEffect extends OneShotEffect {
|
|||
this.staticText = "{this} becomes a copy of target nontoken artifact you control with mana value X.";
|
||||
}
|
||||
|
||||
public TheMycosynthGardensCopyEffect(final TheMycosynthGardensCopyEffect effect) {
|
||||
private TheMycosynthGardensCopyEffect(final TheMycosynthGardensCopyEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class TheRackTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("At the beginning of the chosen player's upkeep, ");
|
||||
}
|
||||
|
||||
public TheRackTriggeredAbility(final TheRackTriggeredAbility ability) {
|
||||
private TheRackTriggeredAbility(final TheRackTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -75,7 +75,7 @@ class TheRackEffect extends OneShotEffect {
|
|||
this.staticText = "{this} deals X damage to that player, where X is 3 minus the number of cards in their hand";
|
||||
}
|
||||
|
||||
public TheRackEffect(final TheRackEffect effect) {
|
||||
private TheRackEffect(final TheRackEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ class TheScarabGodEffect extends OneShotEffect {
|
|||
staticText = "each opponent loses X life and you scry X, where X is the number of Zombies you control";
|
||||
}
|
||||
|
||||
public TheScarabGodEffect(final TheScarabGodEffect effect) {
|
||||
private TheScarabGodEffect(final TheScarabGodEffect effect) {
|
||||
super(effect);
|
||||
this.numOfZombies = effect.numOfZombies;
|
||||
}
|
||||
|
|
@ -125,7 +125,7 @@ class TheScarabGodEffect2 extends OneShotEffect {
|
|||
this.staticText = "Exile target creature card from a graveyard. Create a token that's a copy of it, except it's a 4/4 black Zombie.";
|
||||
}
|
||||
|
||||
public TheScarabGodEffect2(final TheScarabGodEffect2 effect) {
|
||||
private TheScarabGodEffect2(final TheScarabGodEffect2 effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ class TheScorpionGodTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), false);
|
||||
}
|
||||
|
||||
public TheScorpionGodTriggeredAbility(TheScorpionGodTriggeredAbility ability) {
|
||||
private TheScorpionGodTriggeredAbility(final TheScorpionGodTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue