mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
clean all copy constructors in cards starting W-X-Y-Z (#11067)
This commit is contained in:
parent
96a2c277b2
commit
236860795a
183 changed files with 203 additions and 203 deletions
|
|
@ -53,7 +53,7 @@ class WaitingInTheWeedsEffect extends OneShotEffect {
|
|||
staticText = "Each player creates a 1/1 green Cat creature token for each untapped Forest they control";
|
||||
}
|
||||
|
||||
public WaitingInTheWeedsEffect(final WaitingInTheWeedsEffect effect) {
|
||||
private WaitingInTheWeedsEffect(final WaitingInTheWeedsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class WakeTheDeadReturnFromGraveyardToBattlefieldTargetEffect extends OneShotEff
|
|||
this.staticText = "Return X target creature cards from your graveyard to the battlefield. Sacrifice those creatures at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public WakeTheDeadReturnFromGraveyardToBattlefieldTargetEffect(final WakeTheDeadReturnFromGraveyardToBattlefieldTargetEffect effect) {
|
||||
private WakeTheDeadReturnFromGraveyardToBattlefieldTargetEffect(final WakeTheDeadReturnFromGraveyardToBattlefieldTargetEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class BecomesUntappedControlledPermanentTriggeredAbility extends TriggeredAbilit
|
|||
setTriggerPhrase("Whenever a permanent you control becomes untapped, ");
|
||||
}
|
||||
|
||||
public BecomesUntappedControlledPermanentTriggeredAbility(final BecomesUntappedControlledPermanentTriggeredAbility ability) {
|
||||
private BecomesUntappedControlledPermanentTriggeredAbility(final BecomesUntappedControlledPermanentTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ public final class WakingNightmare extends CardImpl {
|
|||
this.getSpellAbility().addTarget(new TargetPlayer());
|
||||
}
|
||||
|
||||
public WakingNightmare (final WakingNightmare card) {
|
||||
private WakingNightmare(final WakingNightmare card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class WalkingDesecrationEffect extends OneShotEffect {
|
|||
staticText = "Creatures of the creature type of your choice attack this turn if able";
|
||||
}
|
||||
|
||||
public WalkingDesecrationEffect(final WalkingDesecrationEffect effect) {
|
||||
private WalkingDesecrationEffect(final WalkingDesecrationEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class WallOfCaltropsAbility extends BlocksCreatureTriggeredAbility {
|
|||
super(new GainAbilitySourceEffect(BandingAbility.getInstance(), Duration.EndOfTurn));
|
||||
}
|
||||
|
||||
public WallOfCaltropsAbility(WallOfCaltropsAbility ability) {
|
||||
private WallOfCaltropsAbility(final WallOfCaltropsAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class WallOfDeceitEffect extends OneShotEffect {
|
|||
this.staticText = "Turn {this} face down";
|
||||
}
|
||||
|
||||
public WallOfDeceitEffect(final WallOfDeceitEffect effect) {
|
||||
private WallOfDeceitEffect(final WallOfDeceitEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public final class WallOfDenial extends CardImpl {
|
|||
this.addAbility(ShroudAbility.getInstance());
|
||||
}
|
||||
|
||||
public WallOfDenial (final WallOfDenial card) {
|
||||
private WallOfDenial(final WallOfDenial card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class WallOfDustRestrictionEffect extends RestrictionEffect {
|
|||
staticText = "that creature can't attack during its controller's next turn";
|
||||
}
|
||||
|
||||
public WallOfDustRestrictionEffect(final WallOfDustRestrictionEffect effect) {
|
||||
private WallOfDustRestrictionEffect(final WallOfDustRestrictionEffect effect) {
|
||||
super(effect);
|
||||
this.targetPermanentReference = effect.targetPermanentReference;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class WallOfEssenceTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever {this} is dealt combat damage, ");
|
||||
}
|
||||
|
||||
public WallOfEssenceTriggeredAbility(final WallOfEssenceTriggeredAbility effect) {
|
||||
private WallOfEssenceTriggeredAbility(final WallOfEssenceTriggeredAbility effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -91,7 +91,7 @@ class PiousWarriorGainLifeEffect extends OneShotEffect {
|
|||
staticText = "you gain that much life";
|
||||
}
|
||||
|
||||
public PiousWarriorGainLifeEffect(final PiousWarriorGainLifeEffect effect) {
|
||||
private PiousWarriorGainLifeEffect(final PiousWarriorGainLifeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class WallOfHopeTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever {this} is dealt damage, ");
|
||||
}
|
||||
|
||||
public WallOfHopeTriggeredAbility(final WallOfHopeTriggeredAbility effect) {
|
||||
private WallOfHopeTriggeredAbility(final WallOfHopeTriggeredAbility effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -85,7 +85,7 @@ class WallOfHopeGainLifeEffect extends OneShotEffect {
|
|||
staticText = "you gain that much life";
|
||||
}
|
||||
|
||||
public WallOfHopeGainLifeEffect(final WallOfHopeGainLifeEffect effect) {
|
||||
private WallOfHopeGainLifeEffect(final WallOfHopeGainLifeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public final class WallOfReverence extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public WallOfReverence (final WallOfReverence card) {
|
||||
private WallOfReverence(final WallOfReverence card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public final class WallOfShields extends CardImpl {
|
|||
this.addAbility(BandingAbility.getInstance());
|
||||
}
|
||||
|
||||
public WallOfShields (final WallOfShields card) {
|
||||
private WallOfShields(final WallOfShields card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class WallOfSoulsTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever {this} is dealt combat damage, ");
|
||||
}
|
||||
|
||||
public WallOfSoulsTriggeredAbility(final WallOfSoulsTriggeredAbility effect) {
|
||||
private WallOfSoulsTriggeredAbility(final WallOfSoulsTriggeredAbility effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ class WallOfStolenIdentityCopyEffect extends OneShotEffect {
|
|||
staticText = rule2;
|
||||
}
|
||||
|
||||
public WallOfStolenIdentityCopyEffect(final WallOfStolenIdentityCopyEffect effect) {
|
||||
private WallOfStolenIdentityCopyEffect(final WallOfStolenIdentityCopyEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public final class WallOfTanglecord extends CardImpl {
|
|||
new ManaCostsImpl<>("{G}")));
|
||||
}
|
||||
|
||||
public WallOfTanglecord (final WallOfTanglecord card) {
|
||||
private WallOfTanglecord(final WallOfTanglecord card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class WallOfTombstonesEffect extends OneShotEffect {
|
|||
this.staticText = "change {this}'s base toughness to 1 plus the number of creature cards in your graveyard";
|
||||
}
|
||||
|
||||
public WallOfTombstonesEffect(final WallOfTombstonesEffect effect) {
|
||||
private WallOfTombstonesEffect(final WallOfTombstonesEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class WallOfVipersFilter extends FilterCreaturePermanent {
|
|||
super("creature {this} is blocking");
|
||||
}
|
||||
|
||||
public WallOfVipersFilter(final WallOfVipersFilter filter) {
|
||||
private WallOfVipersFilter(final WallOfVipersFilter filter) {
|
||||
super(filter);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class WandOfDenialEffect extends OneShotEffect {
|
|||
this.staticText = "Look at the top card of target player's library. If it's a nonland card, you may pay 2 life. If you do, put it into that player's graveyard.";
|
||||
}
|
||||
|
||||
public WandOfDenialEffect(final WandOfDenialEffect effect) {
|
||||
private WandOfDenialEffect(final WandOfDenialEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class WandOfIthEffect extends OneShotEffect {
|
|||
staticText = "Target player reveals a card at random from their hand. If it's a land card, that player discards it unless they pay 1 life. If it isn't a land card, the player discards it unless they pay life equal to its mana value";
|
||||
}
|
||||
|
||||
public WandOfIthEffect(final WandOfIthEffect effect) {
|
||||
private WandOfIthEffect(final WandOfIthEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class WanderingFumaroleToken extends TokenImpl {
|
|||
toughness = new MageInt(4);
|
||||
addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new SwitchPowerToughnessSourceEffect(Duration.EndOfTurn), new ManaCostsImpl<>("{0}")));
|
||||
}
|
||||
public WanderingFumaroleToken(final WanderingFumaroleToken token) {
|
||||
private WanderingFumaroleToken(final WanderingFumaroleToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ class WanderingMageCost extends CostImpl {
|
|||
this.text = "Put a -1/-1 counter on a creature you control";
|
||||
}
|
||||
|
||||
public WanderingMageCost(WanderingMageCost cost) {
|
||||
private WanderingMageCost(final WanderingMageCost cost) {
|
||||
super(cost);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ public final class WanderingOnes extends CardImpl {
|
|||
this.toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
public WanderingOnes (final WanderingOnes card) {
|
||||
private WanderingOnes(final WanderingOnes card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class WarElementalTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new WarElementalEffect(), false);
|
||||
}
|
||||
|
||||
public WarElementalTriggeredAbility(final WarElementalTriggeredAbility ability) {
|
||||
private WarElementalTriggeredAbility(final WarElementalTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -94,7 +94,7 @@ class WarElementalEffect extends OneShotEffect {
|
|||
super(Outcome.Benefit);
|
||||
}
|
||||
|
||||
public WarElementalEffect(final WarElementalEffect effect) {
|
||||
private WarElementalEffect(final WarElementalEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public final class WarElephant extends CardImpl {
|
|||
this.addAbility(BandingAbility.getInstance());
|
||||
}
|
||||
|
||||
public WarElephant (final WarElephant card) {
|
||||
private WarElephant(final WarElephant card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class WarFalconEffect extends RestrictionEffect {
|
|||
staticText = "{this} can't attack unless you control a Knight or a Soldier";
|
||||
}
|
||||
|
||||
public WarFalconEffect(final WarFalconEffect effect) {
|
||||
private WarFalconEffect(final WarFalconEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ class WarReportEffect extends OneShotEffect {
|
|||
staticText = "You gain life equal to the number of creatures on the battlefield plus the number of artifacts on the battlefield";
|
||||
}
|
||||
|
||||
public WarReportEffect(final WarReportEffect effect) {
|
||||
private WarReportEffect(final WarReportEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ public class WarRoomStarWars extends CardImpl {
|
|||
this.addAbility(limitedTimesPerTurnActivatedAbility, new AttackedOrBlockedThisCombatWatcher());
|
||||
}
|
||||
|
||||
public WarRoomStarWars(final WarRoomStarWars card) {
|
||||
private WarRoomStarWars(final WarRoomStarWars card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class WardOfBonesEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
+ "Each opponent who controls more lands than you can't play lands.";
|
||||
}
|
||||
|
||||
public WardOfBonesEffect(final WardOfBonesEffect effect) {
|
||||
private WardOfBonesEffect(final WardOfBonesEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class WardOfPietyPreventDamageTargetEffect extends RedirectionEffect {
|
|||
staticText = "The next 1 damage that would be dealt to enchanted creature this turn is dealt to any target instead";
|
||||
}
|
||||
|
||||
public WardOfPietyPreventDamageTargetEffect(final WardOfPietyPreventDamageTargetEffect effect) {
|
||||
private WardOfPietyPreventDamageTargetEffect(final WardOfPietyPreventDamageTargetEffect effect) {
|
||||
super(effect);
|
||||
this.redirectToObject = effect.redirectToObject;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class WardSliverGainAbilityControlledEffect extends ContinuousEffectImpl {
|
|||
staticText = "all Slivers have protection from the chosen color";
|
||||
}
|
||||
|
||||
public WardSliverGainAbilityControlledEffect(final WardSliverGainAbilityControlledEffect effect) {
|
||||
private WardSliverGainAbilityControlledEffect(final WardSliverGainAbilityControlledEffect effect) {
|
||||
super(effect);
|
||||
protectionFilter = effect.protectionFilter;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class GargoyleToken extends TokenImpl {
|
|||
addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public GargoyleToken(final GargoyleToken token) {
|
||||
private GargoyleToken(final GargoyleToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class WardscaleDragonRuleEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
staticText = "As long as {this} is attacking, defending player can't cast spells";
|
||||
}
|
||||
|
||||
public WardscaleDragonRuleEffect(final WardscaleDragonRuleEffect effect) {
|
||||
private WardscaleDragonRuleEffect(final WardscaleDragonRuleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class WarmongersChariotEffect extends AsThoughEffectImpl {
|
|||
staticText = "As long as equipped creature has defender, it can attack as though it didn't have defender";
|
||||
}
|
||||
|
||||
public WarmongersChariotEffect(final WarmongersChariotEffect effect) {
|
||||
private WarmongersChariotEffect(final WarmongersChariotEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class WarpWorldEffect extends OneShotEffect {
|
|||
this.staticText = "Each player shuffles all permanents they own into their library, then reveals that many cards from the top of their library. Each player puts all artifact, creature, and land cards revealed this way onto the battlefield, then does the same for enchantment cards, then puts all cards revealed this way that weren't put onto the battlefield on the bottom of their library";
|
||||
}
|
||||
|
||||
public WarpWorldEffect(final WarpWorldEffect effect) {
|
||||
private WarpWorldEffect(final WarpWorldEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class WarpedDevotionTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DiscardTargetEffect(1), false);
|
||||
}
|
||||
|
||||
public WarpedDevotionTriggeredAbility(final WarpedDevotionTriggeredAbility ability) {
|
||||
private WarpedDevotionTriggeredAbility(final WarpedDevotionTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class WarrenPilferersReturnEffect extends OneShotEffect {
|
|||
staticText = "return target creature card from your graveyard to your hand. If that card is a Goblin card, Warren Pilferers gains haste until end of turn";
|
||||
}
|
||||
|
||||
public WarrenPilferersReturnEffect(final WarrenPilferersReturnEffect effect) {
|
||||
private WarrenPilferersReturnEffect(final WarrenPilferersReturnEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class WarsTollTapEffect extends OneShotEffect {
|
|||
staticText = "tap all lands that player controls";
|
||||
}
|
||||
|
||||
public WarsTollTapEffect(final WarsTollTapEffect effect) {
|
||||
private WarsTollTapEffect(final WarsTollTapEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -81,7 +81,7 @@ class WarsTollAttackRestrictionEffect extends RestrictionEffect {
|
|||
staticText = "If a creature an opponent controls attacks, all creatures that opponent controls attack if able";
|
||||
}
|
||||
|
||||
public WarsTollAttackRestrictionEffect(final WarsTollAttackRestrictionEffect effect) {
|
||||
private WarsTollAttackRestrictionEffect(final WarsTollAttackRestrictionEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class WarstormSurgeTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new WarstormSurgeEffect(), false);
|
||||
}
|
||||
|
||||
public WarstormSurgeTriggeredAbility(WarstormSurgeTriggeredAbility ability) {
|
||||
private WarstormSurgeTriggeredAbility(final WarstormSurgeTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -87,7 +87,7 @@ class WarstormSurgeEffect extends OneShotEffect {
|
|||
staticText = "it deals damage equal to its power to any target";
|
||||
}
|
||||
|
||||
public WarstormSurgeEffect(final WarstormSurgeEffect effect) {
|
||||
private WarstormSurgeEffect(final WarstormSurgeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class WashOutEffect extends OneShotEffect {
|
|||
staticText = "Return all permanents of the color of your choice to their owners' hands";
|
||||
}
|
||||
|
||||
public WashOutEffect(final WashOutEffect effect) {
|
||||
private WashOutEffect(final WashOutEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class WasitoraNekoruQueenEffect extends OneShotEffect {
|
|||
staticText = "that player sacrifices a creature. If the player can't, you create a 3/3 black, red, and green Cat Dragon creature token with flying";
|
||||
}
|
||||
|
||||
public WasitoraNekoruQueenEffect(final WasitoraNekoruQueenEffect effect) {
|
||||
private WasitoraNekoruQueenEffect(final WasitoraNekoruQueenEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class WatchdogFilter extends FilterAttackingCreature {
|
|||
super("creatures attacking you");
|
||||
}
|
||||
|
||||
public WatchdogFilter(final WatchdogFilter filter) {
|
||||
private WatchdogFilter(final WatchdogFilter filter) {
|
||||
super(filter);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class WatchersOfTheDeadEffect extends OneShotEffect {
|
|||
this.staticText = "Each opponent chooses 2 cards in their graveyard and exiles the rest";
|
||||
}
|
||||
|
||||
public WatchersOfTheDeadEffect(final WatchersOfTheDeadEffect effect) {
|
||||
private WatchersOfTheDeadEffect(final WatchersOfTheDeadEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ public final class Watchwolf extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
}
|
||||
|
||||
public Watchwolf (final Watchwolf card) {
|
||||
private Watchwolf(final Watchwolf card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class WaveOfReckoningDamageEffect extends OneShotEffect {
|
|||
staticText = "each creature deals damage to itself equal to its power";
|
||||
}
|
||||
|
||||
public WaveOfReckoningDamageEffect(final WaveOfReckoningDamageEffect effect) {
|
||||
private WaveOfReckoningDamageEffect(final WaveOfReckoningDamageEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class WaveOfVitriolEffect extends OneShotEffect {
|
|||
this.staticText = "Each player sacrifices all artifacts, enchantments, and nonbasic lands they control. For each land sacrificed this way, its controller may search their library for a basic land card and put it onto the battlefield tapped. Then each player who searched their library this way shuffles";
|
||||
}
|
||||
|
||||
public WaveOfVitriolEffect(final WaveOfVitriolEffect effect) {
|
||||
private WaveOfVitriolEffect(final WaveOfVitriolEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ public final class WaveskimmerAven extends CardImpl {
|
|||
this.addAbility(new ExaltedAbility());
|
||||
}
|
||||
|
||||
public WaveskimmerAven (final WaveskimmerAven card) {
|
||||
private WaveskimmerAven(final WaveskimmerAven card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class WaylayEffect extends OneShotEffect {
|
|||
this.staticText = "Create three 2/2 white Knight creature tokens. Exile them at the beginning of the next cleanup step.";
|
||||
}
|
||||
|
||||
public WaylayEffect(final WaylayEffect effect) {
|
||||
private WaylayEffect(final WaylayEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class WebOfInertiaEffect extends OneShotEffect {
|
|||
this.staticText = "that player may exile a card from their graveyard. If the player doesn't, creatures they control can't attack you this turn";
|
||||
}
|
||||
|
||||
public WebOfInertiaEffect(final WebOfInertiaEffect effect) {
|
||||
private WebOfInertiaEffect(final WebOfInertiaEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -87,7 +87,7 @@ class WebOfInertiaRestrictionEffect extends RestrictionEffect {
|
|||
this.attackerID = attackerID;
|
||||
}
|
||||
|
||||
public WebOfInertiaRestrictionEffect(final WebOfInertiaRestrictionEffect effect) {
|
||||
private WebOfInertiaRestrictionEffect(final WebOfInertiaRestrictionEffect effect) {
|
||||
super(effect);
|
||||
this.attackerID = effect.attackerID;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class WeedStrangleEffect extends OneShotEffect {
|
|||
this.staticText = "Destroy target creature. Clash with an opponent. If you win, you gain life equal to that creature's toughness";
|
||||
}
|
||||
|
||||
public WeedStrangleEffect(final WeedStrangleEffect effect) {
|
||||
private WeedStrangleEffect(final WeedStrangleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class WeirdHarvestEffect extends OneShotEffect {
|
|||
this.staticText = "each player may search their library for up to X creature cards, reveal those cards, put them into their hand, then shuffle";
|
||||
}
|
||||
|
||||
public WeirdHarvestEffect(final WeirdHarvestEffect effect) {
|
||||
private WeirdHarvestEffect(final WeirdHarvestEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ public final class WeldingJar extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public WeldingJar (final WeldingJar card) {
|
||||
private WeldingJar(final WeldingJar card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ public final class WelkinTern extends CardImpl {
|
|||
this.addAbility(new CanBlockOnlyFlyingAbility());
|
||||
}
|
||||
|
||||
public WelkinTern (final WelkinTern card) {
|
||||
private WelkinTern(final WelkinTern card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ class WellLaidPlansPreventionEffect extends PreventionEffectImpl {
|
|||
this.staticText = "Prevent all damage that would be dealt to a creature by another creature if they share a color";
|
||||
}
|
||||
|
||||
public WellLaidPlansPreventionEffect(final WellLaidPlansPreventionEffect effect) {
|
||||
private WellLaidPlansPreventionEffect(final WellLaidPlansPreventionEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ class WellOfKnowledgeConditionalActivatedAbility extends ActivatedAbilityImpl {
|
|||
condition = new IsStepCondition(PhaseStep.DRAW, false);
|
||||
}
|
||||
|
||||
public WellOfKnowledgeConditionalActivatedAbility(final WellOfKnowledgeConditionalActivatedAbility ability) {
|
||||
private WellOfKnowledgeConditionalActivatedAbility(final WellOfKnowledgeConditionalActivatedAbility ability) {
|
||||
super(ability);
|
||||
this.condition = ability.condition;
|
||||
}
|
||||
|
|
@ -86,7 +86,7 @@ class WellOfKnowledgeEffect extends OneShotEffect {
|
|||
super(Outcome.DrawCard);
|
||||
}
|
||||
|
||||
public WellOfKnowledgeEffect(final WellOfKnowledgeEffect effect) {
|
||||
private WellOfKnowledgeEffect(final WellOfKnowledgeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class WellOfLostDreamsEffect extends OneShotEffect {
|
|||
this.staticText = "you may pay {X}, where X is less than or equal to the amount of life you gained. If you do, draw X cards";
|
||||
}
|
||||
|
||||
public WellOfLostDreamsEffect(final WellOfLostDreamsEffect effect) {
|
||||
private WellOfLostDreamsEffect(final WellOfLostDreamsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class WheelOfSunAndMoonEffect extends ReplacementEffectImpl {
|
|||
staticText = "If a card would be put into enchanted player's graveyard from anywhere, instead that card is revealed and put on the bottom of that player's library";
|
||||
}
|
||||
|
||||
public WheelOfSunAndMoonEffect(final WheelOfSunAndMoonEffect effect) {
|
||||
private WheelOfSunAndMoonEffect(final WheelOfSunAndMoonEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class WhenFluffyBunniesAttackEffect extends OneShotEffect {
|
|||
staticText = "Target creature gets -X/-X until end of turn, where X is the number of times the letter of your choice appears in that creature's name";
|
||||
}
|
||||
|
||||
public WhenFluffyBunniesAttackEffect(final WhenFluffyBunniesAttackEffect effect) {
|
||||
private WhenFluffyBunniesAttackEffect(final WhenFluffyBunniesAttackEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class WhimsOfTheFateEffect extends OneShotEffect {
|
|||
this.staticText = "Starting with you, each player separates all permanents they control into three piles. Then each player chooses one of their piles at random and sacrifices those permanents.";
|
||||
}
|
||||
|
||||
public WhimsOfTheFateEffect(final WhimsOfTheFateEffect effect) {
|
||||
private WhimsOfTheFateEffect(final WhimsOfTheFateEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class WhipkeeperEffect extends OneShotEffect {
|
|||
super(Outcome.Damage);
|
||||
staticText = "{this} deals damage to target creature equal to the damage already dealt to it this turn.";
|
||||
}
|
||||
public WhipkeeperEffect(final WhipkeeperEffect effect) {
|
||||
private WhipkeeperEffect(final WhipkeeperEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class WhiptongueHydraEffect extends OneShotEffect {
|
|||
+ "Put a +1/+1 counter on {this} for each creature destroyed this way";
|
||||
}
|
||||
|
||||
public WhiptongueHydraEffect(final WhiptongueHydraEffect effect) {
|
||||
private WhiptongueHydraEffect(final WhiptongueHydraEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class WhirlpoolWarriorActivatedEffect extends OneShotEffect {
|
|||
this.staticText = "Each player shuffles the cards from their hand into their library, then draws that many cards";
|
||||
}
|
||||
|
||||
public WhirlpoolWarriorActivatedEffect(final WhirlpoolWarriorActivatedEffect effect) {
|
||||
private WhirlpoolWarriorActivatedEffect(final WhirlpoolWarriorActivatedEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class WhirlpoolWhelmEffect extends OneShotEffect {
|
|||
this.staticText = "Clash with an opponent, then return target creature to its owner's hand. If you win, you may put that creature on top of its owner's library instead";
|
||||
}
|
||||
|
||||
public WhirlpoolWhelmEffect(final WhirlpoolWhelmEffect effect) {
|
||||
private WhirlpoolWhelmEffect(final WhirlpoolWhelmEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class WhisperingSnitchTriggeredAbility extends TriggeredAbilityImpl {
|
|||
this.addWatcher(new WhisperingSnitchWatcher());
|
||||
}
|
||||
|
||||
public WhisperingSnitchTriggeredAbility(final WhisperingSnitchTriggeredAbility ability) {
|
||||
private WhisperingSnitchTriggeredAbility(final WhisperingSnitchTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ public final class WhiteSunsZenith extends CardImpl {
|
|||
this.getSpellAbility().addEffect(ShuffleSpellEffect.getInstance());
|
||||
}
|
||||
|
||||
public WhiteSunsZenith (final WhiteSunsZenith card) {
|
||||
private WhiteSunsZenith(final WhiteSunsZenith card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ public final class WhitesunsPassage extends CardImpl {
|
|||
this.getSpellAbility().addEffect(new GainLifeEffect(5));
|
||||
}
|
||||
|
||||
public WhitesunsPassage (final WhitesunsPassage card) {
|
||||
private WhitesunsPassage(final WhitesunsPassage card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ public final class WickedReward extends CardImpl {
|
|||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
public WickedReward(WickedReward other) {
|
||||
private WickedReward(final WickedReward other) {
|
||||
super(other);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class WidespreadPanicTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever a spell or ability causes its controller to shuffle their library, ");
|
||||
}
|
||||
|
||||
public WidespreadPanicTriggeredAbility(final WidespreadPanicTriggeredAbility ability) {
|
||||
private WidespreadPanicTriggeredAbility(final WidespreadPanicTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -82,7 +82,7 @@ class WidespreadPanicEffect extends OneShotEffect {
|
|||
this.staticText = "that player puts a card from their hand on top of their library";
|
||||
}
|
||||
|
||||
public WidespreadPanicEffect(final WidespreadPanicEffect effect) {
|
||||
private WidespreadPanicEffect(final WidespreadPanicEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ class CreaturesYouControlBecomesTargetTriggeredAbility extends TriggeredAbilityI
|
|||
super(Zone.BATTLEFIELD, effect);
|
||||
}
|
||||
|
||||
public CreaturesYouControlBecomesTargetTriggeredAbility(final CreaturesYouControlBecomesTargetTriggeredAbility ability) {
|
||||
private CreaturesYouControlBecomesTargetTriggeredAbility(final CreaturesYouControlBecomesTargetTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class WildDogsEffect extends OneShotEffect {
|
|||
this.staticText = "the player with the most life gains control of {this}";
|
||||
}
|
||||
|
||||
public WildDogsEffect(final WildDogsEffect effect) {
|
||||
private WildDogsEffect(final WildDogsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class WildEvocationEffect extends OneShotEffect {
|
|||
+ "Otherwise, the player casts it without paying its mana cost if able";
|
||||
}
|
||||
|
||||
public WildEvocationEffect(final WildEvocationEffect effect) {
|
||||
private WildEvocationEffect(final WildEvocationEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class WildMagicSorcererGainCascadeFirstSpellCastFromExileEffect extends Continuo
|
|||
staticText = "The first spell you cast from exile each turn has cascade";
|
||||
}
|
||||
|
||||
public WildMagicSorcererGainCascadeFirstSpellCastFromExileEffect(final WildMagicSorcererGainCascadeFirstSpellCastFromExileEffect effect) {
|
||||
private WildMagicSorcererGainCascadeFirstSpellCastFromExileEffect(final WildMagicSorcererGainCascadeFirstSpellCastFromExileEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class WildMammothEffect extends OneShotEffect {
|
|||
this.staticText = "if a player controls more creatures than each other player, the player who controls the most creatures gains control of {this}";
|
||||
}
|
||||
|
||||
public WildMammothEffect(final WildMammothEffect effect) {
|
||||
private WildMammothEffect(final WildMammothEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class WildPairEffect extends OneShotEffect {
|
|||
this.staticText = "search your library for a creature card with the same total power and toughness and put it onto the battlefield";
|
||||
}
|
||||
|
||||
public WildPairEffect(final WildPairEffect effect) {
|
||||
private WildPairEffect(final WildPairEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class WildSwingEffect extends OneShotEffect {
|
|||
this.staticText = "Choose three target nonenchantment permanents. Destroy one of them at random";
|
||||
}
|
||||
|
||||
public WildSwingEffect(final WildSwingEffect effect) {
|
||||
private WildSwingEffect(final WildSwingEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class WildWurmEffect extends OneShotEffect {
|
|||
staticText = "flip a coin. If you lose the flip, return {this} to its owner's hand";
|
||||
}
|
||||
|
||||
public WildWurmEffect(WildWurmEffect effect) {
|
||||
private WildWurmEffect(final WildWurmEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class WildcallEffect extends OneShotEffect {
|
|||
this.staticText = "Manifest the top card of your library, then put X +1/+1 counters on it";
|
||||
}
|
||||
|
||||
public WildcallEffect(final WildcallEffect effect) {
|
||||
private WildcallEffect(final WildcallEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ public final class WildfieldBorderpost extends CardImpl {
|
|||
this.addAbility(new WhiteManaAbility());
|
||||
}
|
||||
|
||||
public WildfieldBorderpost (final WildfieldBorderpost card) {
|
||||
private WildfieldBorderpost(final WildfieldBorderpost card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class WildwoodEscortEffect extends ReplacementEffectImpl {
|
|||
staticText = "if {this} would die, exile it instead";
|
||||
}
|
||||
|
||||
public WildwoodEscortEffect(final WildwoodEscortEffect effect) {
|
||||
private WildwoodEscortEffect(final WildwoodEscortEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class WillingTestSubjectTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.P1P1.createInstance()));
|
||||
}
|
||||
|
||||
public WillingTestSubjectTriggeredAbility(final WillingTestSubjectTriggeredAbility ability) {
|
||||
private WillingTestSubjectTriggeredAbility(final WillingTestSubjectTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ public final class WindZendikon extends CardImpl {
|
|||
toughness = new MageInt(2);
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
public WindZendikonElementalToken(final WindZendikonElementalToken token) {
|
||||
private WindZendikonElementalToken(final WindZendikonElementalToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class WindreaderSphinxTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever a creature with flying attacks, ");
|
||||
}
|
||||
|
||||
public WindreaderSphinxTriggeredAbility(final WindreaderSphinxTriggeredAbility ability) {
|
||||
private WindreaderSphinxTriggeredAbility(final WindreaderSphinxTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ public final class WindriderEel extends CardImpl {
|
|||
this.addAbility(new LandfallAbility(new BoostSourceEffect(2, 2, Duration.EndOfTurn), false));
|
||||
}
|
||||
|
||||
public WindriderEel (final WindriderEel card) {
|
||||
private WindriderEel(final WindriderEel card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ class WindsOfChangeEffect extends OneShotEffect {
|
|||
this.staticText = "Each player shuffles the cards from their hand into their library, then draws that many cards";
|
||||
}
|
||||
|
||||
public WindsOfChangeEffect(final WindsOfChangeEffect effect) {
|
||||
private WindsOfChangeEffect(final WindsOfChangeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class WingPunctureEffect extends OneShotEffect {
|
|||
staticText = "Target creature you control deals damage equal to its power to target creature with flying";
|
||||
}
|
||||
|
||||
public WingPunctureEffect(final WingPunctureEffect effect) {
|
||||
private WingPunctureEffect(final WingPunctureEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class WingStormEffect extends OneShotEffect {
|
|||
this.staticText = "{this} deals damage to each player equal to twice the number of creatures with flying that player controls";
|
||||
}
|
||||
|
||||
public WingStormEffect(final WingStormEffect effect) {
|
||||
private WingStormEffect(final WingStormEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public final class WingedCoatl extends CardImpl {
|
|||
this.addAbility(DeathtouchAbility.getInstance());
|
||||
}
|
||||
|
||||
public WingedCoatl (final WingedCoatl card) {
|
||||
private WingedCoatl(final WingedCoatl card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class WingedTempleOfOrazcaEffect extends OneShotEffect {
|
|||
this.staticText = "target creature you control gains flying and gets +X/+X until end of turn, where X is its power";
|
||||
}
|
||||
|
||||
public WingedTempleOfOrazcaEffect(final WingedTempleOfOrazcaEffect effect) {
|
||||
private WingedTempleOfOrazcaEffect(final WingedTempleOfOrazcaEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class WingsOfHubrisEffect extends OneShotEffect {
|
|||
this.staticText = "Equipped creature can't be blocked this turn. Sacrifice it at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public WingsOfHubrisEffect(final WingsOfHubrisEffect effect) {
|
||||
private WingsOfHubrisEffect(final WingsOfHubrisEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class WinnowEffect extends DestroyTargetEffect {
|
|||
staticText = "Destroy target nonland permanent if another permanent with the same name is on the battlefield";
|
||||
}
|
||||
|
||||
public WinnowEffect(final WinnowEffect effect) {
|
||||
private WinnowEffect(final WinnowEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class WinterOrbEffect extends RestrictionUntapNotMoreThanEffect {
|
|||
staticText = "As long as Winter Orb is untapped, players can't untap more than one land during their untap steps";
|
||||
}
|
||||
|
||||
public WinterOrbEffect(final WinterOrbEffect effect) {
|
||||
private WinterOrbEffect(final WinterOrbEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class WinterSkyEffect extends OneShotEffect {
|
|||
staticText = "Flip a coin. If you win the flip, {this} deals 1 damage to each creature and each player. If you lose the flip, each player draws a card";
|
||||
}
|
||||
|
||||
public WinterSkyEffect(WinterSkyEffect effect) {
|
||||
private WinterSkyEffect(final WinterSkyEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class WireSurgeonsEffect extends ContinuousEffectImpl {
|
|||
"Its encore cost is equal to its mana cost.";
|
||||
}
|
||||
|
||||
public WireSurgeonsEffect(final WireSurgeonsEffect effect) {
|
||||
private WireSurgeonsEffect(final WireSurgeonsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ public final class Wirecat extends CardImpl {
|
|||
staticText = "{this} can't attack or block if an enchantment is on the battlefield";
|
||||
}
|
||||
|
||||
public WirecatEffect(final WirecatEffect effect) {
|
||||
private WirecatEffect(final WirecatEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class WishfulMerfolkEffect extends ContinuousEffectImpl {
|
|||
staticText = "{this} loses defender and becomes a Human until end of turn";
|
||||
}
|
||||
|
||||
public WishfulMerfolkEffect(final WishfulMerfolkEffect effect) {
|
||||
private WishfulMerfolkEffect(final WishfulMerfolkEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class WishmongerEffect extends OneShotEffect {
|
|||
staticText = "Target creature gains protection from the color of its controller's choice until end of turn";
|
||||
}
|
||||
|
||||
public WishmongerEffect(final WishmongerEffect effect) {
|
||||
private WishmongerEffect(final WishmongerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -112,7 +112,7 @@ class ProtectionChosenColorTargetEffect extends ContinuousEffectImpl {
|
|||
super(Duration.EndOfTurn, Layer.AbilityAddingRemovingEffects_6, SubLayer.NA, Outcome.AddAbility);
|
||||
}
|
||||
|
||||
public ProtectionChosenColorTargetEffect(final ProtectionChosenColorTargetEffect effect) {
|
||||
private ProtectionChosenColorTargetEffect(final ProtectionChosenColorTargetEffect effect) {
|
||||
super(effect);
|
||||
if (effect.chosenColor != null) {
|
||||
this.chosenColor = effect.chosenColor.copy();
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ public final class WistfulSelkie extends CardImpl {
|
|||
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1)));
|
||||
}
|
||||
|
||||
public WistfulSelkie (final WistfulSelkie card) {
|
||||
private WistfulSelkie(final WistfulSelkie card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class WitchEngineEffect extends ContinuousEffectImpl {
|
|||
staticText = "target opponent gains control of {this}";
|
||||
}
|
||||
|
||||
public WitchEngineEffect(final WitchEngineEffect effect) {
|
||||
private WitchEngineEffect(final WitchEngineEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class WitchHuntEffect extends ContinuousEffectImpl {
|
|||
staticText = "target opponent chosen at random gains control of {this}";
|
||||
}
|
||||
|
||||
public WitchHuntEffect(final WitchHuntEffect effect) {
|
||||
private WitchHuntEffect(final WitchHuntEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class WitchMawNephilimEffect extends OneShotEffect {
|
|||
this.staticText = "it gains trample until end of turn if its power is 10 or greater";
|
||||
}
|
||||
|
||||
public WitchMawNephilimEffect(final WitchMawNephilimEffect effect) {
|
||||
private WitchMawNephilimEffect(final WitchMawNephilimEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
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