forked from External/mage
refactor: clean package-private copy constructors in cards starting A to G (#11125)
This commit is contained in:
parent
239a566161
commit
b672fd6da5
308 changed files with 336 additions and 336 deletions
|
|
@ -47,7 +47,7 @@ class AbundanceReplacementEffect extends ReplacementEffectImpl {
|
|||
staticText = "If you would draw a card, you may instead choose land or nonland and reveal cards from the top of your library until you reveal a card of the chosen kind. Put that card into your hand and put all other cards revealed this way on the bottom of your library in any order";
|
||||
}
|
||||
|
||||
AbundanceReplacementEffect(final AbundanceReplacementEffect effect) {
|
||||
private AbundanceReplacementEffect(final AbundanceReplacementEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class AcademicProbationRestrictionEffect extends RestrictionEffect {
|
|||
staticText = "choose target nonland permanent. Until your next turn, it can't attack or block, and its activated abilities can't be activated";
|
||||
}
|
||||
|
||||
AcademicProbationRestrictionEffect(final AcademicProbationRestrictionEffect effect) {
|
||||
private AcademicProbationRestrictionEffect(final AcademicProbationRestrictionEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class AcademyResearchersEffect extends OneShotEffect {
|
|||
this.staticText = "you may put an Aura card from your hand onto the battlefield attached to {this}.";
|
||||
}
|
||||
|
||||
AcademyResearchersEffect(final AcademyResearchersEffect effect) {
|
||||
private AcademyResearchersEffect(final AcademyResearchersEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ class AcidicSoilEffect extends OneShotEffect {
|
|||
staticText = "{this} deals damage to each player equal to the number of lands they control";
|
||||
}
|
||||
|
||||
AcidicSoilEffect(final AcidicSoilEffect effect) {
|
||||
private AcidicSoilEffect(final AcidicSoilEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class AddleEffect extends OneShotEffect {
|
|||
staticText = "Choose a color. Target player reveals their hand and you choose a card of that color from it. That player discards that card.";
|
||||
}
|
||||
|
||||
AddleEffect(final AddleEffect effect) {
|
||||
private AddleEffect(final AddleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class AetherBarrierEffect extends SacrificeEffect {
|
|||
this.staticText = "that player sacrifices a permanent unless they pay {1}";
|
||||
}
|
||||
|
||||
AetherBarrierEffect(final AetherBarrierEffect effect) {
|
||||
private AetherBarrierEffect(final AetherBarrierEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ class AethersnatchEffect extends OneShotEffect {
|
|||
this.staticText = "Gain control of target spell. You may choose new targets for it";
|
||||
}
|
||||
|
||||
AethersnatchEffect(final AethersnatchEffect effect) {
|
||||
private AethersnatchEffect(final AethersnatchEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class AethertowEffect extends OneShotEffect {
|
|||
staticText = "Put target attacking or blocking creature on top of its owner's library";
|
||||
}
|
||||
|
||||
AethertowEffect(final AethertowEffect effect) {
|
||||
private AethertowEffect(final AethertowEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class AetherworksMarvelEffect extends OneShotEffect {
|
|||
+ "library in a random order";
|
||||
}
|
||||
|
||||
AetherworksMarvelEffect(final AetherworksMarvelEffect effect) {
|
||||
private AetherworksMarvelEffect(final AetherworksMarvelEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -112,7 +112,7 @@ class TokTokVolcanoBornEffect extends ReplacementEffectImpl {
|
|||
staticText = "If a red source would deal damage to a player, it deals that much damage plus 1 to that player instead";
|
||||
}
|
||||
|
||||
TokTokVolcanoBornEffect(final TokTokVolcanoBornEffect effect) {
|
||||
private TokTokVolcanoBornEffect(final TokTokVolcanoBornEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class AlAbarasCarpetEffect extends PreventionEffectImpl {
|
|||
staticText = "Prevent all damage that would be dealt to you this turn by attacking creatures without flying";
|
||||
}
|
||||
|
||||
AlAbarasCarpetEffect(final AlAbarasCarpetEffect effect) {
|
||||
private AlAbarasCarpetEffect(final AlAbarasCarpetEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ class AllIsDustEffect extends OneShotEffect {
|
|||
staticText = "Each player sacrifices all permanents they control that are one or more colors";
|
||||
}
|
||||
|
||||
AllIsDustEffect(final AllIsDustEffect effect) {
|
||||
private AllIsDustEffect(final AllIsDustEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ class AmuletOfVigorTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new UntapTargetEffect());
|
||||
}
|
||||
|
||||
AmuletOfVigorTriggeredAbility(final AmuletOfVigorTriggeredAbility ability) {
|
||||
private AmuletOfVigorTriggeredAbility(final AmuletOfVigorTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class BoostEffect extends OneShotEffect {
|
|||
this.amount = amount;
|
||||
}
|
||||
|
||||
BoostEffect(final BoostEffect effect) {
|
||||
private BoostEffect(final BoostEffect effect) {
|
||||
super(effect);
|
||||
this.amount = effect.amount;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class AnakinSkywalkerEffect extends ReplacementEffectImpl {
|
|||
staticText = "If {this} would die, regenerate and transform him instead";
|
||||
}
|
||||
|
||||
AnakinSkywalkerEffect(final AnakinSkywalkerEffect effect) {
|
||||
private AnakinSkywalkerEffect(final AnakinSkywalkerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class AncestralKnowledgeEffect extends OneShotEffect {
|
|||
this.staticText = "look at the top ten cards of your library, then exile any number of them and put the rest back on top of your library in any order";
|
||||
}
|
||||
|
||||
AncestralKnowledgeEffect(final AncestralKnowledgeEffect effect) {
|
||||
private AncestralKnowledgeEffect(final AncestralKnowledgeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class AngelicSkirmisherEffect extends OneShotEffect {
|
|||
staticText = "choose first strike, vigilance or lifelink. Creatures you control gain that ability until end of turn";
|
||||
}
|
||||
|
||||
AngelicSkirmisherEffect(final AngelicSkirmisherEffect effect) {
|
||||
private AngelicSkirmisherEffect(final AngelicSkirmisherEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class AngelsTrumpetTapEffect extends OneShotEffect {
|
|||
this.staticText = "tap all untapped creatures that player controls that didn't attack this turn. Angel's Trumpet deals damage to the player equal to the number of creatures tapped this way";
|
||||
}
|
||||
|
||||
AngelsTrumpetTapEffect(final AngelsTrumpetTapEffect effect) {
|
||||
private AngelsTrumpetTapEffect(final AngelsTrumpetTapEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class AnheloThePainterGainCausalityEffect extends ContinuousEffectImpl {
|
|||
"When you do, copy the spell and you may choose new targets for the copy.)</i>";
|
||||
}
|
||||
|
||||
AnheloThePainterGainCausalityEffect(final AnheloThePainterGainCausalityEffect effect) {
|
||||
private AnheloThePainterGainCausalityEffect(final AnheloThePainterGainCausalityEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class AnimarCostReductionEffect extends CostModificationEffectImpl {
|
|||
staticText = "Creature spells you cast cost {1} less to cast for each +1/+1 counter on Animar";
|
||||
}
|
||||
|
||||
AnimarCostReductionEffect(AnimarCostReductionEffect effect) {
|
||||
private AnimarCostReductionEffect(final AnimarCostReductionEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class AnimationModuleTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DoIfCostPaid(new CreateTokenEffect(new ServoToken()), new GenericManaCost(1)), false);
|
||||
}
|
||||
|
||||
AnimationModuleTriggeredAbility(final AnimationModuleTriggeredAbility ability) {
|
||||
private AnimationModuleTriggeredAbility(final AnimationModuleTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -103,7 +103,7 @@ class AnimationModuleEffect extends OneShotEffect {
|
|||
this.staticText = "Choose a counter on target permanent or player. Give that permanent or player another counter of that kind";
|
||||
}
|
||||
|
||||
AnimationModuleEffect(final AnimationModuleEffect effect) {
|
||||
private AnimationModuleEffect(final AnimationModuleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class AnkhOfMishraAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DamageTargetEffect(2));
|
||||
}
|
||||
|
||||
AnkhOfMishraAbility(final AnkhOfMishraAbility ability) {
|
||||
private AnkhOfMishraAbility(final AnkhOfMishraAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class AnthroplasmEffect extends OneShotEffect {
|
|||
staticText = "Remove all +1/+1 counters from {this} and put X +1/+1 counters on it";
|
||||
}
|
||||
|
||||
AnthroplasmEffect(AnthroplasmEffect effect) {
|
||||
private AnthroplasmEffect(final AnthroplasmEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class AnuridScavengerCost extends CostImpl {
|
|||
}
|
||||
|
||||
|
||||
AnuridScavengerCost(final AnuridScavengerCost cost) {
|
||||
private AnuridScavengerCost(final AnuridScavengerCost cost) {
|
||||
super(cost);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class ArbiterOfKnollridgeEffect extends OneShotEffect {
|
|||
staticText = "each player's life total becomes the highest life total among all players";
|
||||
}
|
||||
|
||||
ArbiterOfKnollridgeEffect(final ArbiterOfKnollridgeEffect effect) {
|
||||
private ArbiterOfKnollridgeEffect(final ArbiterOfKnollridgeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class ArchangelOfTithesPayManaToAttackAllEffect extends CantAttackYouUnlessPayAl
|
|||
staticText = "As long as {this} is untapped, creatures can't attack you or planeswalkers you control unless their controller pays {1} for each of those creatures.";
|
||||
}
|
||||
|
||||
ArchangelOfTithesPayManaToAttackAllEffect(ArchangelOfTithesPayManaToAttackAllEffect effect) {
|
||||
private ArchangelOfTithesPayManaToAttackAllEffect(final ArchangelOfTithesPayManaToAttackAllEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -85,7 +85,7 @@ class ArchangelOfTithesPayManaToBlockAllEffect extends CantBlockUnlessPayManaAll
|
|||
staticText = "As long as {this} is attacking, creatures can't block unless their controller pays {1} for each of those creatures.";
|
||||
}
|
||||
|
||||
ArchangelOfTithesPayManaToBlockAllEffect(ArchangelOfTithesPayManaToBlockAllEffect effect) {
|
||||
private ArchangelOfTithesPayManaToBlockAllEffect(final ArchangelOfTithesPayManaToBlockAllEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class ArenaEffect extends OneShotEffect {
|
|||
"Those creatures fight each other. <i>(Each deals damage equal to its power to the other.)</i>";
|
||||
}
|
||||
|
||||
ArenaEffect(final ArenaEffect effect) {
|
||||
private ArenaEffect(final ArenaEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class ArgothianWurmEffect extends PutOnLibrarySourceEffect {
|
|||
this.staticText = "any player may sacrifice a land. If a player does, put {this} on top of its owner's library";
|
||||
}
|
||||
|
||||
ArgothianWurmEffect(final ArgothianWurmEffect effect) {
|
||||
private ArgothianWurmEffect(final ArgothianWurmEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class AbilityActivatedTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DamageAttachedControllerEffect(2));
|
||||
}
|
||||
|
||||
AbilityActivatedTriggeredAbility(final AbilityActivatedTriggeredAbility ability) {
|
||||
private AbilityActivatedTriggeredAbility(final AbilityActivatedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class AshcloudPhoenixEffect extends OneShotEffect {
|
|||
this.staticText = "return it to the battlefield face down under your control";
|
||||
}
|
||||
|
||||
AshcloudPhoenixEffect(final AshcloudPhoenixEffect effect) {
|
||||
private AshcloudPhoenixEffect(final AshcloudPhoenixEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class AshesOfTheFallenEffect extends ContinuousEffectImpl {
|
|||
staticText = "Each creature card in your graveyard has the chosen creature type in addition to its other types";
|
||||
}
|
||||
|
||||
AshesOfTheFallenEffect(final AshesOfTheFallenEffect effect) {
|
||||
private AshesOfTheFallenEffect(final AshesOfTheFallenEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class AshnodsCylixEffect extends OneShotEffect {
|
|||
this.staticText = "Target player looks at the top three cards of their library, puts one of them back on top of their library, then exiles the rest";
|
||||
}
|
||||
|
||||
AshnodsCylixEffect(final AshnodsCylixEffect effect) {
|
||||
private AshnodsCylixEffect(final AshnodsCylixEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ class EchoingEquationEffect extends OneShotEffect {
|
|||
staticText = "choose target creature you control. Each other creature you control becomes a copy of it until end of turn, except those creatures aren't legendary if the chosen creature is legendary";
|
||||
}
|
||||
|
||||
EchoingEquationEffect(EchoingEquationEffect effect) {
|
||||
private EchoingEquationEffect(final EchoingEquationEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class AuriokSurvivorsEffect extends OneShotEffect {
|
|||
staticText = "If you do, you may attach it to {this}";
|
||||
}
|
||||
|
||||
AuriokSurvivorsEffect(final AuriokSurvivorsEffect effect) {
|
||||
private AuriokSurvivorsEffect(final AuriokSurvivorsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ class SacrificeAllEffect extends OneShotEffect {
|
|||
staticText = "and sacrificies all creatures they control";
|
||||
}
|
||||
|
||||
SacrificeAllEffect(final SacrificeAllEffect effect) {
|
||||
private SacrificeAllEffect(final SacrificeAllEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ class AvariceAmuletChangeControlEffect extends ContinuousEffectImpl {
|
|||
staticText = "target opponent gains control of {this}";
|
||||
}
|
||||
|
||||
AvariceAmuletChangeControlEffect(final AvariceAmuletChangeControlEffect effect) {
|
||||
private AvariceAmuletChangeControlEffect(final AvariceAmuletChangeControlEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class AvenMindcensorEffect extends ReplacementEffectImpl {
|
|||
staticText = "If an opponent would search a library, that player searches the top four cards of that library instead";
|
||||
}
|
||||
|
||||
AvenMindcensorEffect(final AvenMindcensorEffect effect) {
|
||||
private AvenMindcensorEffect(final AvenMindcensorEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class AvenWarcraftEffect extends OneShotEffect {
|
|||
+ "choose a color. Creatures you control also gain protection from the chosen color until end of turn";
|
||||
}
|
||||
|
||||
AvenWarcraftEffect(final AvenWarcraftEffect effect) {
|
||||
private AvenWarcraftEffect(final AvenWarcraftEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ class AzorTheLawbringerAttacksEffect extends OneShotEffect {
|
|||
staticText = "you may pay {X}{W}{U}{U}. If you do, you gain X life and draw X cards";
|
||||
}
|
||||
|
||||
AzorTheLawbringerAttacksEffect(final AzorTheLawbringerAttacksEffect effect) {
|
||||
private AzorTheLawbringerAttacksEffect(final AzorTheLawbringerAttacksEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class AzraBladeseekerEffect extends OneShotEffect {
|
|||
this.staticText = "each player on your team may discard a card, then each player who discarded a card this way draws a card";
|
||||
}
|
||||
|
||||
AzraBladeseekerEffect(final AzraBladeseekerEffect effect) {
|
||||
private AzraBladeseekerEffect(final AzraBladeseekerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class BackslideEffect extends OneShotEffect {
|
|||
this.staticText = "Turn target creature with a morph ability face down.";
|
||||
}
|
||||
|
||||
BackslideEffect(final BackslideEffect effect) {
|
||||
private BackslideEffect(final BackslideEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class BamboozleEffect extends OneShotEffect {
|
|||
staticText = "Target player reveals the top four cards of their library. You choose two of those cards and put them into their graveyard. Put the rest on top of their library in any order";
|
||||
}
|
||||
|
||||
BamboozleEffect(final BamboozleEffect effect) {
|
||||
private BamboozleEffect(final BamboozleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ class BaruFistOfKrosaEffect extends OneShotEffect {
|
|||
this.staticText = "create an X/X green Wurm creature token, where X is the number of lands you control.";
|
||||
}
|
||||
|
||||
BaruFistOfKrosaEffect(final BaruFistOfKrosaEffect effect) {
|
||||
private BaruFistOfKrosaEffect(final BaruFistOfKrosaEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class BattlefieldScroungerCost extends CostImpl {
|
|||
}
|
||||
|
||||
|
||||
BattlefieldScroungerCost(final BattlefieldScroungerCost cost) {
|
||||
private BattlefieldScroungerCost(final BattlefieldScroungerCost cost) {
|
||||
super(cost);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class BattletideAlchemistEffect extends PreventionEffectImpl {
|
|||
this.staticText = "If a source would deal damage to a player, you may prevent X of that damage, where X is the number of Clerics you control";
|
||||
}
|
||||
|
||||
BattletideAlchemistEffect(final BattletideAlchemistEffect effect) {
|
||||
private BattletideAlchemistEffect(final BattletideAlchemistEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class BenefactorsDraughtTriggeredAbility extends DelayedTriggeredAbility {
|
|||
super(new DrawCardSourceControllerEffect(1), Duration.EndOfTurn, false);
|
||||
}
|
||||
|
||||
BenefactorsDraughtTriggeredAbility(final BenefactorsDraughtTriggeredAbility ability) {
|
||||
private BenefactorsDraughtTriggeredAbility(final BenefactorsDraughtTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class BenevolentOfferingEffect1 extends OneShotEffect {
|
|||
this.staticText = "Choose an opponent. You and that player each create three 1/1 white Spirit creature tokens with flying";
|
||||
}
|
||||
|
||||
BenevolentOfferingEffect1(final BenevolentOfferingEffect1 effect) {
|
||||
private BenevolentOfferingEffect1(final BenevolentOfferingEffect1 effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -85,7 +85,7 @@ class BenevolentOfferingEffect2 extends OneShotEffect {
|
|||
this.staticText = "<br>Choose an opponent. You gain 2 life for each creature you control and that player gains 2 life for each creature they control";
|
||||
}
|
||||
|
||||
BenevolentOfferingEffect2(final BenevolentOfferingEffect2 effect) {
|
||||
private BenevolentOfferingEffect2(final BenevolentOfferingEffect2 effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class BerserkReplacementEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
staticText = "Cast this spell only before the combat damage step";
|
||||
}
|
||||
|
||||
BerserkReplacementEffect(final BerserkReplacementEffect effect) {
|
||||
private BerserkReplacementEffect(final BerserkReplacementEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class BioplasmEffect extends OneShotEffect {
|
|||
this.staticText = "exile the top card of your library. If it's a creature card, {this} gets +X/+Y until end of turn, where X is the exiled creature card's power and Y is its toughness";
|
||||
}
|
||||
|
||||
BioplasmEffect(final BioplasmEffect effect) {
|
||||
private BioplasmEffect(final BioplasmEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ class BlackSunsZenithEffect extends OneShotEffect {
|
|||
staticText = "Put X -1/-1 counters on each creature";
|
||||
}
|
||||
|
||||
BlackSunsZenithEffect(final BlackSunsZenithEffect effect) {
|
||||
private BlackSunsZenithEffect(final BlackSunsZenithEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class BlightningEffect extends OneShotEffect {
|
|||
this.staticText = "That player or that planeswalker's controller discards two cards.";
|
||||
}
|
||||
|
||||
BlightningEffect(final BlightningEffect effect) {
|
||||
private BlightningEffect(final BlightningEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class BloodFrenzyCastRestriction extends ContinuousRuleModifyingEffectImpl {
|
|||
staticText = "Cast this spell only before the combat damage step";
|
||||
}
|
||||
|
||||
BloodFrenzyCastRestriction(final BloodFrenzyCastRestriction effect) {
|
||||
private BloodFrenzyCastRestriction(final BloodFrenzyCastRestriction effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ public final class BloodMoon extends CardImpl {
|
|||
this.dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||
}
|
||||
|
||||
BloodMoonEffect(final BloodMoonEffect effect) {
|
||||
private BloodMoonEffect(final BloodMoonEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class BloodSeekerTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new LoseLifeTargetEffect(1), true);
|
||||
}
|
||||
|
||||
BloodSeekerTriggeredAbility(final BloodSeekerTriggeredAbility ability) {
|
||||
private BloodSeekerTriggeredAbility(final BloodSeekerTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class BloodstoneGoblinTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever you cast a spell, if that spell was kicked, ");
|
||||
}
|
||||
|
||||
BloodstoneGoblinTriggeredAbility(final BloodstoneGoblinTriggeredAbility ability) {
|
||||
private BloodstoneGoblinTriggeredAbility(final BloodstoneGoblinTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class BoldwyrHeavyweightsEffect extends OneShotEffect {
|
|||
this.staticText = "each opponent may search their library for a creature card and put it onto the battlefield. Then each player who searched their library this way shuffles";
|
||||
}
|
||||
|
||||
BoldwyrHeavyweightsEffect(final BoldwyrHeavyweightsEffect effect) {
|
||||
private BoldwyrHeavyweightsEffect(final BoldwyrHeavyweightsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class BoldwyrIntimidatorEffect extends RestrictionEffect {
|
|||
staticText = "Cowards can't block Warriors";
|
||||
}
|
||||
|
||||
BoldwyrIntimidatorEffect(final BoldwyrIntimidatorEffect effect) {
|
||||
private BoldwyrIntimidatorEffect(final BoldwyrIntimidatorEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class BomatCourierExileEffect extends OneShotEffect {
|
|||
this.staticText = "exile the top card of your library face down";
|
||||
}
|
||||
|
||||
BomatCourierExileEffect(final BomatCourierExileEffect effect) {
|
||||
private BomatCourierExileEffect(final BomatCourierExileEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -97,7 +97,7 @@ class BomatCourierReturnEffect extends OneShotEffect {
|
|||
this.staticText = "Put all cards exiled with {this} into their owners' hands";
|
||||
}
|
||||
|
||||
BomatCourierReturnEffect(final BomatCourierReturnEffect effect) {
|
||||
private BomatCourierReturnEffect(final BomatCourierReturnEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class BonePickerAdjustingCostsEffect extends CostModificationEffectImpl {
|
|||
staticText = "this spell costs {3} less to cast if a creature died this turn";
|
||||
}
|
||||
|
||||
BonePickerAdjustingCostsEffect(BonePickerAdjustingCostsEffect effect) {
|
||||
private BonePickerAdjustingCostsEffect(final BonePickerAdjustingCostsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class BoneyardParleyEffect extends OneShotEffect {
|
|||
+ "and the rest into their owners' graveyards";
|
||||
}
|
||||
|
||||
BoneyardParleyEffect(final BoneyardParleyEffect effect) {
|
||||
private BoneyardParleyEffect(final BoneyardParleyEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ public final class BorosFuryShield extends CardImpl {
|
|||
staticText = "{this} deals damage to that creature's controller equal to the creature's power";
|
||||
}
|
||||
|
||||
BorosFuryShieldDamageEffect(final BorosFuryShieldDamageEffect effect) {
|
||||
private BorosFuryShieldDamageEffect(final BorosFuryShieldDamageEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class BosiumStripCastFromGraveyardEffect extends AsThoughEffectImpl {
|
|||
staticText = "Until end of turn, if the top card of your graveyard is an instant or sorcery card, you may cast that card";
|
||||
}
|
||||
|
||||
BosiumStripCastFromGraveyardEffect(final BosiumStripCastFromGraveyardEffect effect) {
|
||||
private BosiumStripCastFromGraveyardEffect(final BosiumStripCastFromGraveyardEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -97,7 +97,7 @@ class BosiumStripReplacementEffect extends ReplacementEffectImpl {
|
|||
staticText = "If a card cast this way would be put into a graveyard this turn, exile it instead";
|
||||
}
|
||||
|
||||
BosiumStripReplacementEffect(final BosiumStripReplacementEffect effect) {
|
||||
private BosiumStripReplacementEffect(final BosiumStripReplacementEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class BosskTriggeredAbility extends TriggeredAbilityImpl {
|
|||
this.addTarget(new TargetOpponentsCreaturePermanent());
|
||||
}
|
||||
|
||||
BosskTriggeredAbility(BosskTriggeredAbility ability) {
|
||||
private BosskTriggeredAbility(final BosskTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ class DeterminedEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
staticText = "Other spells you control can't be countered this turn";
|
||||
}
|
||||
|
||||
DeterminedEffect(final DeterminedEffect effect) {
|
||||
private DeterminedEffect(final DeterminedEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ class BowerPassageEffect extends RestrictionEffect {
|
|||
staticText = "Creatures with flying can't block creatures you control";
|
||||
}
|
||||
|
||||
BowerPassageEffect(final BowerPassageEffect effect) {
|
||||
private BowerPassageEffect(final BowerPassageEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class BrambleSovereignEffect extends OneShotEffect {
|
|||
this.staticText = "its controller creates a token that's a copy of that creature";
|
||||
}
|
||||
|
||||
BrambleSovereignEffect(final BrambleSovereignEffect effect) {
|
||||
private BrambleSovereignEffect(final BrambleSovereignEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class BramblewoodParagonReplacementEffect extends ReplacementEffectImpl {
|
|||
staticText = "Each other Warrior creature you control enters the battlefield with an additional +1/+1 counter on it";
|
||||
}
|
||||
|
||||
BramblewoodParagonReplacementEffect(BramblewoodParagonReplacementEffect effect) {
|
||||
private BramblewoodParagonReplacementEffect(final BramblewoodParagonReplacementEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class BrightflameEffect extends OneShotEffect {
|
|||
staticText = "{this} deals X damage to target creature and each other creature that shares a color with it. You gain life equal to the damage dealt this way.";
|
||||
}
|
||||
|
||||
BrightflameEffect(final BrightflameEffect effect) {
|
||||
private BrightflameEffect(final BrightflameEffect effect) {
|
||||
super(effect);
|
||||
this.amount = effect.amount;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ class BrightlingEffect extends OneShotEffect {
|
|||
this.staticText = "{this} gets +1/-1 or -1/+1 until end of turn";
|
||||
}
|
||||
|
||||
BrightlingEffect(final BrightlingEffect effect) {
|
||||
private BrightlingEffect(final BrightlingEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ class BruenorBattlehammerCostEffect extends CostModificationEffectImpl {
|
|||
"of the first equip ability you activate each turn.";
|
||||
}
|
||||
|
||||
BruenorBattlehammerCostEffect(final BruenorBattlehammerCostEffect effect) {
|
||||
private BruenorBattlehammerCostEffect(final BruenorBattlehammerCostEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class BrutalSuppressionAdditionalCostEffect extends CostModificationEffectImpl {
|
|||
this.staticText = "Activated abilities of nontoken Rebels cost an additional \"Sacrifice a land\" to activate";
|
||||
}
|
||||
|
||||
BrutalSuppressionAdditionalCostEffect(BrutalSuppressionAdditionalCostEffect effect) {
|
||||
private BrutalSuppressionAdditionalCostEffect(final BrutalSuppressionAdditionalCostEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class BudokaGardenerEffect extends OneShotEffect {
|
|||
staticText = "If you control ten or more lands, flip {this}";
|
||||
}
|
||||
|
||||
BudokaGardenerEffect(final BudokaGardenerEffect effect) {
|
||||
private BudokaGardenerEffect(final BudokaGardenerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ class BurgeoningTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new PutCardFromHandOntoBattlefieldEffect(StaticFilters.FILTER_CARD_LAND_A));
|
||||
}
|
||||
|
||||
BurgeoningTriggeredAbility(BurgeoningTriggeredAbility ability) {
|
||||
private BurgeoningTriggeredAbility(final BurgeoningTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class BurningTreeShamanTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DamageTargetEffect(StaticValue.get(1), true, "that player", true));
|
||||
}
|
||||
|
||||
BurningTreeShamanTriggeredAbility(final BurningTreeShamanTriggeredAbility ability) {
|
||||
private BurningTreeShamanTriggeredAbility(final BurningTreeShamanTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class BurningVengeanceOnCastAbility extends TriggeredAbilityImpl {
|
|||
this.addTarget(target);
|
||||
}
|
||||
|
||||
BurningVengeanceOnCastAbility(BurningVengeanceOnCastAbility ability) {
|
||||
private BurningVengeanceOnCastAbility(final BurningVengeanceOnCastAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class ButcherOfTheHordeEffect extends OneShotEffect {
|
|||
staticText = "{this} gains your choice of vigilance, lifelink, or haste until end of turn";
|
||||
}
|
||||
|
||||
ButcherOfTheHordeEffect(final ButcherOfTheHordeEffect effect) {
|
||||
private ButcherOfTheHordeEffect(final ButcherOfTheHordeEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class BuzzingWhackADoodleEffect extends OneShotEffect {
|
|||
this.staticText = "You and an opponent each secretly choose Whack or Doodle. Then those choices are revealed. If the choices match, {this} has that ability. Otherwise it has Buzz";
|
||||
}
|
||||
|
||||
BuzzingWhackADoodleEffect(final BuzzingWhackADoodleEffect effect) {
|
||||
private BuzzingWhackADoodleEffect(final BuzzingWhackADoodleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class CamelEffect extends PreventionEffectImpl {
|
|||
staticText = "As long as {this} is attacking, prevent all damage Deserts would deal to {this} and to creatures banded with {this}";
|
||||
}
|
||||
|
||||
CamelEffect(final CamelEffect effect) {
|
||||
private CamelEffect(final CamelEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class CarpetOfFlowersTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("At the beginning of each of your main phases, if you haven't added mana with this ability this turn, ");
|
||||
}
|
||||
|
||||
CarpetOfFlowersTriggeredAbility(final CarpetOfFlowersTriggeredAbility ability) {
|
||||
private CarpetOfFlowersTriggeredAbility(final CarpetOfFlowersTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -115,7 +115,7 @@ class CarpetOfFlowersEffect extends ManaEffect {
|
|||
staticText = "you may add X mana of any one color, where X is the number of Islands target opponent controls";
|
||||
}
|
||||
|
||||
CarpetOfFlowersEffect(final CarpetOfFlowersEffect effect) {
|
||||
private CarpetOfFlowersEffect(final CarpetOfFlowersEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class CeaselessSearbladesTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever you activate an ability of an Elemental, ");
|
||||
}
|
||||
|
||||
CeaselessSearbladesTriggeredAbility(final CeaselessSearbladesTriggeredAbility ability) {
|
||||
private CeaselessSearbladesTriggeredAbility(final CeaselessSearbladesTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class CelestialDawnToPlainsEffect extends ContinuousEffectImpl {
|
|||
this.staticText = "Lands you control are Plains";
|
||||
}
|
||||
|
||||
CelestialDawnToPlainsEffect(final CelestialDawnToPlainsEffect effect) {
|
||||
private CelestialDawnToPlainsEffect(final CelestialDawnToPlainsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ class CelestialMantleEffect extends OneShotEffect {
|
|||
super(Outcome.GainLife);
|
||||
}
|
||||
|
||||
CelestialMantleEffect(final CelestialMantleEffect effect) {
|
||||
private CelestialMantleEffect(final CelestialMantleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class CephalidConstableTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new ReturnToHandTargetEffect(), false);
|
||||
}
|
||||
|
||||
CephalidConstableTriggeredAbility(final CephalidConstableTriggeredAbility ability) {
|
||||
private CephalidConstableTriggeredAbility(final CephalidConstableTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class CerebralEruptionEffect extends OneShotEffect {
|
|||
staticText = "Target opponent reveals the top card of their library. {this} deals damage equal to the revealed card's mana value to that player and each creature they control. If a land card is revealed this way, return {this} to its owner's hand";
|
||||
}
|
||||
|
||||
CerebralEruptionEffect(final CerebralEruptionEffect effect) {
|
||||
private CerebralEruptionEffect(final CerebralEruptionEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class CerebralVortexEffect extends OneShotEffect {
|
|||
this.staticText = ", then Cerebral Vortex deals damage to that player equal to the number of cards they've drawn this turn";
|
||||
}
|
||||
|
||||
CerebralVortexEffect(final CerebralVortexEffect effect) {
|
||||
private CerebralVortexEffect(final CerebralVortexEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class ChainLightningEffect extends OneShotEffect {
|
|||
this.staticText = "{this} deals 3 damage to any target. Then that player or that permanent's controller may pay {R}{R}. If the player does, they may copy this spell and may choose a new target for that copy";
|
||||
}
|
||||
|
||||
ChainLightningEffect(final ChainLightningEffect effect) {
|
||||
private ChainLightningEffect(final ChainLightningEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class ChainOfAcidEffect extends OneShotEffect {
|
|||
this.staticText = "Destroy target noncreature permanent. Then that permanent's controller may copy this spell and may choose a new target for that copy.";
|
||||
}
|
||||
|
||||
ChainOfAcidEffect(final ChainOfAcidEffect effect) {
|
||||
private ChainOfAcidEffect(final ChainOfAcidEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class ChainOfPlasmaEffect extends OneShotEffect {
|
|||
this.staticText = "{this} deals 3 damage to any target. Then that player or that permanent's controller may discard a card. If the player does, they may copy this spell and may choose a new target for that copy.";
|
||||
}
|
||||
|
||||
ChainOfPlasmaEffect(final ChainOfPlasmaEffect effect) {
|
||||
private ChainOfPlasmaEffect(final ChainOfPlasmaEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class ChainOfSmogEffect extends OneShotEffect {
|
|||
this.staticText = "Target player discards two cards. That player may copy this spell and may choose a new target for that copy.";
|
||||
}
|
||||
|
||||
ChainOfSmogEffect(final ChainOfSmogEffect effect) {
|
||||
private ChainOfSmogEffect(final ChainOfSmogEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ class ChainerDementiaMasterEffect extends OneShotEffect {
|
|||
this.staticText = "Put target creature card from a graveyard onto the battlefield under your control. That creature is black and is a Nightmare in addition to its other creature types";
|
||||
}
|
||||
|
||||
ChainerDementiaMasterEffect(final ChainerDementiaMasterEffect effect) {
|
||||
private ChainerDementiaMasterEffect(final ChainerDementiaMasterEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class ChainersTormentEffect extends OneShotEffect {
|
|||
this.staticText = "Create an X/X black Nightmare Horror creature token, where X is half your life total, rounded up. It deals X damage to you";
|
||||
}
|
||||
|
||||
ChainersTormentEffect(final ChainersTormentEffect effect) {
|
||||
private ChainersTormentEffect(final ChainersTormentEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class ChampionOfLambholtEffect extends RestrictionEffect {
|
|||
staticText = "Creatures with power less than {this}'s power can't block creatures you control";
|
||||
}
|
||||
|
||||
ChampionOfLambholtEffect(final ChampionOfLambholtEffect effect) {
|
||||
private ChampionOfLambholtEffect(final ChampionOfLambholtEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ class ChancellorOfTheAnnexDelayedTriggeredAbility extends DelayedTriggeredAbilit
|
|||
this.playerId = playerId;
|
||||
}
|
||||
|
||||
ChancellorOfTheAnnexDelayedTriggeredAbility(final ChancellorOfTheAnnexDelayedTriggeredAbility ability) {
|
||||
private ChancellorOfTheAnnexDelayedTriggeredAbility(final ChancellorOfTheAnnexDelayedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
this.playerId = ability.playerId;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class ChancellorOfTheDrossDelayedTriggeredAbility extends DelayedTriggeredAbilit
|
|||
super(new ChancellorOfTheDrossEffect());
|
||||
}
|
||||
|
||||
ChancellorOfTheDrossDelayedTriggeredAbility(ChancellorOfTheDrossDelayedTriggeredAbility ability) {
|
||||
private ChancellorOfTheDrossDelayedTriggeredAbility(final ChancellorOfTheDrossDelayedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -83,7 +83,7 @@ class ChancellorOfTheDrossEffect extends OneShotEffect {
|
|||
staticText = "each opponent loses 3 life, then you gain life equal to the life lost this way";
|
||||
}
|
||||
|
||||
ChancellorOfTheDrossEffect(ChancellorOfTheDrossEffect effect) {
|
||||
private ChancellorOfTheDrossEffect(final ChancellorOfTheDrossEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class ChancellorOfTheForgeDelayedTriggeredAbility extends DelayedTriggeredAbilit
|
|||
super(new CreateTokenEffect(new PhyrexianGoblinHasteToken()));
|
||||
}
|
||||
|
||||
ChancellorOfTheForgeDelayedTriggeredAbility(ChancellorOfTheForgeDelayedTriggeredAbility ability) {
|
||||
private ChancellorOfTheForgeDelayedTriggeredAbility(final ChancellorOfTheForgeDelayedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class ChancellorOfTheTangleDelayedTriggeredAbility extends DelayedTriggeredAbili
|
|||
super(new BasicManaEffect(Mana.GreenMana(1)));
|
||||
}
|
||||
|
||||
ChancellorOfTheTangleDelayedTriggeredAbility(ChancellorOfTheTangleDelayedTriggeredAbility ability) {
|
||||
private ChancellorOfTheTangleDelayedTriggeredAbility(final ChancellorOfTheTangleDelayedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ class ChandraDrawEffect extends OneShotEffect {
|
|||
this.staticText = "Discard all the cards in your hand, then draw that many cards plus one";
|
||||
}
|
||||
|
||||
ChandraDrawEffect(final ChandraDrawEffect effect) {
|
||||
private ChandraDrawEffect(final ChandraDrawEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class ChandrasPhoenixTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.GRAVEYARD, new ReturnToHandSourceEffect());
|
||||
}
|
||||
|
||||
ChandrasPhoenixTriggeredAbility(final ChandrasPhoenixTriggeredAbility ability) {
|
||||
private ChandrasPhoenixTriggeredAbility(final ChandrasPhoenixTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class ChannelEffect extends OneShotEffect {
|
|||
this.staticText = "Until end of turn, any time you could activate a mana ability, you may pay 1 life. If you do, add {C}";
|
||||
}
|
||||
|
||||
ChannelEffect(final ChannelEffect effect) {
|
||||
private ChannelEffect(final ChannelEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -81,7 +81,7 @@ class ChannelSpecialAction extends SpecialAction {
|
|||
this.addEffect(new BasicManaEffect(Mana.ColorlessMana(1)));
|
||||
}
|
||||
|
||||
ChannelSpecialAction(final ChannelSpecialAction ability) {
|
||||
private ChannelSpecialAction(final ChannelSpecialAction ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -99,7 +99,7 @@ class ChannelDelayedTriggeredAbility extends DelayedTriggeredAbility {
|
|||
this.setRuleVisible(false);
|
||||
}
|
||||
|
||||
ChannelDelayedTriggeredAbility(ChannelDelayedTriggeredAbility ability) {
|
||||
private ChannelDelayedTriggeredAbility(final ChannelDelayedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class ChannelHarmEffect extends PreventionEffectImpl {
|
|||
staticText = "Prevent all damage that would be dealt to you and permanents you control this turn by sources you don't control. If damage is prevented this way, you may have {this} deal that much damage to target creature";
|
||||
}
|
||||
|
||||
ChannelHarmEffect(final ChannelHarmEffect effect) {
|
||||
private ChannelHarmEffect(final ChannelHarmEffect 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