mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
refactor: clean all copy constructors in cards starting F-G (#11121)
This commit is contained in:
parent
7d72c8d2a1
commit
ae24f1de2d
395 changed files with 460 additions and 460 deletions
|
|
@ -57,7 +57,7 @@ class FaadiyahSeerEffect extends OneShotEffect {
|
|||
this.staticText = "Draw a card and reveal it. If it isn't a land card, discard it";
|
||||
}
|
||||
|
||||
public FaadiyahSeerEffect(final FaadiyahSeerEffect effect) {
|
||||
private FaadiyahSeerEffect(final FaadiyahSeerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ class FacesOfThePastEffect extends OneShotEffect {
|
|||
this.staticText = "tap all untapped creatures that share a creature type with it or untap all tapped creatures that share a creature type with it";
|
||||
}
|
||||
|
||||
public FacesOfThePastEffect(final FacesOfThePastEffect effect) {
|
||||
private FacesOfThePastEffect(final FacesOfThePastEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class FaerieArtisansEffect extends OneShotEffect {
|
|||
+ "Then exile all other tokens created with {this}";
|
||||
}
|
||||
|
||||
public FaerieArtisansEffect(final FaerieArtisansEffect effect) {
|
||||
private FaerieArtisansEffect(final FaerieArtisansEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class FaerieConclaveToken extends TokenImpl {
|
|||
toughness = new MageInt(1);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
public FaerieConclaveToken(final FaerieConclaveToken token) {
|
||||
private FaerieConclaveToken(final FaerieConclaveToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ class KaisoMemoryOfLoyaltyToken extends TokenImpl {
|
|||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public KaisoMemoryOfLoyaltyToken(final KaisoMemoryOfLoyaltyToken token) {
|
||||
private KaisoMemoryOfLoyaltyToken(final KaisoMemoryOfLoyaltyToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class FaithsFettersEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
staticText = "and its activated abilities can't be activated unless they're mana abilities";
|
||||
}
|
||||
|
||||
public FaithsFettersEffect(final FaithsFettersEffect effect) {
|
||||
private FaithsFettersEffect(final FaithsFettersEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class FaithsShieldEffect extends OneShotEffect {
|
|||
+ "<br/><br/><i>Fateful hour</i> — If you have 5 or less life, instead you and each permanent you control gain protection from the color of your choice until end of turn";
|
||||
}
|
||||
|
||||
public FaithsShieldEffect(final FaithsShieldEffect effect) {
|
||||
private FaithsShieldEffect(final FaithsShieldEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class FalkenrathAristocratEffect extends OneShotEffect {
|
|||
this.staticText = "If the sacrificed creature was a Human, put a +1/+1 counter on {this}";
|
||||
}
|
||||
|
||||
public FalkenrathAristocratEffect(final FalkenrathAristocratEffect effect) {
|
||||
private FalkenrathAristocratEffect(final FalkenrathAristocratEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class FalkenrathGorgerEffect extends ContinuousEffectImpl {
|
|||
this.staticText = "Each Vampire creature card you own that isn't on the battlefield has madness. The madness cost is equal to its mana cost";
|
||||
}
|
||||
|
||||
public FalkenrathGorgerEffect(final FalkenrathGorgerEffect effect) {
|
||||
private FalkenrathGorgerEffect(final FalkenrathGorgerEffect effect) {
|
||||
super(effect);
|
||||
this.madnessAbilities.putAll(effect.madnessAbilities);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class FalkenrathNobleTriggeredAbility extends TriggeredAbilityImpl {
|
|||
this.addTarget(new TargetPlayer());
|
||||
}
|
||||
|
||||
public FalkenrathNobleTriggeredAbility(final FalkenrathNobleTriggeredAbility ability) {
|
||||
private FalkenrathNobleTriggeredAbility(final FalkenrathNobleTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class FalkenrathTorturerEffect extends OneShotEffect {
|
|||
this.staticText = "If the sacrificed creature was a Human, put a +1/+1 counter on {this}";
|
||||
}
|
||||
|
||||
public FalkenrathTorturerEffect(final FalkenrathTorturerEffect effect) {
|
||||
private FalkenrathTorturerEffect(final FalkenrathTorturerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class FallOfTheHammerDamageEffect extends OneShotEffect {
|
|||
this.staticText = "Target creature you control deals damage equal to its power to another target creature";
|
||||
}
|
||||
|
||||
public FallOfTheHammerDamageEffect(final FallOfTheHammerDamageEffect effect) {
|
||||
private FallOfTheHammerDamageEffect(final FallOfTheHammerDamageEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class FallOfTheThranReturnEffect extends OneShotEffect {
|
|||
this.staticText = "each player returns two land cards from their graveyard to the battlefield";
|
||||
}
|
||||
|
||||
public FallOfTheThranReturnEffect(final FallOfTheThranReturnEffect effect) {
|
||||
private FallOfTheThranReturnEffect(final FallOfTheThranReturnEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class FarrelitePriestEffect extends OneShotEffect {
|
|||
this.staticText = "If this ability has been activated four or more times this turn, sacrifice {this} at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public FarrelitePriestEffect(final FarrelitePriestEffect effect) {
|
||||
private FarrelitePriestEffect(final FarrelitePriestEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ class FarsightMaskTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), true);
|
||||
}
|
||||
|
||||
public FarsightMaskTriggeredAbility(final FarsightMaskTriggeredAbility ability) {
|
||||
private FarsightMaskTriggeredAbility(final FarsightMaskTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class PlayALandTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DamageControllerEffect(1), false);
|
||||
}
|
||||
|
||||
public PlayALandTriggeredAbility(PlayALandTriggeredAbility ability) {
|
||||
private PlayALandTriggeredAbility(final PlayALandTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class FastingReplacementEffect extends ReplacementEffectImpl {
|
|||
staticText = "If you would begin your draw step, you may skip that step instead. If you do, you gain 2 life";
|
||||
}
|
||||
|
||||
public FastingReplacementEffect(final FastingReplacementEffect effect) {
|
||||
private FastingReplacementEffect(final FastingReplacementEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class FatalFrenzyEffect extends OneShotEffect {
|
|||
this.staticText = "Sacrifice it at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public FatalFrenzyEffect(final FatalFrenzyEffect effect) {
|
||||
private FatalFrenzyEffect(final FatalFrenzyEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class FatalMutationAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever enchanted creature is turned face up, ");
|
||||
}
|
||||
|
||||
public FatalMutationAbility(final FatalMutationAbility ability) {
|
||||
private FatalMutationAbility(final FatalMutationAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class FateTransferEffect extends OneShotEffect {
|
|||
staticText = "Move all counters from target creature onto another target creature";
|
||||
}
|
||||
|
||||
public FateTransferEffect(final FateTransferEffect effect) {
|
||||
private FateTransferEffect(final FateTransferEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class FatespinnerChooseEffect extends OneShotEffect {
|
|||
staticText = "that player chooses draw step, main phase, or combat phase. The player skips each instance of the chosen step or phase this turn.";
|
||||
}
|
||||
|
||||
public FatespinnerChooseEffect(final FatespinnerChooseEffect effect) {
|
||||
private FatespinnerChooseEffect(final FatespinnerChooseEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -98,7 +98,7 @@ class FatespinnerSkipEffect extends ReplacementEffectImpl {
|
|||
this.phase = phase;
|
||||
}
|
||||
|
||||
public FatespinnerSkipEffect(final FatespinnerSkipEffect effect) {
|
||||
private FatespinnerSkipEffect(final FatespinnerSkipEffect effect) {
|
||||
super(effect);
|
||||
this.phase = effect.phase;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class FathomFeederEffect extends OneShotEffect {
|
|||
this.staticText = "Each opponent exiles the top card of their library";
|
||||
}
|
||||
|
||||
public FathomFeederEffect(final FathomFeederEffect effect) {
|
||||
private FathomFeederEffect(final FathomFeederEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class FathomMageTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever a +1/+1 counter is put on {this}, ");
|
||||
}
|
||||
|
||||
public FathomMageTriggeredAbility(FathomMageTriggeredAbility ability) {
|
||||
private FathomMageTriggeredAbility(final FathomMageTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ public final class FathomTrawl extends CardImpl {
|
|||
this.staticText = "Reveal cards from the top of your library until you reveal three nonland cards. Put the nonland cards revealed this way into your hand, then put the rest of the revealed cards on the bottom of your library in any order";
|
||||
}
|
||||
|
||||
public FathomTrawlEffect(final FathomTrawlEffect effect) {
|
||||
private FathomTrawlEffect(final FathomTrawlEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class FaultLineEffect extends OneShotEffect {
|
|||
staticText = "{this} deals X damage to each creature without flying and each player";
|
||||
}
|
||||
|
||||
public FaultLineEffect(final FaultLineEffect effect) {
|
||||
private FaultLineEffect(final FaultLineEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class FealtyToTheRealmEffect extends ContinuousEffectImpl {
|
|||
staticText = "the monarch controls enchanted creature";
|
||||
}
|
||||
|
||||
public FealtyToTheRealmEffect(final FealtyToTheRealmEffect effect) {
|
||||
private FealtyToTheRealmEffect(final FealtyToTheRealmEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class FearsomeAwakeningEffect extends OneShotEffect {
|
|||
this.staticText = "If it's a Dragon, put two +1/+1 counters on it";
|
||||
}
|
||||
|
||||
public FearsomeAwakeningEffect(final FearsomeAwakeningEffect effect) {
|
||||
private FearsomeAwakeningEffect(final FearsomeAwakeningEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ public final class FeastOfWorms extends CardImpl {
|
|||
this.getSpellAbility().addEffect(new FeastOfWormsEffect());
|
||||
}
|
||||
|
||||
public FeastOfWorms (final FeastOfWorms card) {
|
||||
private FeastOfWorms(final FeastOfWorms card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class FecundityEffect extends OneShotEffect {
|
|||
this.staticText = "that creature's controller may draw a card";
|
||||
}
|
||||
|
||||
public FecundityEffect(final FecundityEffect effect) {
|
||||
private FecundityEffect(final FecundityEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class FeedThePackEffect extends OneShotEffect {
|
|||
this.staticText = "sacrifice a nontoken creature. If you do, create X 2/2 green Wolf creature tokens, where X is the sacrificed creature's toughness";
|
||||
}
|
||||
|
||||
public FeedThePackEffect(final FeedThePackEffect effect) {
|
||||
private FeedThePackEffect(final FeedThePackEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class FeintEffect extends OneShotEffect {
|
|||
this.staticText = "tap all creatures blocking target attacking creature";
|
||||
}
|
||||
|
||||
public FeintEffect(final FeintEffect effect) {
|
||||
private FeintEffect(final FeintEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class FeldonOfTheThirdPathEffect extends OneShotEffect {
|
|||
this.staticText = "Create a token that's a copy of target creature card in your graveyard, except it's an artifact in addition to its other types. It gains haste. Sacrifice it at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public FeldonOfTheThirdPathEffect(final FeldonOfTheThirdPathEffect effect) {
|
||||
private FeldonOfTheThirdPathEffect(final FeldonOfTheThirdPathEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class FelhideSpiritbinderEffect extends OneShotEffect {
|
|||
this.staticText = "create a token that's a copy of another target creature except it's an enchantment in addition to its other types. It gains haste. Exile it at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public FelhideSpiritbinderEffect(final FelhideSpiritbinderEffect effect) {
|
||||
private FelhideSpiritbinderEffect(final FelhideSpiritbinderEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ class FelineSovereignTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DestroyTargetEffect(), false);
|
||||
}
|
||||
|
||||
public FelineSovereignTriggeredAbility(final FelineSovereignTriggeredAbility ability) {
|
||||
private FelineSovereignTriggeredAbility(final FelineSovereignTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class FellTheMightyEffect extends OneShotEffect {
|
|||
this.staticText = "Destroy all creatures with power greater than target creature's power";
|
||||
}
|
||||
|
||||
public FellTheMightyEffect(final FellTheMightyEffect effect) {
|
||||
private FellTheMightyEffect(final FellTheMightyEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class FeralContestEffect extends RequirementEffect {
|
|||
staticText = "Another target creature blocks it this turn if able";
|
||||
}
|
||||
|
||||
public FeralContestEffect(final FeralContestEffect effect) {
|
||||
private FeralContestEffect(final FeralContestEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class FeralDeceiverEffect extends OneShotEffect {
|
|||
this.staticText = "Reveal the top card of your library. If it's a land card, {this} gets +2/+2 and gains trample until end of turn";
|
||||
}
|
||||
|
||||
public FeralDeceiverEffect(final FeralDeceiverEffect effect) {
|
||||
private FeralDeceiverEffect(final FeralDeceiverEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class FeralLightningEffect extends OneShotEffect {
|
|||
this.staticText = "Create three 3/1 red Elemental creature tokens with haste. Exile them at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public FeralLightningEffect(final FeralLightningEffect effect) {
|
||||
private FeralLightningEffect(final FeralLightningEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ public final class FeralProwler extends CardImpl {
|
|||
addAbility(new DiesSourceTriggeredAbility(new DrawCardSourceControllerEffect(1), false));
|
||||
}
|
||||
|
||||
public FeralProwler(final FeralProwler feralProwler) {
|
||||
private FeralProwler(final FeralProwler feralProwler) {
|
||||
super(feralProwler);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public final class Ferrovore extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public Ferrovore (final Ferrovore card) {
|
||||
private Ferrovore(final Ferrovore card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class FertileImaginationEffect extends OneShotEffect {
|
|||
staticText = "Choose a card type. Target opponent reveals their hand. Create two 1/1 green Saproling creature tokens for each card of the chosen type revealed this way";
|
||||
}
|
||||
|
||||
public FertileImaginationEffect(final FertileImaginationEffect effect) {
|
||||
private FertileImaginationEffect(final FertileImaginationEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class FertileThicketEffect extends OneShotEffect {
|
|||
this.staticText = "you may look at the top five cards of your library. If you do, reveal up to one basic land card from among them, then put that card on top of your library and the rest on the bottom in any order";
|
||||
}
|
||||
|
||||
public FertileThicketEffect(final FertileThicketEffect effect) {
|
||||
private FertileThicketEffect(final FertileThicketEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class FesteringWoundEffect extends OneShotEffect {
|
|||
this.staticText = "{this} deals X damage to that player, where X is the number of infection counters on {this}";
|
||||
}
|
||||
|
||||
public FesteringWoundEffect(final FesteringWoundEffect effect) {
|
||||
private FesteringWoundEffect(final FesteringWoundEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ public class FestivalOfTheAncestors extends CardImpl {
|
|||
this.getSpellAbility().addTarget(new TargetPlayer());
|
||||
}
|
||||
|
||||
public FestivalOfTheAncestors(final FestivalOfTheAncestors card) {
|
||||
private FestivalOfTheAncestors(final FestivalOfTheAncestors card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public final class FetidHeath extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public FetidHeath (final FetidHeath card) {
|
||||
private FetidHeath(final FetidHeath card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class FettergeistUnlessPaysEffect extends OneShotEffect {
|
|||
staticText = "sacrifice {this} unless you pay {1} for each other creature you control.";
|
||||
}
|
||||
|
||||
public FettergeistUnlessPaysEffect(final FettergeistUnlessPaysEffect effect) {
|
||||
private FettergeistUnlessPaysEffect(final FettergeistUnlessPaysEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ class FeudkillersVerdictEffect extends OneShotEffect {
|
|||
this.staticText = "You gain 10 life. Then if you have more life than an opponent, create a 5/5 white Giant Warrior creature token";
|
||||
}
|
||||
|
||||
public FeudkillersVerdictEffect(final FeudkillersVerdictEffect effect) {
|
||||
private FeudkillersVerdictEffect(final FeudkillersVerdictEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ class FeveredVisionsEffect extends OneShotEffect {
|
|||
staticText = "that player draws a card. If the player is your opponent and has four or more cards in hand, {this} deals 2 damage to that player";
|
||||
}
|
||||
|
||||
public FeveredVisionsEffect(final FeveredVisionsEffect effect) {
|
||||
private FeveredVisionsEffect(final FeveredVisionsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ class FeySteedTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), true);
|
||||
}
|
||||
|
||||
public FeySteedTriggeredAbility(FeySteedTriggeredAbility ability) {
|
||||
private FeySteedTriggeredAbility(final FeySteedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class FickleEfreetChangeControlEffect extends OneShotEffect {
|
|||
this.staticText = "flip a coin at end of combat. If you lose the flip, choose one of your opponents. That player gains control of {this}";
|
||||
}
|
||||
|
||||
public FickleEfreetChangeControlEffect(final FickleEfreetChangeControlEffect effect) {
|
||||
private FickleEfreetChangeControlEffect(final FickleEfreetChangeControlEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -102,7 +102,7 @@ class FickleEfreetGainControlEffect extends ContinuousEffectImpl {
|
|||
this.staticText = "That player gains control of {this}";
|
||||
}
|
||||
|
||||
public FickleEfreetGainControlEffect(final FickleEfreetGainControlEffect effect) {
|
||||
private FickleEfreetGainControlEffect(final FickleEfreetGainControlEffect effect) {
|
||||
super(effect);
|
||||
this.controller = effect.controller;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ public final class FieldmistBorderpost extends CardImpl {
|
|||
this.addAbility(new BlueManaAbility());
|
||||
}
|
||||
|
||||
public FieldmistBorderpost (final FieldmistBorderpost card) {
|
||||
private FieldmistBorderpost(final FieldmistBorderpost card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class FiendslayerPaladinEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
staticText = "{this} can't be the target of black or red spells your opponents control";
|
||||
}
|
||||
|
||||
public FiendslayerPaladinEffect(final FiendslayerPaladinEffect effect) {
|
||||
private FiendslayerPaladinEffect(final FiendslayerPaladinEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class FierceInvocationEffect extends OneShotEffect {
|
|||
this.staticText = "Manifest the top card of your library, then put two +1/+1 counters on it.<i> (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)</i>";
|
||||
}
|
||||
|
||||
public FierceInvocationEffect(final FierceInvocationEffect effect) {
|
||||
private FierceInvocationEffect(final FierceInvocationEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class FieryBombardmentEffect extends OneShotEffect {
|
|||
staticText = "{this} deals damage to any target equal to the number of red mana symbols in the sacrificed creature's mana cost.";
|
||||
}
|
||||
|
||||
public FieryBombardmentEffect(final FieryBombardmentEffect effect) {
|
||||
private FieryBombardmentEffect(final FieryBombardmentEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ public final class FieryFall extends CardImpl {
|
|||
this.addAbility(new BasicLandcyclingAbility(new ManaCostsImpl<>("{1}{R}")));
|
||||
}
|
||||
|
||||
public FieryFall (final FieryFall card) {
|
||||
private FieryFall(final FieryFall card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class FieryGambitEffect extends OneShotEffect {
|
|||
this.staticText = "Flip a coin until you lose a flip or choose to stop flipping. If you lose a flip, Fiery Gambit has no effect. If you win one or more flips, Fiery Gambit deals 3 damage to target creature. If you win two or more flips, Fiery Gambit deals 6 damage to each opponent. If you win three or more flips, draw nine cards and untap all lands you control";
|
||||
}
|
||||
|
||||
public FieryGambitEffect(final FieryGambitEffect effect) {
|
||||
private FieryGambitEffect(final FieryGambitEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class FightOrFlightEffect extends OneShotEffect {
|
|||
this.staticText = "separate all creatures that player controls into two piles. Only creatures in the pile of their choice can attack this turn";
|
||||
}
|
||||
|
||||
public FightOrFlightEffect(final FightOrFlightEffect effect) {
|
||||
private FightOrFlightEffect(final FightOrFlightEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ class FighterClassRequirementEffect extends RequirementEffect {
|
|||
this.mor = mor;
|
||||
}
|
||||
|
||||
public FighterClassRequirementEffect(final FighterClassRequirementEffect effect) {
|
||||
private FighterClassRequirementEffect(final FighterClassRequirementEffect effect) {
|
||||
super(effect);
|
||||
this.mor = effect.mor;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class FiligreeAngelEffect extends OneShotEffect {
|
|||
staticText = "you gain 3 life for each artifact you control";
|
||||
}
|
||||
|
||||
public FiligreeAngelEffect(final FiligreeAngelEffect effect) {
|
||||
private FiligreeAngelEffect(final FiligreeAngelEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class FiligreeFractureEffect extends OneShotEffect {
|
|||
this.staticText = "Destroy target artifact or enchantment. If that permanent was blue or black, draw a card";
|
||||
}
|
||||
|
||||
public FiligreeFractureEffect(final FiligreeFractureEffect effect) {
|
||||
private FiligreeFractureEffect(final FiligreeFractureEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public final class FiligreeSages extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public FiligreeSages (final FiligreeSages card) {
|
||||
private FiligreeSages(final FiligreeSages card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class DealtDamageLoseLifeTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(zone, effect, optional);
|
||||
}
|
||||
|
||||
public DealtDamageLoseLifeTriggeredAbility(final DealtDamageLoseLifeTriggeredAbility ability) {
|
||||
private DealtDamageLoseLifeTriggeredAbility(final DealtDamageLoseLifeTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class FinalPartingEffect extends OneShotEffect {
|
|||
staticText = "Search your library for two cards. Put one into your hand and the other into your graveyard. Then shuffle";
|
||||
}
|
||||
|
||||
public FinalPartingEffect(final FinalPartingEffect effect) {
|
||||
private FinalPartingEffect(final FinalPartingEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ class FinaleOfPromiseEffect extends OneShotEffect {
|
|||
+ "twice. You may choose new targets for the copies.";
|
||||
}
|
||||
|
||||
public FinaleOfPromiseEffect(final FinaleOfPromiseEffect effect) {
|
||||
private FinaleOfPromiseEffect(final FinaleOfPromiseEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -170,7 +170,7 @@ class FinaleOfPromiseReplacementEffect extends ReplacementEffectImpl {
|
|||
staticText = "If a card cast this way would be put into your graveyard this turn, exile it instead";
|
||||
}
|
||||
|
||||
public FinaleOfPromiseReplacementEffect(final FinaleOfPromiseReplacementEffect effect) {
|
||||
private FinaleOfPromiseReplacementEffect(final FinaleOfPromiseReplacementEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class FinalityEffect extends OneShotEffect {
|
|||
+ "Then all creatures get -4/-4 until end of turn.";
|
||||
}
|
||||
|
||||
public FinalityEffect(final FinalityEffect effect) {
|
||||
private FinalityEffect(final FinalityEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class FireServantEffect extends ReplacementEffectImpl {
|
|||
staticText = "If a red instant or sorcery spell you control would deal damage, it deals double that damage instead";
|
||||
}
|
||||
|
||||
public FireServantEffect(final FireServantEffect effect) {
|
||||
private FireServantEffect(final FireServantEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class FireballEffect extends OneShotEffect {
|
|||
"X damage divided evenly, rounded down, among any number of targets";
|
||||
}
|
||||
|
||||
public FireballEffect(final FireballEffect effect) {
|
||||
private FireballEffect(final FireballEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -101,7 +101,7 @@ class FireballTargetCreatureOrPlayer extends TargetAnyTarget {
|
|||
super(minNumTargets, maxNumTargets);
|
||||
}
|
||||
|
||||
public FireballTargetCreatureOrPlayer(final FireballTargetCreatureOrPlayer target) {
|
||||
private FireballTargetCreatureOrPlayer(final FireballTargetCreatureOrPlayer target) {
|
||||
super(target);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class FirecatBlitzEffect extends OneShotEffect {
|
|||
this.staticText = "Create X 1/1 red Elemental Cat creature tokens with haste. Exile them at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public FirecatBlitzEffect(final FirecatBlitzEffect effect) {
|
||||
private FirecatBlitzEffect(final FirecatBlitzEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class FiresOfMountDoomEffect extends OneShotEffect {
|
|||
"When you play a card this way, Fires of Mount Doom deals 2 damage to each player";
|
||||
}
|
||||
|
||||
public FiresOfMountDoomEffect(final FiresOfMountDoomEffect effect) {
|
||||
private FiresOfMountDoomEffect(final FiresOfMountDoomEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -120,7 +120,7 @@ class FiresOfMountDoomDelayedTriggeredAbility extends DelayedTriggeredAbility {
|
|||
this.cardId = cardId;
|
||||
}
|
||||
|
||||
public FiresOfMountDoomDelayedTriggeredAbility(FiresOfMountDoomDelayedTriggeredAbility ability) {
|
||||
private FiresOfMountDoomDelayedTriggeredAbility(final FiresOfMountDoomDelayedTriggeredAbility ability) {
|
||||
super(ability);
|
||||
this.cardId = ability.cardId;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class FiresongAndSunspeakerTriggeredAbility extends TriggeredAbilityImpl {
|
|||
this.addTarget(new TargetCreatureOrPlayer());
|
||||
}
|
||||
|
||||
public FiresongAndSunspeakerTriggeredAbility(final FiresongAndSunspeakerTriggeredAbility ability) {
|
||||
private FiresongAndSunspeakerTriggeredAbility(final FiresongAndSunspeakerTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class FirestormEffect extends OneShotEffect {
|
|||
staticText = "{this} deals X damage to each of X targets";
|
||||
}
|
||||
|
||||
public FirestormEffect(final FirestormEffect effect) {
|
||||
private FirestormEffect(final FirestormEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ public final class FirewildBorderpost extends CardImpl {
|
|||
this.addAbility(new GreenManaAbility());
|
||||
}
|
||||
|
||||
public FirewildBorderpost (final FirewildBorderpost card) {
|
||||
private FirewildBorderpost(final FirewildBorderpost card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class FirstDayOfClassTriggeredAbility extends DelayedTriggeredAbility {
|
|||
this.addEffect(new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn));
|
||||
}
|
||||
|
||||
public FirstDayOfClassTriggeredAbility(FirstDayOfClassTriggeredAbility ability) {
|
||||
private FirstDayOfClassTriggeredAbility(final FirstDayOfClassTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public class FirstOrderJetTrooper extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public FirstOrderJetTrooper(final FirstOrderJetTrooper card) {
|
||||
private FirstOrderJetTrooper(final FirstOrderJetTrooper card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class FistfulOfForceEffect extends OneShotEffect {
|
|||
this.staticText = "Target creature gets +2/+2 until end of turn. Clash with an opponent. If you win, that creature gets an additional +2/+2 and gains trample until end of turn";
|
||||
}
|
||||
|
||||
public FistfulOfForceEffect(final FistfulOfForceEffect effect) {
|
||||
private FistfulOfForceEffect(final FistfulOfForceEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class FiveAlarmFireTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever a creature you control deals combat damage, ");
|
||||
}
|
||||
|
||||
public FiveAlarmFireTriggeredAbility(final FiveAlarmFireTriggeredAbility ability) {
|
||||
private FiveAlarmFireTriggeredAbility(final FiveAlarmFireTriggeredAbility ability) {
|
||||
super(ability);
|
||||
triggeringCreatures.addAll(ability.triggeringCreatures);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class FlamebladeAngelTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new DamageTargetEffect(1), true);
|
||||
}
|
||||
|
||||
public FlamebladeAngelTriggeredAbility(final FlamebladeAngelTriggeredAbility ability) {
|
||||
private FlamebladeAngelTriggeredAbility(final FlamebladeAngelTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public final class FlamebornHellion extends CardImpl {
|
|||
this.addAbility(new AttacksEachCombatStaticAbility());
|
||||
}
|
||||
|
||||
public FlamebornHellion (final FlamebornHellion card) {
|
||||
private FlamebornHellion(final FlamebornHellion card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class FlamebreakCantRegenerateEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
staticText = "Creatures dealt damage this way can't be regenerated this turn";
|
||||
}
|
||||
|
||||
public FlamebreakCantRegenerateEffect(final FlamebreakCantRegenerateEffect effect) {
|
||||
private FlamebreakCantRegenerateEffect(final FlamebreakCantRegenerateEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class FlamerushRiderEffect extends OneShotEffect {
|
|||
this.staticText = "create a token that's a copy of another target attacking creature and that's tapped and attacking. Exile the token at end of combat";
|
||||
}
|
||||
|
||||
public FlamerushRiderEffect(final FlamerushRiderEffect effect) {
|
||||
private FlamerushRiderEffect(final FlamerushRiderEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class FlamesOfRemembranceExileEffect extends OneShotEffect {
|
|||
this.staticText = "Exile top X cards of your library, where X is the number of lore counters on {this}. Until end of turn you play cards exile this way";
|
||||
}
|
||||
|
||||
public FlamesOfRemembranceExileEffect(final FlamesOfRemembranceExileEffect effect) {
|
||||
private FlamesOfRemembranceExileEffect(final FlamesOfRemembranceExileEffect effect) {
|
||||
super(effect);
|
||||
this.amount = effect.amount;
|
||||
}
|
||||
|
|
@ -95,7 +95,7 @@ class FlamesOfRemembranceMayPlayExiledEffect extends AsThoughEffectImpl {
|
|||
super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.EndOfTurn, Outcome.Benefit);
|
||||
}
|
||||
|
||||
public FlamesOfRemembranceMayPlayExiledEffect(final FlamesOfRemembranceMayPlayExiledEffect effect) {
|
||||
private FlamesOfRemembranceMayPlayExiledEffect(final FlamesOfRemembranceMayPlayExiledEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class FlamesOfTheBloodHandReplacementEffect extends ReplacementEffectImpl {
|
|||
staticText = "If that player or that planeswalker's controller would gain life this turn, that player gains no life instead";
|
||||
}
|
||||
|
||||
public FlamesOfTheBloodHandReplacementEffect(final FlamesOfTheBloodHandReplacementEffect effect) {
|
||||
private FlamesOfTheBloodHandReplacementEffect(final FlamesOfTheBloodHandReplacementEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class FlameshadowConjuringEffect extends OneShotEffect {
|
|||
this.staticText = "create a token that's a copy of that creature. That token gains haste. Exile it at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public FlameshadowConjuringEffect(final FlameshadowConjuringEffect effect) {
|
||||
private FlameshadowConjuringEffect(final FlameshadowConjuringEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class FlashEffect extends OneShotEffect {
|
|||
this.staticText = "You may put a creature card from your hand onto the battlefield. If you do, sacrifice it unless you pay its mana cost reduced by up to {2}.";
|
||||
}
|
||||
|
||||
public FlashEffect(final FlashEffect effect) {
|
||||
private FlashEffect(final FlashEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class FlashConscriptionTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, null);
|
||||
}
|
||||
|
||||
public FlashConscriptionTriggeredAbility(final FlashConscriptionTriggeredAbility ability) {
|
||||
private FlashConscriptionTriggeredAbility(final FlashConscriptionTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class FlashFoliageEffect extends OneShotEffect {
|
|||
this.staticText = "create a 1/1 green Saproling creature token that's blocking target creature attacking you";
|
||||
}
|
||||
|
||||
public FlashFoliageEffect(final FlashFoliageEffect effect) {
|
||||
private FlashFoliageEffect(final FlashFoliageEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class FlayerTriggeredAbility extends TriggeredAbilityImpl {
|
|||
super(Zone.BATTLEFIELD, new FlayerEffect(), false);
|
||||
}
|
||||
|
||||
public FlayerTriggeredAbility(FlayerTriggeredAbility ability) {
|
||||
private FlayerTriggeredAbility(final FlayerTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -98,7 +98,7 @@ class FlayerEffect extends OneShotEffect {
|
|||
staticText = "that creature deals damage equal to its power to any target";
|
||||
}
|
||||
|
||||
public FlayerEffect(final FlayerEffect effect) {
|
||||
private FlayerEffect(final FlayerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class FlayingTendrilsReplacementEffect extends ReplacementEffectImpl {
|
|||
staticText = "If a creature would die this turn, exile it instead";
|
||||
}
|
||||
|
||||
public FlayingTendrilsReplacementEffect(final FlayingTendrilsReplacementEffect effect) {
|
||||
private FlayingTendrilsReplacementEffect(final FlayingTendrilsReplacementEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ public final class FledglingGriffin extends CardImpl {
|
|||
this.addAbility(new LandfallAbility(new GainAbilitySourceEffect(FlyingAbility.getInstance(), Duration.EndOfTurn), false));
|
||||
}
|
||||
|
||||
public FledglingGriffin (final FledglingGriffin card) {
|
||||
private FledglingGriffin(final FledglingGriffin card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ public final class FleetingDistraction extends CardImpl {
|
|||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
public FleetingDistraction (final FleetingDistraction card) {
|
||||
private FleetingDistraction(final FleetingDistraction card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class FleetingMemoriesTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever you sacrifice a Clue, ");
|
||||
}
|
||||
|
||||
public FleetingMemoriesTriggeredAbility(final FleetingMemoriesTriggeredAbility ability) {
|
||||
private FleetingMemoriesTriggeredAbility(final FleetingMemoriesTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ public final class Flensermite extends CardImpl {
|
|||
this.addAbility(LifelinkAbility.getInstance());
|
||||
}
|
||||
|
||||
public Flensermite (final Flensermite card) {
|
||||
private Flensermite(final Flensermite card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class FleshEffect extends OneShotEffect {
|
|||
staticText = "Exile target creature card from a graveyard. Put X +1/+1 counters on target creature, where X is the power of the card you exiled";
|
||||
}
|
||||
|
||||
public FleshEffect(final FleshEffect effect) {
|
||||
private FleshEffect(final FleshEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class FleshCarverAbility extends DiesSourceTriggeredAbility {
|
|||
setTriggerPhrase("When Flesh Carver dies, ");
|
||||
}
|
||||
|
||||
public FleshCarverAbility(final FleshCarverAbility ability) {
|
||||
private FleshCarverAbility(final FleshCarverAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
@ -101,7 +101,7 @@ class FleshCarverEffect extends OneShotEffect {
|
|||
staticText = "create an X/X black Horror creature token, where X is {this}'s power";
|
||||
}
|
||||
|
||||
public FleshCarverEffect(FleshCarverEffect ability) {
|
||||
private FleshCarverEffect(final FleshCarverEffect ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ class FlickerformEffect extends OneShotEffect {
|
|||
this.staticText = "Exile enchanted creature and all Auras attached to it. At the beginning of the next end step, return that card to the battlefield under its owner's control. If you do, return the other cards exiled this way to the battlefield under their owners' control attached to that creature";
|
||||
}
|
||||
|
||||
public FlickerformEffect(final FlickerformEffect effect) {
|
||||
private FlickerformEffect(final FlickerformEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
@ -135,7 +135,7 @@ class FlickerformReturnEffect extends OneShotEffect {
|
|||
this.staticText = "return that card to the battlefield under its owner's control. If you do, return the other cards exiled this way to the battlefield under their owners' control attached to that creature";
|
||||
}
|
||||
|
||||
public FlickerformReturnEffect(final FlickerformReturnEffect effect) {
|
||||
private FlickerformReturnEffect(final FlickerformReturnEffect effect) {
|
||||
super(effect);
|
||||
this.enchantedCardId = effect.enchantedCardId;
|
||||
this.exileZoneId = effect.exileZoneId;
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class FlickerwispEffect extends OneShotEffect {
|
|||
staticText = "exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step";
|
||||
}
|
||||
|
||||
public FlickerwispEffect(final FlickerwispEffect effect) {
|
||||
private FlickerwispEffect(final FlickerwispEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ public final class FlightSpellbomb extends CardImpl {
|
|||
this.addAbility(new DiesSourceTriggeredAbility(new DoIfCostPaid(new DrawCardSourceControllerEffect(1), new ManaCostsImpl<>("{U}")), false));
|
||||
}
|
||||
|
||||
public FlightSpellbomb (final FlightSpellbomb card) {
|
||||
private FlightSpellbomb(final FlightSpellbomb card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class FloatingShieldEffect extends OneShotEffect {
|
|||
this.staticText = "target creature gains protection from the chosen color until end of turn";
|
||||
}
|
||||
|
||||
public FloatingShieldEffect(final FloatingShieldEffect effect) {
|
||||
private FloatingShieldEffect(final FloatingShieldEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class FlockOfRabidSheepEffect extends OneShotEffect {
|
|||
this.staticText = "Flip X coins. For each flip you win, create a 2/2 green Sheep creature token named Rabid Sheep";
|
||||
}
|
||||
|
||||
public FlockOfRabidSheepEffect(final FlockOfRabidSheepEffect effect) {
|
||||
private FlockOfRabidSheepEffect(final FlockOfRabidSheepEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public final class FloodedGrove extends CardImpl {
|
|||
|
||||
}
|
||||
|
||||
public FloodedGrove (final FloodedGrove card) {
|
||||
private FloodedGrove(final FloodedGrove card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
|
|||
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